/*
Theme Name:     Hello Elementor Child
Theme URI:      https://loudachris.com.au
Description:    Hello-elementor child theme.
Author:         Loudachris
Author URI:     
Template:       hello-elementor
Version:        0.1.0
*/



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root{
	--maincolor: #D4A5A5;
	--font-sans: "Inter", sans-serif;
	--default-font-family: var(--font-sans);
}

body{
	font-family: var(--default-font-family) !important;
}

/*---- Astra Theme Default Style Reset CSS - START----*/
.ast-container {
    max-width: 100% !important;    
    padding: 0 !important;  
    margin: 0 !important;  
    width: 100% !important;
}
 .ast-article-single {
    padding: 0 !important;
}
.ast-separate-container #primary {
    margin: 0 !important;
    padding: 0 !important;
}
.ast-container p {
    margin-bottom: 10px;
}
.ast-container p:last-child {
    margin-bottom: 0;
}
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single,
.ast-separate-container .comments-title,
.ast-separate-container .ast-archive-description {
    padding: 0;
    border: none;
}
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-single:not(.ast-related-post) {
    background-color: transparent!important;
}
#ast-scroll-top {    
    /* display: none!important; */
    background-color: var(--primary);
    color: var(--text);
}
/*---- Astra Theme Default Style Reset CSS - END ----*/

.nav_bg{
	min-height: auto;
  animation-duration: 0s
}
.nav_bg.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation-name: slideHead;
  animation-duration: 1s;
  animation-timing-function: ease;
	z-index: 100;
}
@keyframes slideHead {
  0% {
      transform: translateY(-100%)
  }
}
body.admin-bar .dialog-type-lightbox{ position: fixed !important;}
.custom-icon{ line-height: 0 !important;}

.popUp_menu{}
.popUp_menu .elementor-icon-list-items li {
    padding-inline: calc(30px / 2);
}
.popUp_menu .elementor-icon-list-items li:first-child,
.popUp_menu .elementor-icon-list-items li:last-child{ margin-block: calc(30px / 2);}
/* ======== Header ======= */


.gradient-text{ color: var(--maincolor);}
.hero_part{ aspect-ratio: 4/5;}
.service_head{}
.service_head .elementor-button:hover {
	text-decoration: underline;
    text-underline-offset: 4px;    
}
.srvImg_part .srv_img {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.srvImg_part .srv_img img {
    aspect-ratio: 1 / 1;
	object-fit: cover;
    transition: all 1s ease;
}
.srvImg_part:hover .srv_img img{ transform: scale(1.15);}
.recent_img{
	aspect-ratio: 1 / 1;
}



#moreText {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

#moreText.show {
  max-height: 200px; 
  opacity: 1;
}

#readMoreBtn {
  transition: all 0.3s ease;
}
@media(max-width: 1200px){
	#moreText.show {
  		max-height: 270px;
	}
}
@media(max-width: 800px){
	#moreText.show {
  		max-height: 300px; 
	}
}
@media(max-width: 767px){
	#moreText.show {
  		max-height: fit-content; 
	}
}