.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
  
  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
  
.modal-content {
    width: 100%;
	height: 100%;
	background-color: #272727;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 2em;
	background-image: url('/wp-content/uploads/2026/02/Group-23.png');
    background-repeat: no-repeat;
    background-size: 35%;
    background-position: 105% center;
}

.modal-imageblock{
	height: 10%;
	max-width: 1500px;
    width: 88%;
    margin: auto;
}

.modal-textcontent{
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
	max-width: 1500px;
    width: 88%;
    margin: auto;
}

.modal-inner-content{
	max-width: 60%;
    font-size: 18px;
    font-family: "amsi-pro",sans-serif;
    line-height: 1.4;
	color: #fff;
    margin-bottom: 2em;
}

.modal-inner-content .s-txt{
	font-size: 14px;
}

.modal-inner-content p{
	margin-bottom: 1em;
}

.modal-content .close-button{
    display: flex;
	align-items: center;
	gap: 1em;
	background: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-family: "amsi-pro",sans-serif;
}

.modal-content .close-button:hover{
    opacity: 0.8;
}


@media (max-width: 1200px){
	.modal-inner-content{
		font-size: 14px;	
	}
	
	.modal-imageblock img{
		width: 250px;
	}
}

@media (max-width: 767px){
	.modal-inner-content{
		max-width: none;
	}
	.modal-content{
		background-image: none;
	}
	.modal-textcontent{
		height: auto;
		margin-top: 4em;
	}
}