/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Righteous&display=swap&subset=latin-ext');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,700i,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800,800i&display=swap');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(css/animate.min.css);
@import url(css/normalize.css);
@import url(css/icomoon.css);
@import url(css/font-awesome.min.css);
@import url(css/meanmenu.css);
@import url(css/owl.carousel.min.css);
@import url(css/swiper.min.css);
@import url(css/slick.css);
@import url(css/jquery.fancybox.min.css);
@import url(css/jquery-ui.css);
@import url(css/nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

/* Contacto responsive en el header */

#telefono_link {
     padding: 5px;
}



/* Sección de servicios extra */
.seccion-servicios-extra {
     background-color: #ffffff; /* un gris más claro que el anterior */
     margin: 20px;
   }
   
   /* Imagen del servicio */
   .seccion-servicios-extra img {
     max-height: 70px;
     transition: transform 0.3s ease;
   }
   
   /* Efecto al pasar el mouse */
   .seccion-servicios-extra .shadow-sm:hover img {
     transform: scale(1.1);
   }
   
   /* Título debajo de la imagen */
   .seccion-servicios-extra h6 {
     font-size: 1.25rem; /* un poco más grande que fs-5 si querés */
     font-weight: 700;
     color: #222;
     margin-top: 0.5rem;
     transition: color 0.3s ease;
   }
   
   /* Cambio de color al hacer hover sobre la tarjeta */
   .seccion-servicios-extra .shadow-sm:hover h4 {
     color: #0d6efd; /* azul Bootstrap */
   }
/* Contenedor de otros servicios */

.info-about-services {
     padding: 2rem; /* o 30px, 40px, según lo que necesites */
   }

.info-about-services .col-md-6:first-child {
  background-color: #ffffff; /* Fondo clarito para la izquierda */
  border-radius: 12px;
}

.info-about-services .col-md-6:last-child {
  padding: 30px;
}

/* ACCORDION */

/* Estilo base para el acordeón */
.accordion-body {
     padding: 15px; /* Espacio interno consistente */
     font-size: 1rem; /* Tamaño de fuente base para el texto */
   }
   
   /* Imágenes dentro del acordeón */
   .accordion-body img {
     max-width: 100%; /* Asegura que no desborde */
     height: auto; /* Mantiene proporciones */
     margin-bottom: 10px; /* Espacio debajo de la imagen */
   }
   
   /* Título del acordeón */
   #subtitulo-services {
     font-size: 1.75rem; /* Tamaño base para el título */
     display: center;
     

   }
   
   /* Botones del acordeón */
   .accordion-button {
     font-size: 1rem; /* Tamaño base para el texto del botón */
   }
   
   /* Ajustes para pantallas medianas (tablets) */
   @media (max-width: 991.98px) {
     #subtitulo-services {
       font-size: 1.5rem; /* Reducir título en tablets */
     }
     .accordion-button {
       font-size: 0.95rem; /* Reducir texto del botón */
     }
     .accordion-body {
       font-size: 0.95rem; /* Reducir texto del cuerpo */
     }
     .accordion-body img {
       max-width: 250px; /* Reducir tamaño máximo de imágenes */
     }
   }
   
   /* Ajustes para pantallas pequeñas (móviles) */
   @media (max-width: 767.98px) {
     #subtitulo-services {
       font-size: 1.25rem; /* Reducir más el título en móviles */
     }
     .accordion-button {
       font-size: 0.9rem; /* Reducir más el texto del botón */
     }
     .accordion-body {
       font-size: 0.85rem; /* Reducir texto del cuerpo en móviles */
       padding: 10px; /* Reducir padding en móviles */
     }
     .accordion-body img {
       max-width: 200px; /* Reducir aún más las imágenes en móviles */
     }
   }

/*DJFSJ*/

.accordion {
     border-radius: 10px; /* Redondea las esquinas del contenedor */
     overflow: hidden; /* Asegura que los ítems internos respeten el borde redondeado */
     background-color: #ffffff; /* Fondo blanco para el acordeón (ajusta según tu diseño) */
     border: 1px solid #dee2e6; /* Borde sutil para definir el contenedor */
   }

.accordion-button {
     color: #000; /* Por si querés cambiar el color del texto */
     font-weight: 600;
 }

.accordion-body img {

     border-radius: 20px;
}
   
.accordion-body img:hover {
     box-shadow: 0 6px 18px rgba(255, 255, 255, 0.4);
}

.accordion-body p {
color: #000000;
font-size: 1.1rem;
line-height: 1.6;
margin: 0 auto;
max-width: 85%;
}

/* Centrar el contenido del acordeón */
.accordion-button {
     display: flex;
     align-items: center;
     justify-content: center; /* Centra horizontalmente */
     text-align: center;
     font-weight: bold;
   }
   
   /* Asegurarse de que el ícono y el texto estén centrados como conjunto */
   .accordion-button img {
     margin-right: 10px;
   }
   
   /* Centrar el contenido dentro del body del acordeón */
   .accordion-body {
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
   }
   
   /* Asegurar que las imágenes no excedan el ancho y estén centradas */
   .accordion-body img {
     max-width: 100%;
     height: auto;
     display: block;
     margin: 0 auto 1rem auto;
   }
   
   /* Título general */
   #subtitulo-services {
     text-align: center;
     font-weight: bold;
   }
   
   /* Acordeón como contenedor flexible */
   .accordion-flush {
     display: flex;
     flex-direction: column;
     gap: 1rem;
   }
   

/* Estilo general */
#subtitulo-services {
     font-size: 2rem;
     font-weight: bold;
     margin-bottom: 1.5rem;
     color: #333;
     text-align: center;
   }
   

#subtitulo-services {
     font-weight: 600;
}

#subtitulo_about {
     font-size: 25px;
     font-weight: 800px;
     padding-bottom: 10px;
}

#checklist {
     font-size: 16px;
}

* {
     box-sizing: border-box !important;
}

html {
     scroll-behavior: smooth;
}

body {
     color: #666666;
     font-size: 14px;
     font-family: 'Poppins', sans-serif;
     line-height: 1.80857;
     font-weight: normal;
}

#titulo_banner {
     text-shadow: 4px -1px 6px #000000ab;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0 0 10px 0;
     font-weight: normal;
     line-height: normal;
     color: #111111;
     margin: 0
}

h1 {
     font-size: 24px;
}

h2 {
     font-size: 18px;
}

h3 {
     font-size: 18px;
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 14px
}

h6 {
     font-size: 13px
}

*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: #212121;
     opacity: 1
}

button:focus {
     outline: none;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

#subtitulo {
     margin: 3px;
     font-weight: 20px;
     font-size: 1.5rem;
     padding-top: 100px;
     padding-bottom: 30px;
}


p {
     margin: 3px;
     font-weight: 40px;
     font-size: 10px;
}

a {
     color: #222222;
}

a,
.btn {
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}

 :focus {
     outline: 0;
}

.btn-custom {
     margin-top: 20px;
     background-color: transparent !important;
     border: 2px solid #ddd;
     padding: 12px 40px;
     font-size: 16px;
}

.lead {
     font-size: 18px;
     line-height: 30px;
     color: #767676;
     margin: 0;
     padding: 0;
}

.form-control:focus {
     border-color: #ffffff !important;
     box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
     border: none !important;
}

.badge {
     font-weight: 500;
}

blockquote {
     margin: 20px 0 20px;
     padding: 30px;
}

button {
     border: 0;
     margin: 0;
     padding: 0;
     cursor: pointer;
}

.full {
     float: left;
     width: 100%;
}

.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}


/**-- heading section --**/


/*---------------------------- preloader area ----------------------------*/

.loader_bg {
     position: fixed;
     z-index: 9999999;
     background: #fff;
     width: 100%;
     height: 100%;
}

.loader {
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.loader img {
     width: 280px;
}


/*-- header area --*/

.telefono-link {
     color: #ffffff; /* Cambiar color de los enlaces */
     font-weight: normal;
     text-decoration: none;
   }
   
.telefono-link:hover {
     color: #4caf50; /* Cambiar color cuando el ratón pasa sobre el enlace */
     text-decoration: underline; /* Aplica el subrayado */
     text-decoration-color: #4caf50; /* Cambia el color del subrayado */
   }

.header {
     width: 100%;
     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5); /* Sombra negra en la parte inferior */
}

.header_top {
     background-color: rgb(0, 0, 0); /* negro con 50% de transparencia */
     padding: 10px 0;
     box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5); /* Sombra negra en la parte inferior */
}

#areas_de_trabajo {
     padding: 2px;
}

/* Estilos para las celdas de la tabla */
#tabla td, #tabla th {
     text-align: left; /* Alineación del texto */
   }

#tabla td {
     padding-left: 15px;
     text-align: left;
   }

ul.conta_icon li a img {
     padding-right: 7px;
}

ul.social_icon {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
}

ul.social_icon li {
     height: 30px;
     color: #fff;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     padding-right: 5px;
}

ul.social_icon li:last-child {
     padding-right: 0px;
}

ul.social_icon li a {
     color: #fff;
     width: 30px;
     height: 30px;
     background-color: #212227;
     float: left;
     text-align: center;
     line-height: 31px;
     border-radius: 100%;
     font-size: 17px;
}

ul.social_icon li a:hover {
     background: #e60027;
     color: #fff;
}

.select-box {
     cursor: pointer;
     position: relative;
     width: 90px;
}

.select,
.label {
     color: #677691;
     display: block;
     font-size: 12px;
}

.select {
     width: 100%;
     position: absolute;
     top: 0;
     padding: 5px 0;
     opacity: 0;
     -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
     background: none transparent;
     border: 0 none;
}

.select-box1 {
     background: #ecf3fc;
     border: #677691 solid 1px;
     border-radius: 30px;
}

.label {
     position: relative;
     padding: 0px 23px 0px 9px;
     cursor: pointer;
     margin-bottom: 0;
}

.open .label::after {
     content: "â–²";
}

.label::after {
     content: "â–¼";
     font-size: 12px;
     position: absolute;
     right: -18px;
     top: 0;
     padding: 0px 24px;
}

.se_fonr1 {
     justify-content: flex-end;
     display: flex;
     flex-wrap: wrap;
}

.time_o {
     padding-left: 15px;
     color: #0d1015;
     font-size: 14px;
}

.header_midil {
     padding: 22px 0;
}

.logo {
     text-align: center;
     display: block;
}

ul.conta_icon li a i {
     padding-right: 5px;
}

ul.conta_icon li a {
     color: #ffffff;
     font-size: 17px;
}

ul.conta_icon li a:hover {
     color: #212227;
     text-decoration: underline !important;
}

ul.right_icon {
     display: flex;
     justify-content: flex-end;
     flex-wrap: wrap;
}

ul.right_icon li img {
     margin-right: 30px;
}

.order {
     padding-top: 2px;
     float: right;
     max-width: 120px;
     font-size: 14px !important;
     color: #fff !important;
     height: 28px;
     width: 100%;
     background-color: #212227;
     display: block;
     text-align: center;
     border-radius: 40px;
}

.order:hover {
     background-color: #e60027;
}


/*--   navigation--*/

.header_bottom {
     background-color: #212227;
}

.navigation.navbar {
     float: left;
     padding: 0;
}

.navigation.navbar-dark .navbar-nav .nav-link {
     padding: 30px 24px;
     color: #ffffff;
     font-size: 17px;
     line-height: 20px;
     font-weight: 400;
     text-transform: uppercase;
}

.navigation.navbar-dark .navbar-nav .nav-link:focus,
.navigation.navbar-dark .navbar-nav .nav-link:hover {
     background-color: #e60027;
}

.navigation.navbar-dark .navbar-nav .active>.nav-link,
.navigation.navbar-dark .navbar-nav .nav-link.active,
.navigation.navbar-dark .navbar-nav .nav-link.show,
.navigation.navbar-dark .navbar-nav .show>.nav-link {
     background-color: #e60027;
}

.navbar-expand-md .navbar-nav {
     padding-right: 10px;
}

.search {
     padding: 24px 0;
     text-align: right;
}

.form_sea {
     border-radius: 20px;
     border: #fff solid 1px;
     padding: 0px 15px;
     color: #000;
     height: 32px;
     position: relative;
     width: 100%;
}

.seach_icon {
     position: absolute;
     margin-left: -25px;
     z-index: 999;
     background: transparent;
     padding: 3px 0px 0px 0px;
     color: #b7b7b7;
}


/*-- marker-end sidebar  navigation--*/


/** banner section **/

.banner_main {
     background: url(../images/imagenBanner.png);
     padding: 250px 0px 0px 0px;
     background-size: 100% 100%;
     background-repeat: no-repeat;
     min-height: 698px;
}

.blodark {
     color: #212227;
     font-family: 'Righteous', cursive;
     font-size: 85px;
}

.text-bg {
     text-align: left;
}

.ban_img {
margin-right: -45px;
position: absolute;
}

.text-bg h1 {
     color: white;
     font-size: 93px;
     line-height: 100px;
     padding-bottom: 50px;
     border: 3px black;
     font-weight: 350;
}

.text-bg p {
     color: #2a2a2c;
     line-height: 35px;
     font-size: 30px;
     margin-bottom: 50px;
}

.text-bg .read_more {
     font-weight: 500;
     background: #1d37fd;
     color: #fff !important;
     border-radius: 43px;
     margin-right: 25px;
     padding: 13px 0;
     max-width: 210px;
     margin-bottom: 20px;
}

.text-bg .read_more:hover {
     background: #fcc10e;
     color: #000 !important;
}

.ban_img figure {
     margin: 0;
}

.ban_img figure img {
     width: 100%;
}


/** end banner section **/

.titlepage h2 {
     font-size: 35px;
     color: #141414;
     line-height: 40px;
     font-weight: bold;
     padding: 0;
}

.titlepage h2 img {
     padding-right: 10px;
}

.d_flex {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
}

.read_more {
     font-size: 17px;
     background-color: #fff;
     color: #000;
     padding: 15px 0px;
     width: 100%;
     max-width: 170px;
     text-align: center;
     display: inline-block;
     transition: ease-in all 0.5s;
     font-weight: 500;
     border-radius: 50px;
     text-transform: uppercase;
}

.read_more:hover {
     background: #03cafc;
     color: #fff !important;
     transition: ease-in all 0.5s;
}


/** six_box section **/

.six_box {
     background: url(../images/service_bg.jpg);
     background-size: 100% 100%;
     background-repeat: no-repeat;
}

.bluedark_bg {
     background: #212227;
}

.yellow_bg {
     background: #e60027;
}

.six_box .six_probpx {
     text-align: center;
     padding: 50px 0;
}

.six_box .six_probpx i {
     display: block;
}

.pa_left {
     padding-left: 0;
     padding-right: 0;
}

.six_box .six_probpx span {
     color: #fff;
     font-size: 17px;
     line-height: 32px;
     text-transform: uppercase;
     font-weight: bold;
}


/** end six_box section **/


/** project section **/

.project {
     background: url(../images/product_bg.jpg);
     background-size: 100% 100%;
     background-repeat: no-repeat;
     padding: 90px 0 90px 0;
}

.project .titlepage {
     text-align: left;
}

.project .titlepage h2 {
     margin-bottom: 40px;
     padding-bottom: 10px;
     border-bottom: #e60027 solid 5px;
}

.project .titlepage p {
     font-size: 17px;
     line-height: 30px;
     font-weight: 400;
     padding-top: 10px;
     color: #fff;
}
.product_main {display:flex; flex-wrap: wrap; justify-content: center;}
.project .project_box {
     text-align: center;
max-width: 17.3%;
margin: 0 15px 20px 15px;
}

.dark_white_bg {
     background: #f2f2f2;
     height: 257px;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
}

.project .project_box h3 {
     color: #1c1c1b;
     font-size: 15px;
     line-height: 20px;
     padding: 22px 0px 0px 0px;
     text-align: left;
}

.project .read_more {
     margin-top: 50px !important;
     margin: 0 auto;
     display: block;
     text-transform: none;
     color: #fff;
     background: #212227;
     padding: 10px 0;
}

.project .read_more:hover {
     background-color: #e60027;
}


/** end project section **/

#accordionFlushExample {
     padding: 100px;
}


/** fashion section **/

.fashion img {
     width: 110%;
}


/** end fashion section **/


/** news section **/

.news {
     background-color: #fff;
     padding-top: 90px;
}

.news .titlepage h2 {
     margin-bottom: 15px;
     padding-bottom: 10px;
     border-bottom: #e60027 solid 5px;
}

.margin_top40 {
     margin-top: 40px;
}

.news_img figure {
     margin: 0;
}

.news_img figure img {
     width: 100%;
}

.news_text h3 {
     color: #141414;
     font-size: 24px;
     font-weight: bold;
     padding-bottom: 10px;
}

.news_text span {
     border-bottom: #e60027 solid 1px;
     padding-bottom: 4px;
     color: #141414;
     font-size: 15px;
}

.date_like {
     float: right;
}

.pad_le {
     padding-left: 15px;
}

.news_text p {
     color: #141414;
     font-size: 17px;
     line-height: 32px;
     font-weight: 400;
     padding-top: 15px;
}


/** end news section **/


/** newslatter section **/

.newslatter {
     background-color: #fff;
     padding: 90px 0;
}

.neslatter {
     color: #141414;
     font-size: 30px;
     line-height: 32px;
     text-align: left;
     padding-bottom: 0;
     font-weight: bold;
}

.news_form {
     text-align: right;
}

.news_form .letter_form {
     height: 54px;
     width: 100%;
     padding: 0 15px;
     font-size: 17px;
     border-radius: 32px;
     border: #a8a8a8 solid 1px;
}

.news_form .sumbit {
     padding: 5px 42px;
     margin-left: -180px !important;
     font-size: 17px;
     background: #212227;
     color: #fff;
     border-radius: 30px;
     z-index: 9999;
}

.news_form .sumbit:hover {
     background-color: #e60027;
}


/** end newslatter section **/

.three_box {
     margin-top: -30px; /* Elimina espacio extra arriba de los íconos */
     padding-bottom: 80px;
     font-size: 10px;
}

.gift_box {
     width: 170px; /* Tamaño fijo para cada caja */
     height: 200px;
     background-color: #fff;
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra más sutil */
     text-align: center;
     padding: 30px 15px; /* Más espacio horizontal */
     border-radius: 15px;
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Efecto suave */
 }
 
 .gift_box:hover {
     transform: translateY(-5px); /* Levanta ligeramente al pasar el mouse */
     box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
 }
 
 .gift_box i {
     display: block;
     margin-bottom: 10px; /* Espacio entre la imagen y el texto */
 }
 
 .gift_box img {
     width: 64px; 
     height: 64px;
     transition: transform 0.3s ease-in-out;
 }
 
 .gift_box:hover img {
     transform: scale(1.1); /* Efecto de zoom al pasar el mouse */
 }
 
 .gift_box span {
     color: #212227;
     font-size: 16px;
     font-weight: 500; /* Hace que el texto se vea más elegante */
     display: block;
     margin-top: 8px;
 }


/** three_box section **/


/** end three_box section **/


/** footer **/

.footer {
     background: #212227;
     padding-top: 80px;
     text-align: center;
}

.footer h3 {
     color: #fff;
     font-size: 20px;
     line-height: 20px;
     text-transform: uppercase;
     text-align: center;
     padding-bottom: 20px;
     font-weight: 600;
}

.footer p {
     color: #fff;
     font-size: 17px;
     line-height: 32px;
     text-align: left;
     padding-right: 31px;
     font-weight: 400;
     display: inline-block;
}

.copyright {
     margin-top: 80px;
     padding-bottom: 20px;
     background: #fbfdfd;
}

.copyright p {
     color: #292929;
     font-size: 18px;
     line-height: 22px;
     text-align: center;
     padding-top: 25px;
     font-weight: normal;
     padding-right: 0 !important;
}

.copyright a {
     color: #292929;
}

.copyright a:hover {
     color: #f9bf16;
}


/** end footer **/


/** inner page css **/

.footer_to90 .footer {
     padding-top: 90px;
}

.blue_bg {
     background-color: #f3a20d;
     padding: 35px 0;
}

.blue_bg .titlepage {
     text-align: center;
}


/** about page **/

.about_page .blue_bg .titlepage h2 {
     color: #fff;
}

.about {
     background-color: #fff;
     padding: 60px 0 50px 0;
}

.about_text h3 {
     font-size: 30px;
     margin-top: 20px;
     line-height: 30px;
     font-weight: 600;
     color: #212227;
     padding: 0;
}

.about_text p {
     color: #000;
     font-size: 17px;
     line-height: 30px;
     padding: 25px 0 40px 0;
}



.about_text .read_more:hover {
     background: #e60027;
}


/** about page **/

.project_page .blue_bg .titlepage h2 {
     color: #fff;
}

.news_page .blue_bg .titlepage h2 {
     color: #fff;
}

.news_page .news {
     padding: 50px 0 90px 0;
}

.fashion_page .blue_bg .titlepage h2 {
     color: #fff;
}

.fashion_page .fashion {
     margin: 90px 0;
}


/** contact page **/

.contact_page .blue_bg .titlepage h2 {
     color: #fff;
}

.contact_page .contact {
     margin-bottom: 90px;
}

.contact {
     margin-top: 90px;
     background: #fff;
}

.contact .titlepage {
     text-align: left;
     padding-bottom: 60px;
}

.contact .titlepage h2 {
     color: #fefeff;
}

.main_form .contactus {
     border: #212227 solid 1px;
     padding: 0 15px;
     margin-bottom: 20px;
     width: 100%;
     height: 46px;
     background: transparent;
     color: #212227;
     font-size: 17px;
     font-weight: normal;
     padding: 0 15px;
     box-shadow: 0 0 5px rgba(243, 195, 30, 0.5);
}

.main_form .contactusmess {
     border: #212227 solid 1px;
     padding: 0 15px;
     margin-bottom: 0;
     width: 100%;
     padding-top: 52px;
     padding-bottom: 52px;
      background: transparent;
     color: #212227;
     font-size: 17px;
     font-weight: normal;
     box-shadow: 0 0 5px rgba(243, 195, 30, 0.5);
}

.send_btn {
     background: #212227;
     font-weight: 500;
     font-size: 18px;
     width: 185px;
     color: #fff;
     height: 56px;
     margin-top: 50px;
     transition: ease-in all 0.5s;
     border-radius: 40px;
}

.send_btn:hover {
     background: #e60027;
     transition: ease-in all 0.5s;
}

#request *::placeholder {
     color: #212227;
     opacity: 1;
}


/** end contact section **/

