/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

  /*************/
 /** GENERAL **/
/*************/
.grecaptcha-badge {
	display: none !important;
}

.fixed-logo {
	position: fixed;
	top: 30px;
	left: 50px;
	z-index: 50;
}


  /************/
 /** SLIDER **/
/************/
.changing-text {
    min-height: 50px;
}

.home-slider__red-text--red {
	background-color: #d60c52 !important;
}

.home-slider__red-text--green {
	background-color: #32aa9f !important;
}

.home-slider__slides .slide-pc {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.home-slider__slides .slide-pc {
	height: 100vh;
	width: 100vw;
}

.home-slider__slides .slide-mobile {
	height: auto;
	width: 100%;
}

.home-slider-mobile {
	display: none;
}

.home-slider__menu {
	position: absolute;
	width: 30%;
	top: 100px;
	right: 8%;
}

.home-slider__menu ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: right;
	list-style: none;
}

.home-slider__menu ul li {
	text-align: right;
	position: relative;
}

.home-slider__menu ul li:not(:last-child)::after {
	content: "";
    width: 65px;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    right: 0;
    top: 33px;
}

.home-slider__menu ul a {
	font-size: 17px;
	font-family: 'Raleway';
	font-weight: 400;
	color: #fff;
	text-align: right;
}

.home-slider-desktop {
	position: relative;
}

@media screen and (max-width: 767px) {
	.home-slider-desktop  {
		display: none;
	}
	
	.home-slider-mobile {
		display: block !important;
	}
	
	.fixed-logo {
		display: none;
	}
}

.home-slider__content * {
	text-transform: uppercase;
	font-weight: 900;
	color: var(--paletteColor8);
	font-family: 'Raleway';
}

.home-slider__content {
	position: absolute;
	opacity: 0;
}

.home-slider-desktop .slick-dots {
	transform: translatey(-50px);
}

.home-slider-mobile .slick-dots {
	transform: translatey(-40px);
}

.home-slider-desktop .slick-dots li button:before {
	color: var(--paletteColor8);
	font-size: 12px;
}

.home-slider-desktop .slick-dots li.slick-active button:before {
	color: var(--paletteColor8);
}

.home-slider-mobile .slick-dots li button:before {
	color: var(--paletteColor8);
	font-size: 10px;
}

.home-slider-mobile .slick-dots li.slick-active button:before {
	color: var(--paletteColor8);
}

.home-slider__content--desktop {
	left: 23%;
    top: 65%;
    transform: translateY(-50%);
	animation: 0.8s forwards text-appears-desktop linear;
	animation-delay: 1s;
}

.home-slider__content--mobile {
	transform: translateX(-50%);
	top: unset;
	bottom: 18%;
	left: 50%;
	width: 90%;
	animation: 0.8s forwards text-appears-mobile linear;
	animation-delay: 1s;
}

.home-slider__content h1 {
	font-size: 75px;
	line-height: 75px;
}

.home-slider__content h1 span:nth-child(1) {
	-webkit-text-stroke-width: 2px;
  	-webkit-text-stroke-color: var(--paletteColor8);
	color: transparent;
}

.home-slider__content p {
	font-size: 35px;
	line-height: 45px;
	margin: 0;
}

.home-slider__red-text {
	padding: 3px 10px;
	background-color: #D60C52; 
}

.changing-text, .home-slider__red-text {
    transition: all 0.3s ease;
}

@media screen and (min-width: 992px) {
	.home-slider__slides {
		height: 100vh;
		overflow: hidden;
	}
}

@media screen and (max-width: 1500px) {
	.home-slider__content h1 {
		font-size: 65px;
		line-height: 65px;
	}
	.home-slider__content p {
		font-size: 30px;
		line-height: 40px;
	}	
}

@media screen and (max-width: 1050px) {
	.home-slider__content h1 {
		font-size: 55px;
		line-height: 55px;
	}
	.home-slider__content p {
		font-size: 25px;
		line-height: 35px;
	}	
}


@media screen and (max-width: 991px) {
	.home-slider__menu {
		width: 100%;
	}
	
	.parallax {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.home-slider__content h1 {
		font-size: 38px;
		line-height: 38px;
	}
	.home-slider__content p {
		font-size: 20px;
		line-height: 30px;
	}	
	
	.home-slider__content h1 span:nth-child(1) {
		-webkit-text-stroke-width: 1px;
	}
}

@media screen and (max-width: 400px) {
	.home-slider__content h1 {
		font-size: 30px;
		line-height: 30px;
	}
	
	.home-slider__content p {
		font-size: 18px;
		line-height: 28px;
	}	
}

@keyframes text-appears-desktop {
	0% {
		opacity: 0;
		transform: translateY(-50%) translateX(-100px);
	}
	
	70% {
		transform: translateY(-50%) translateX(0px);
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes text-appears-mobile {
	0% {
		opacity: 0;
		transform: translateX(-50%) translateX(-50px);
	}
	
	70% {
		transform: translateX(-50%) translateX(0px);
	}
	
	100% {
		opacity: 1;
	}
}