/*
Theme Name: Nextawards Child
Template: nextawards
*/

hr{
    border-bottom: none;
}
/* ! header */

.header{
    height: 150px;
    display: flex;
    align-items: center;
}

.header__content{
    border-bottom: none;
}

.menu li a{
    color: #323E48;
}

.header__logo-img{
	width: 250px;
	height: auto;
}

@media (max-width: 768px) {
  .header__logo-img{
	width: 200px;
}
}

.evi a{
    border-radius: 0;
    background-color: #F2AF0D;
    color: #000!important;
}

@media (max-width: 768px) {
  .header{
    height: 100px;
  }
  body.admin-bar .header{
    top: 0;
  }
}

/* !  */

.border-custom{
    border-image: linear-gradient(to right, #F2AF0D, #323E48);
    border-image-slice: 1;
}
.wp-block-image img{
	 border-image: linear-gradient(to right, #F2AF0D, #323E48)!important;
    border-image-slice: 1!important;
	padding: 3%;
}
/* ! footer */

.col-33{
    width: 100%;
}




.form_custom input[type="text"],
.form_custom input[type="email"],
.form_custom textarea
{
	padding: 15px 20px;
    background-color: transparent;
	border: 2px solid #323E48;
	border-radius:10px;
	transition: all 0.3s ease;
    font-family:'Special Elite';
    color: #606F7C!important;
}

.form_custom textarea{
	margin-top: 10px;
}

.form_custom input[type="text"]:hover,
.form_custom input[type="email"]:hover,
.form_custom input[type="tel"]:hover,
.form_custom textarea:hover {
	border-color: gray;
}

.form_custom {
	border-radius:20px;
	padding:25px;
	
}

.form_custom textarea {
	height: 120px;
}

.wpcf7-list-item {
	margin:0;
	margin-right:15px;
}

.form_custom input[type="radio"]:checked {
	background-color: #F2AF0D;
}

.form_custom input[type="radio"]:checked:after {
	content:"";
	position:absolute;
	display:block;
	height: 10px;
	width:10px;
	border-radius:100px;
	top: 50%;
    left:50%;
	transform:translate(-50%, -50%);
}

.wpcf7-list-item label {
	display:flex;
	align-items:center;
	gap:4px;
}

.form_custom select {
	padding: 15px 20px;
	background-color: transparent;
	color: #606F7C;
	border: 2px solid #323E48;
	border-radius: 10px;
	width: 100%;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath fill='%23606F7C' d='M5.707 9.711a1 1 0 0 0 0 1.414l4.892 4.887a2 2 0 0 0 2.828 0l4.89-4.89a1 1 0 0 0-1.414-1.414l-4.186 4.186a1 1 0 0 1-1.414 0L7.121 9.711a1 1 0 0 0-1.414 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
}


.form_custom input.wpcf7-not-valid {
	border-color:red !important;
}

.form_custom input[type="submit"] {
	background-color:#F2AF0D!important;
	color:#323E48;
	padding:12px 36px;
	transition: all 0.3s ease;
    font-size: 1.25rem;
    font-weight: 900;
} 

.form_custom input[type="submit"]:hover {
	background-color: dimgray;
	cursor:pointer;
}

.form_custom .form_2colonne {
	display:grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
}

.form_custom label {
	font-size: 1rem;
}

@media (max-width:600px) {
.form_custom .form_2colonne {
	grid-template-columns: 1fr;
	grid-gap: 0;
}
	.form_custom {
	border-radius:15px;
	padding:15px;
}
	.form_custom input[type="submit"] {
    width: 100%;
}
}

.text-center{
	justify-content: center;
	align-items: center;
}