.insights--page--list {
    padding-top: 20px;
}

.insights--page .insights--content {
    width: 60%;
}

.insights--page .insights--content h2 {
    color: #41D475;
    text-transform: uppercase;
    font-size: clamp(30px,3vw,55px);
}

.insights--page .insights--content h3 {
    font-size: clamp(18px,2vw,24px);
    margin-bottom: 20px;
}

.insights--page .insights--content p {
    font-size: 18px;
}

.insights--page {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.insights--page .insights--img {
    width: 100%;
    text-align: right;
    position: relative;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    max-height: fit-content;
}

.insights--page .insights--content .btn-primary {
    background: #41D475;
    color: #000;
    max-width: 220px;
    width: 100%;
    padding: 10px;
    border-color: #41D475;
}

.insights--page .insights--img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    height: 100%;
    z-index: 1;
    position: relative;
    box-shadow: 0px 2px 4px 0px #41D47566;
}

.insights--page .insights--img:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15px;
    background: #41D475;
    right: -15px;
}

.insights--page--list .insights--page:not(:last-child) {
    margin-bottom: 80px;
    border-bottom: 1px solid #FFFFFF4D;
    padding-bottom: 80px;
}

.insights--page--list .insights--page:nth-child(even) {
    flex-direction: row-reverse;
}

.insights--page--list .insights--page:nth-child(even) .insights--img:before {
    left: -15px;
}

/* insight detail */
.insight--main{
    position: relative;
    padding-top: 80px !important;
}
.insight--detail--banner {
    margin-bottom: 55px;
}
.insight-top-img{
    position: absolute;
    top: 0;
    right: 0;
    max-width: 685px;
    width: 100%;
}

.insights--page--details {
    background: #FFFFFF1A;
    padding: 50px;
}

.insight--single--form .insight--single--header {
    text-align: center;
    padding-bottom: 30px;
}

.insight--single--form .insight--single--header h2 {
    color: #41D475;
    text-transform: uppercase;
    font-size: clamp(30px, 3vw, 55px);
}

.insight--single--form .insight--single--header h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 20px;
}

.insights--detail--content {
    padding-right: 50px;
}

.insights--detail--content p {
    font-size: 18px;
}

.insights--detail--content .insights--img {
    width: 100%;
    text-align: right;
    position: relative;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    max-height: fit-content;
    margin-top: 50px;
}

.insights--detail--content .insights--img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    height: 100%;
    z-index: 1;
    position: relative;
    box-shadow: 0px 2px 4px 0px #41D47566;
}

.insights--detail--content .insights--img:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15px;
    background: #41D475;
    right: -15px;
}

.insight--detail--form input[type=text] {
    background: #FFFFFF33;
    border: none;
    padding: 12px 20px;
    color: #fff;
}

.insight--detail--form input[type=text]::placeholder {
    color: #D4D4D4;
    font-weight: 200;
}

.insight--detail--form  #submitBtn {
    background: #41D475;
    border-color: #41D475;
    color: #000;
    padding: 10px;
}

.insights--thankyou--container h3 {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 5px;
}

.insights--thankyou--container {
    background: #FFFFFF33;
    backdrop-filter: blur(24px);
    padding: clamp(20px,3vw,40px);
    text-align: center;
}

.insights--thankyou--container h1 {
    color: #41D475;
    font-size: clamp(33px, 5vw, 65px);
}

.insights--thankyou--container p {
    font-size: 18px;
}

.insights--thankyou--container .btn-primary {
    background: #41D475;
    color: #000;
    max-width: 220px;
    width: 100%;
    padding: 10px;
    border-color: #41D475;
}

@media(max-width:991px){
	.insights--page .insights--content p, .insights--thankyou--container p {
	    font-size: 15px;
	}
	.insights--page{
		flex-direction: column !important;
		gap: 40px;
	}
	.insights--page .insights--content{
		width: 100%;
	}
	.insights--page .insights--img{
		width: 100%;
    max-width: 95%;
    margin: 0 auto;
	}
	.insights--page .insights--img:before {
	    top: -8px;
	    right: -8px;
	}
	.insights--page--list .insights--page:nth-child(even) .insights--img:before{
		left: -8px;
	}
	.insights--page--list .insights--page:not(:last-child) {
	    margin-bottom: 30px;
	    padding-bottom: 45px;
	}
    .insights--page--details {
        padding: 30px;
    }

    .insights--detail--content {
        padding-right: 20px;
    }

    .insight--single--form .insight--single--header {
        padding-bottom: 15px;
    }

}

@media(max-width:767px){
    .insight--main {
        padding-top: 1rem !important;
    }

    .insight--detail--banner {
        margin-bottom: 1rem;
    }

    .insight-top-img {
        max-width: 348px;
    }

    .insights--page--details {
        padding: 15px;
    }

    .insights--detail--content {
        padding-right: 0px;
    }

    .insights--detail--content .insights--img {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .insights--detail--content .insights--img:before {
        top: -8px;
        right: -8px;
    }

    .insight--single--form .insight--single--header h3 {
        margin-bottom: 0;
    }

    .insights--detail--content p {
        font-size: 15px;
    }

    .insight--detail--form input[type=text] {
        padding: 10px 15px;
        font-size: 15px;
    }

    .insight--detail--form #submitBtn {
        padding: 8px;
        font-size: 15px;
    }

    .insight--detail--form .form-check-label {
        font-size: 14px;
    }

    .insight--detail--form input[type=text]::placeholder {
        font-size: 14px;
    }

    .insight--single--form .insight--single--header {
        text-align: left;
        padding-bottom: 20px;
    }
    .insights--page .insights--content .btn-primary, .insights--thankyou--container .btn-primary {
        padding: 8px;
        font-size: 15px;
    }
}