/*********************
START: REQUEST
*********************/
.request {
    padding-block: 3rem;
}

.request--content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.request--text,
.request--image {
    width: 48%;
}

.request--text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 1rem 4rem 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: var(--border-radius10);
    background-image: url(../img/icons/requestRegistration-rectangle.svg);
}

.request--text form {
    width: 100%;
    margin-inline: auto;
    margin-block-start: 1.5rem;
}

.request--text form input {
    margin-block-end: 0.75rem;
}

.request--text p {
    font-size: var(--txt20);
    margin-block-end: 0.2rem;
}

.request--image>img {
    display: block;
    width: 70%;
    margin-inline: auto;
}

.request--text form input[type=submit] {
    border-color: var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
    color: var(--baseLight-color) !important;
}

.request--text form input[type=submit]:hover {
    background-color: var(--baseLight-color) !important;
    color: var(--secondary-color) !important;

}


/*********************
END: REQUEST
*********************/


/*********************
START: STEPS
*********************/
.steps {
    padding-block: 5rem;
}

.steps--content .title {
    text-align: center;
    margin-inline: auto;
    display: block;
    margin-block-end: 8rem;
}

.steps--content .tip {
    position: relative;
    padding: 5rem;
    margin-block-start: 10rem;
    border-radius: var(--border-radius10);
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/icons/tipsRectangle.svg);
}

.steps--content .tip>div {
    display: flex;
    align-items: center;
}
.steps--content .tip>div h2 {
    width: 60%;
}

.steps--content .tip img {

    width: 5rem;
    margin-inline-end: 0.5rem;
}

.steps--content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.steps--content ul li {
    position: relative;
    text-align: center;
    flex-basis: 33.33%;
}

.steps--content ul li h5 {
    width: 35%;
    margin-inline: auto;
    font-family: var(--font-familyNum);
}

.steps--content ul li::before {
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.steps--content ul li:nth-child(1){
	order: 0;
}

.steps--content ul li:nth-child(3){
	order: 2;
}

.steps--content ul li:nth-child(5){
	order: 3;
}


.steps--content ul li:nth-child(1)::before {
    background-image: url(../img/icons/steps-line-1.svg);
    right: 40%;
    top: 0;
}

.steps--content ul li:nth-child(2) {
    transform: translateY(-50%);
	order: 1;
}

.steps--content ul li:nth-child(2)::before {
    top: 50%;
    right: 35%;
    background-image: url(../img/icons/steps-line-2.svg);
}

.steps--content ul li:nth-child(3)::before {
    bottom: -48%;
    left: 60%;
    background-image: url(../img/icons/steps-line-3.svg);
}

.steps--content ul li:nth-child(4) {
    transform: translateY(-25%);
	order: 4;
}

.steps--content ul li:nth-child(5)::before {
    top: 20%;
    left: -40%;
    background-image: url(../img/icons/steps-line-4.svg);
}


/*********************
END: STEPS
*********************/

/*********************
START: BE WITH US
*********************/
.frequentlyAsked {
    padding-block: 7rem;
    position: relative;
}

.frequentlyAsked--content {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    justify-content: space-between;
}

.frequentlyAsked--text {
    width: 55%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 5rem;
	border-radius: var(--border-radius10);
}

.frequentlyAsked--text::before,
.frequentlyAsked--text::after {
    content: '';
    position: absolute;
	border-radius: var(--border-radius10);
}

.frequentlyAsked--text::before {
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    border-radius: var(--border-radius10);
    background-image: url(../img/icons/frequentlyAskedRectangle.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.frequentlyAsked--text::after {
    width: 25%;
    height: 200px;
    left: 0;
    bottom: -100px;
    background-repeat: no-repeat;
    background-image: url(../img/icons/frequentlyAskedFrame.svg);
}

.frequentlyAsked--text ul {
    margin-block: 2.5rem;
}

.frequentlyAsked--text ul li {
    padding-block: 1rem;
}

.frequentlyAsked--text ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-input);
}

.frequentlyAsked--text ul li .accordion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.frequentlyAsked--text ul li .accordion .icon {
    font-size: 1.5rem;
}

.frequentlyAsked--text ul li .accordion h4 {
    text-align: right;
}

.frequentlyAsked--text ul li .accordion.open :is(h4, .icon) {
    color: var(--primary-color);
}

.frequentlyAsked--text ul li .panel {
    max-height: 0;
    overflow: hidden;
    transition: all 1s ease;
}

.frequentlyAsked--image {
    width: 40%;
    position: relative;
}

.frequentlyAsked--image>img {
    width: 90%;
    top: -50%;
    transform: translateY(-20%);
    position: absolute;
}

/*********************
END: REQUEST
*********************/


/*********************
START: MEDIA
*********************/
@media screen and (min-width: 2560px) {
    .request--text {
        background-size: cover;
    }

    .steps--content .title {
        margin-block-end: 18rem
    }

    .steps--content ul li {
        flex-basis: 25.33%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .steps--content ul li img {
        width: 55%;
    }

    .steps--content ul li h5 {
        font-size: var(--txt20);
        width: 45%;
    }

    .steps--content ul li:nth-child(1) {
        margin-block-start: -5rem;
    }

    .steps--content ul li:nth-child(1)::before {
        right: 29%;
        top: 35px;
    }

    .steps--content ul li:nth-child(3){
        margin-block-start: -5rem;
    }

    .steps--content ul li:nth-child(2)::before {
        right: 27%;
    }

    .steps--content ul li:nth-child(3)::before {
        bottom: -80%;
        left: 60%;
    }

    .steps--content ul li:nth-child(5){
        margin-block-start: -5rem;
    }

    .steps--content ul li:nth-child(5)::before {
        left: -32%;
    }

    .steps--content .tip{
        padding-inline-end: 15rem;
    }

    .steps--content .tip>div h2{
        font-size: var(--txt30);
    }

    .frequentlyAsked--text{
        padding-inline: 12rem;
    }

    .frequentlyAsked--text ul li .accordion h4{
        font-size: var(--txt20);
    }

    .frequentlyAsked--image>img {
        width: 80%;
        transform: translateY(-40%);
    }
}

@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .request--text {
        background-size: cover;
    }

    .steps--content ul li {
        flex-basis: 25.33%;
    }

    .steps--content ul li h5 {
        font-size: var(--txt18);
        width: 45%;
    }

    .steps--content .tip{
        padding-inline-end: 10rem;
    }

    .steps--content .tip>div h2{
        font-size: var(--txt25);
    }

    .frequentlyAsked--image>img{
        transform: translateY(-40%);
    }

    .frequentlyAsked--text{
        padding-inline: 10rem;
    }

    .frequentlyAsked--text ul li .accordion h4{
        font-size: var(--txt18);
    }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .request--text {
        background-size: cover;
    }
}

@media screen and (max-width: 1320px) {
    .request--text {
        width: 55%;
    }

    .request--image {
        width: 45%;
    }
}

@media screen and (max-width: 1200px) {
    .request--text {
        background-color: var(--purpleLight2-color);
		background-image: unset;
		padding: 2rem 1rem;
    }
	
	.request--text .wpcf7.no-js{
		width: 70%;
	}

    .frequentlyAsked--text::after {
        width: 30%;
    }

    .frequentlyAsked--text {
        padding: 3rem;
    }

	.steps--content .tip{
		margin-block-start: 6rem;
	}
	
    .steps--content ul li:nth-child(4){
        padding-inline-end: 6rem;
    }

    .steps--content ul li:nth-child(5) {
        transform: translate(7%, -18%);
		padding-inline-end: 7rem;
    }
}

@media screen and (max-width: 992px) {
	.request {
    	padding-block: 0;
	}

    .request--content {
        flex-direction: column-reverse;
    }
	
    .request--text {
        width: 100%;
        margin-block-start: 2rem;
        background-size: cover;
    }

    .request--image {
        width: 60%;
    }
	
	.steps--content .title{
		margin-block-end: 3rem;
	}

	.steps {
    	padding-block: 5rem;
	}
	
	.steps--content ul li:nth-child(4) {
    	padding-inline-end:0;
		order: 3;
	}
	
	.steps--content ul li:nth-child(5){
		order: 4;
		padding-inline-end:0;
	}
	
	.frequentlyAsked {
		padding-block: 2rem;
	}

    .frequentlyAsked--content {
        flex-direction: column-reverse;
    }

    .frequentlyAsked--text {
        width: 100%;
		background-color: var(--purpleLight2-color);
    }
	
	.frequentlyAsked--text::before:{
		content: unset;
	}

    .frequentlyAsked--image>img {
        position: unset;
    }

    .frequentlyAsked--text::after {
        width: 40%;
    }

    .frequentlyAsked--content {
        align-items: center;
    }

    .frequentlyAsked--image>img {
        width: 100%;
    }

    .beWithUs--content {
        flex-direction: column-reverse;
    }

    .steps--content ul {
        align-items: unset;
    }

    .steps--content ul li h5 {
        width: 70%;
    }

    .steps--content ul li::before {
        content: unset;
    }

    .steps--content ul li {
        transform: unset !important;
    }
    .steps--content ul li:nth-child(4)>img {
        margin-inline-end: 0;
    }

    .steps--content ul li:nth-child(5)>img {
        margin-block-end: 0;
    }
}

@media screen and (max-width: 768px) {

    .request--text {
        background-color: #F4F2FC;
        background-image: unset;
    }

    .steps--content .tip {
        background-image: unset;
        padding: 3rem;
        background-color: var(--blueLight1-color);
    }

    .steps--content .tip>div h2 {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .request--image {
        width: 80%;
    }

	.request--text .wpcf7.no-js{
		width: 100%;
	}
	
    .request--text form {
        width: 95%;
    }

    .frequentlyAsked--text {
        padding: 3rem 1.5rem;
    }

    .frequentlyAsked--image {
        width: 70%;
    }

    .steps--content .tip img {
        width: 4rem;
        margin-block-start: 0.75rem;
    }
    .steps--content .tip>div {
        align-items: flex-start;
    }
	
	.steps--content .tip {
    	margin-block-start: 4rem;
	}
}

@media screen and (max-width: 425px) {
    .request--image {
        width: 100%;
    }

    .frequentlyAsked--text::after {
        content: unset;
    }

    .steps--content ul li h5 {
        width: 95%;
    }

    .steps--content .tip img {
        width: 3rem;
    }

    .steps--content .tip {
        padding: 2rem;
    }
}
/*********************
END: MEDIA
*********************/