* {
font-family: 'Segoe UI';
}

.container-xl {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0px 20px;
	width: 100%;
}
.container-l {
	margin: 0 auto;
	max-width: 1024px;
	padding: 0px 20px;
	width: 100%;
}
h2 {
	font-size: 48px;
 }
/* BUTTON */
.btn {
    padding: 14px 32px;
    color: #fff;
    background: rgb(154 0 247);
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    line-height: 24px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
	   width: max-content;
}

.btn:hover {
    background: #fff;
    color: rgb(154 0 247);
    border-color: rgb(154 0 247);
    transform: scale(1.03);
}
.s-demo__btn-purple,
.s-demo__btn-light {
	padding: 16px 32px;
	color: #fff;
	background: rgb(154 0 247);
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	line-height: 24px;
	font-weight: 600;
	border: 2px solid transparent;
	transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}
.s-demo__btn-light {
	color: rgb(154 0 247);
	border-color: rgb(154 0 247);
	background: #fff;
}

.s-demo__btn-purple:hover {
	background: #fff;
	color: rgb(154 0 247);
	border-color: rgb(154 0 247);
	transform: translateY(-2px);
}

.s-demo__btn-light:hover {
	background: rgb(154 0 247);
	transform: translateY(-2px);
	color: #fff;
	border-color: rgb(154 0 247);
}
.coloured-btn {
    background-image: linear-gradient(90deg, #9a00f7, #d46686);
    border-radius: 12px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    padding: 20px 22px;
    text-align: center;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}
.transparent-btn {
    display: flex;
    justify-content: center;
}

.transparent-btn {
    align-items: center;
    backdrop-filter: blur(4px);
    border: 2px solid hsla(0, 0%, 100%, .3);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
    padding: 20px 40px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.transparent-btn:hover {
    background: hsla(0, 0%, 100%, .1);
    border-color: hsla(0, 0%, 100%, .5);
}

@media (width <= 479px) {
  .s-demo__btn-purple, .s-demo__btn-light {
      width: 100%;
     justify-content: center;
       max-width: 100%;
    }
  .coloured-btn {
        display: flex;
        justify-content: center;
    }
	h2 {
		font-size: 26px !important;
	}
	 section {
		padding: 40px 0 !important;
	 }
}

/* MODAL REQUEST */
 .modal-request_overlay {
  background-color: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
     backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
}
 .modal-request.visible {
 opacity: 1;
 pointer-events: auto;
}
.modal-request_overplay-btn {
    cursor: pointer;
    position: absolute;
    right: -25px;
    top: -40px;
}

.modal-request {
    z-index: 666;
    opacity: 0;
    pointer-events: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
  inset: 0;
}
.modal-request_content {
  position: relative;
  z-index: 555;
  border-radius: 16px;
}

.modal-request_content iframe {
  min-height: 620px;
  overflow: hidden;
  border-radius: 16px;
}



@media (width <= 600px) {
  .modal-request_content iframe {
  min-height: 600px;
    max-width: 400px;
}

  
  @media (width <= 479px) {
  .modal-request_content iframe {
    max-width: 350px;
}
  .modal-request_overplay-btn {
    right: 0;;
    top: -35px;
}
}