/*
Bootstrap breakpoints
$media-xs: "(min-width: 375px)";
$media-sm: "(min-width: 576px)";
$media-md: "(min-width: 768px)";
$media-lg: "(min-width: 992px)";
$media-xl: "(min-width: 1200px)";
$media-xxl: "(min-width: 1400px)";
*/

/* New page design styles */

.site:has(.page-full){
	max-width: 100%;
	
	/* Containers */
	@media(min-width:1400px) {
		.container,
		.container-lg,
		.container-md,
		.container-sm,
		.container-xl,
		.container-xxl {
			max-width: 1320px !important;
		}
	}

	@media(min-width:1600px) {
		.container-xxl {
			max-width: 1420px !important;
		}
	}
	
	& .px-20{
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	
	/* Elements */
	.heading{
		font-size: 36px;
		font-weight: 700;
		line-height: 1em;
		color: #212529;
		font-family: "Montserrat", sans-serif;
		@media(min-width:768px) {
			font-size: 48px;
		}
	}
	.subheading{
		font-size: 16px;
		font-weight: 700;
		line-height: 1em;
		letter-spacing: 0.3125em;
		text-transform: uppercase;
		@media(min-width:768px) {
		}
	}
	
	/* Sections */
	& .section-sedation{
		color: #fff;
		font-family: 'Inter', Arial, serif;
		font-size: 19px;
		line-height: 1.5em;
		letter-spacing: 0.03em;
		& .bg-image{
			position: relative;
			width: 100%;
			height: 100%;
			background-position: center;
			background-repeat: no-repeat;
			background-size: cover;
			z-index: 1;
			min-height: 400px;
		}
		& .overlay-image{
			width: 250px;
			height: 250px;
			max-width: 100%;
			background-color: #151515;
			padding: 25px;
			object-fit: contain;
			z-index: 2;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translateX(-50%) translateY(-50%);
		}
		& .content{
			position: relative;
			padding: 60px 0 60px 0;
			@media(min-width:768px) {
			
			}
			@media(min-width:992px) {
				padding: 60px 0 60px 0;
			}
			@media(min-width:1200px) {
				padding: 100px 0 65px 0;
			}
		}
		& .text-content{
			padding: 0 20px;
			@media(min-width:768px) {
				padding: 0 100px;
			}
			@media(min-width:992px) {
				padding: 0 100px;
			}
			@media(min-width:1200px) {
				padding: 0 135px;
			}
		}
		& .heading{
			color: #fff;
			max-width: 100%;
			font-size: 32px;
			line-height: 1.2em;
			font-family: 'Montserrat', Arial, serif;
			margin-bottom: 0;
			@media(min-width:992px) {
				max-width: 465px;
			}
		}
		& p{
			font-size: 19px;
			max-width: 100%;
			margin-top: 20px;
			@media(min-width:992px) {
				max-width: 605px;
			}
		}
		& .nav-container{
			position: absolute;
			left: 0;
			bottom: 10%;
			z-index: 2;
			transform: translateX(-50%) translateY(-50%);
			display: flex;
			flex-direction: column-reverse;
			gap: 20px;
			& .swiper-button-next,
			& .swiper-button-prev{
				position: relative;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                padding: 0;
                height: 100px;
                width: 100px;
                background: #fff;
                color: #65c8d0;
                line-height: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 0;
                transform: none;
                margin-top: 0;
				transition: 0.3s;
				&:hover{
					background: #151515;
				}
			}
		}
	}
	& .sedation-swiper{
		position: relative;
		z-index: 1;
		margin-top: 65px;
		padding-bottom: 85px;
		padding-left: 20px;
		padding-right: 20px;
		@media(min-width:992px) {
			padding-left: 0;
			padding-right: 0;
		}
		& .swiper-slide{
			opacity: 0.3;
			height: auto;
			width: 345px;
			transition: 0.2s;
			box-shadow: 0px 4px 94px 0px rgba(0, 0, 0, 0.15);
			@media(min-width:992px) {
				
			}
			& .slide-inner{
				position: relative;
				height: 100%;
				background: #a6e0e5;
				color: #fff;
				font-family: 'Inter', Arial, serif;
				font-weight: 500;
				line-height: 1.66em;
				& img{
					width: 100%;
					height: 205px;
					object-fit: cover;
					object-position: center;
				}
				& .content{
					padding: 30px 25px 10px 25px;
				}
				& p{
					margin-top: 0;
					margin-bottom: 0;
					font-size: 18px;
					transition: 0.3s;
				}
				& .arrow{
					opacity: 0;
					display: flex;
					justify-content: end;
					&:after{
						content: "";
						display: block;
						width: 77px;
						height: 77px;
						background-color: #65C8D0;
						background-image: url(./img/bx-arrow-back-white.8f831be3.svg);
						background-position: center;
                        background-size: initial;
                        background-repeat: no-repeat;
						transform: scaleX(-1);
					}
				}
			}
			&.swiper-slide-active{
				opacity: 1;
				& .slide-inner{
					color: #212529;
					background: #fff;
					& .arrow{
						opacity: 1;
					}
					& p{
						color: #212529;
					}
				}
			}
		}
		& .swiper-pagination{
			line-height: 0;
            bottom: 0;
            width: initial;
            left: 0;
			display: flex;
			flex-direction: row;
			gap: 10px;
			justify-content: center;
			width: 100%;
			padding: 0 20px;
			@media(min-width:992px) {
				justify-content: start;
				left: 135px;
				width: unset;
				padding: 0;
			}
			& .swiper-pagination-bullet{
				background: #fff;
				margin: 0;
				width: 65px;
                height: 13px;
                border-radius: 50px;
				opacity: 0.3;
				transition: 0.3s;
			}
			& .swiper-pagination-bullet-active{
				opacity: 1;
			}
		}
	}
	
	& .section-staff{
		font-family: 'Inter', Arial, serif;
		font-size: 20px;
		line-height: 1.6em;
		letter-spacing: 0.03em;
		background-color: #F3F7F9;
		padding: 60px 0 60px 0;
		@media(min-width:992px) {
			padding: 170px 0 200px 0;
		}
		& p{
			font-size: 20px;
			line-height: 1.6em;
			letter-spacing: 0.03em;
		}
		& .heading{
			margin-bottom: 15px;
		}
		& .subheading{
			color: #65C8D0;
			margin-bottom: 13px;
		}
		
		& .text-content{
			width: 100%;
			max-width: 100%;
			@media(min-width:992px) {
				width: 850px;
			}
		}
	}
	& .staff-swiper{
		position: relative;
		z-index: 1;
		margin-top: 65px;
		padding-bottom: 85px;
		padding-left: 20px;
		padding-right: 20px;
		letter-spacing: normal;
		@media(min-width:992px) {
			padding-left: 0;
			padding-right: 0;
		}
		& .swiper-slide{
			width: 526px;
			transition: 0.2s;
			& .slide-inner{
				position: relative;
				& .image{
					width: 100%;
					height: 526px;
					object-fit: cover;
					object-position: center;
				}
				& .content{
					position: absolute;
					bottom: 0;
					left: 0;
					max-width: 100%;
					font-family: "Open Sans", sans-serif;
					font-size: 16px;
					line-height: 1.2em;
					background-color: #65C8D0;
					padding: 23px 30px;
					color: #fff;
					opacity: 0;
					transition: 0.3s;
					width: 100%;
					min-height: unset;
					@media(min-width:992px) {
						min-height: 115px;
					}
					@media(min-width:1400px) {
						width: unset;
						min-height: unset;
					}
				}
				& .name{
					margin-bottom: 0;
                    font-size: 20px;
                    font-weight: 700;
				}
				& .title{
					margin-top: 6px;
                    display: inline-block;
				}
			}
			&.swiper-slide-active,
			&.swiper-slide-prev,
			&.swiper-slide-next{
				& .content{
					opacity: 1;
				}
			}
		}
		& .swiper-pagination{
			line-height: 0;
            bottom: 0;
            width: initial;
            left: 0;
			display: flex;
			flex-direction: row;
			gap: 15px;
			justify-content: center;
			width: 100%;
			padding: 0 20px;
			& .swiper-pagination-bullet{
				background: #65C8D0;
				margin: 0;
				width: 85px;
                height: 13px;
                border-radius: 50px;
				opacity: 0.3;
				transition: 0.3s;
			}
			& .swiper-pagination-bullet-active{
				opacity: 1;
			}
		}
}
