/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
.hero-section {
  position: relative;
  height: 800px;
  background: url('/wp-content/uploads/2024/10/slide.jpg') no-repeat center center fixed;
  background-size: cover ;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  color: white !important;
  background-color: transparent; 
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.hero-content.at-45 {
  width: 600px;
}
.hero-content.at-45 h2 {
  color: #000;
  transition: color 0.3s ease-in-out;
  position: sticky;
  top: 35%;
  transition: color 0.3s ease-in-out;
}
.target-section {
  padding: 70px 20px 60px 20px;
  text-align: center;
}
.hero-section h2 {
	font-size: 64px;
	font-weight: 900;
	line-height: 70px;
	color: #fff;
	transition: color 0.3s ease-in-out;
}
.target-section h2 {
	color: #000;
	font-size: 64px;
	font-weight: 900;
	line-height: 70px;
}
.target-section p {
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 32px;
	width:70%;
	margin:0 auto;
}
.target-content {
  opacity: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.hidden {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.2s, opacity 0.2s ease;
}
.visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.2s ease;
}
.postcls .elementor-post__title a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}
.postcls .elementor-post__title a {
    border: none;
    background-image: url(/wp-content/uploads/2024/11/Untitled-3.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 16px;
	padding-right: 22px;
}
.oceanwp-sticky-header-holder {
	height:auto;
}
@media only screen and (min-width: 1900px) {
	.target-section {
		padding: 200px 20px 60px 20px;
	}
}
@media only screen and (max-width: 1350px) {
	.hero-section {
		height: 600px;
	}
}
@media only screen and (max-width: 600px) {
	  .hero-section {
         height: 200px;
      }
      .hero-section h2 {
    	font-size: 32px;
    	font-weight: 900;
    	line-height: 36px;
    	color: #fff;
    }
	.target-section{padding-top: 30px}
	.target-section p {
		width:100%;
	}
    .target-section h2 {
    	color: #000;
    	font-size: 32px;
    	font-weight: 900;
    	line-height: 40px;
    }
   .hero-content.at-45 {
     width: 350px;
   }
}