/* === Default Setting ===  */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-weight: 300;
    font-family: "Rubik", sans-serif;
    background-color: #7dd1632a;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* === Reuseable Code === */

.container {
    max-width: 125rem;
    margin: 0 auto;
}

.app__btn__popup {
    max-width: 60rem;
    width: 100%;
    height: 30rem;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100000;
    background-color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.app__btn__popup .close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;

}

.app__btn__popup .close button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}

.app__btn__popup .app__btn__container .text p {
    color: #014EF5;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
    text-align: center;
}

.app__btn__popup .app__btn__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
}

.app__btn__popup .app__btn__container .app__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.app__btn__popup .app__btn__container .app__btn a {
    display: inline-block;
    max-width: 25rem;
}

.app__btn__popup .app__btn__container .app__btn a img {
    width: 100%;
    height: 100%;
}

.contact__popup__overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}

.contact__popup__overlay.active {
    display: block;
}

.contact__popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 5px;
    padding: 2rem;
    width: 40%;
    z-index: 1001;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.contact__popup.active {
    opacity: 1;
    pointer-events: visible;
}

.contact__popup .form__container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
    width: 100%;
}

.contact__popup .form__container .text__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact__popup .form__container .text__box .text {
    text-transform: uppercase;
    color: var(--text-color-1);
    font-size: 2rem;
    font-weight: 500;
}

.contact__popup .form__container .input__box {
    width: 100%;
    height: 5rem;
    border: 1px solid #dedede;
    border-radius: 10px;
    overflow: hidden;
}

.contact__popup .form__container .input__box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 2rem;
}

.contact__popup .form__container .message__box {
    width: 100%;
    height: 10rem;
    border: 1px solid #dedede;
    border-radius: 10px;
    overflow: hidden;
}

.contact__popup .form__container .message__box textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 2rem;
    resize: none;
}

.contact__popup .form__container .captcha__box {
    background-color: lightgray;
}

.contact__popup .form__container .btn__box button{
    width: 100%;
    height: 5rem;
    background-color: #004DF6;
    border: none;
    outline: none;
    border-radius: 10px;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}

/* === Header Area === */
.header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba( 0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.header__overlay.active {
    opacity: 1;
    pointer-events: visible;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 1rem 13.5rem;
    position: sticky;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
}

.header.active {
    border-color: #DBDBDB;
    background-color: #fff;
}

.header .header__left .logo {
    display: inline-block;
    width: 14rem;

}

.header .header__left .logo img {
    width: 100%;
    height: 100%;
}

.header .header__right .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header .header__right .nav .nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
}

.header .header__right .nav .nav__list .nav__link a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #7D7D7D;
    position: relative;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
}

.header .header__right .nav .nav__list .nav__link a:hover {
    background: linear-gradient(180deg, #004DF5 0%, #5EB21F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header .header__right .nav .nav__list .nav__link.active a {
    background: linear-gradient(180deg, #004DF5 0%, #5EB21F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header .header__right .nav .nav__list .nav__link a svg {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 1.2rem;
    opacity: 0;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
}

.header .header__right .nav .nav__list .nav__link.active a svg {
    opacity: 1;
}

.header .header__right .nav .nav__list .nav__link a:hover svg {
    opacity: 1;
}

.header .header__right .nav .search__box {
    max-width: 31.6rem;
    height: 4.1rem;
    border-bottom: 1px solid #DBDBDB;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .header__right .nav .search__box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 1rem;
    background-color: transparent;
}

.header .header__right .nav .search__box input::placeholder {
    font-family: "Rubik", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
}

.header .header__right .nav .search__box svg {
    cursor: pointer;
}

.header .header__right .nav .header__btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header .header__right .nav .header__btn .login__btn {
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    padding: 10px 30px;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 400;
    border: none;
    outline: none;
    cursor: pointer;
}

.header .header__right .nav .header__btn .sponsor__link {
    display: inline-block;
    width: 14.7rem;
    height: 3.3rem;
}

.header .header__right .nav .header__btn .sponsor__link img {
    width: 100%;
    height: 100%;
}

.header .header__right .sponsor__link__2 {
    display: none;
    width: 14.7rem;
    height: 3.3rem;
}

.header .header__right .sponsor__link__2 img {
    width: 100%;
    height: 100%;
}

/* Hamburger Menu CSS Start */

.hamburger__btn {
    position: relative;
    width: 35px;
    height: 35px;
    display: none;
}

.hamburger__btn .hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
}

.hamburger__btn .hamburger button {
    border: none;
    outline: none;
    background-color: transparent;
    width: 35px;
    height: 35px;
}

.hamburger__btn .hamburger button svg {
    width: 100%;
    height: 100%;
}

.hamburger__btn .close {
    display: none;
    cursor: pointer;
    position: absolute;
}

.hamburger__btn .close button {
    border: none;
    outline: none;
    background-color: transparent;
    width: 35px;
    height: 35px;
}

.hamburger__btn .close button svg {
    width: 100%;
    height: 100%;
} 

/* Hamburger Menu CSS End */

/* === Section 1 === */

.section__1 {
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__1 .flex__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.section__1 .flex__container .flex__col:nth-child(1) {
    flex-basis: 50%;
}

.section__1 .flex__container .flex__col:nth-child(2) {
    flex-basis: 50%;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container h3 {
    color: #1F1F1F;
    font-size: 3rem;
    font-weight: 300;
    line-height: 3rem;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container h3 span {
    color: #004DF6;
    font-weight: 600;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container h1 {
    color: #1F1F1F;
    font-size: 5rem;
    font-weight: 600;
    line-height: 7rem; 
    margin-top: 1rem;
    margin-bottom: 3.5rem;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container h1 span {
    color: #014EF5;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .btn button {
    display: flex;
    gap: 1rem;
    max-width: 35rem;
    width: 100%;
    height: 7rem;
    padding: 1.8rem 2.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: none;
    outline: none;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    color: #FFF;
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .btn button svg {
    width: 3rem;
    height: 3rem;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .arrow {
    width: 433.463px;
    height: 192.15px;
    position: absolute;
    top: 29%;
    left: 18%;
    z-index: -1;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .arrow svg {
    width: 100%;
    height: 100%;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .app__btn__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 3rem;
    margin-top: 4rem;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .app__btn__container .app__btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .app__btn__container .app__btn a {
    display: inline-block;
    max-width: 21.2rem;
    height: 6.8rem;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .app__btn__container .app__btn a img {
    width: 100%;
    height: 100%;
}

.section__1 .flex__container .flex__col:nth-child(1) .content__container .app__btn__container .text p {
    max-width: 55.9rem;
    color: #014EF5;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
}

.section__1 .flex__container .flex__col:nth-child(2) .image {
    max-width: 59.9rem;
    width: 100%;
    height: 64.9rem;
}

.section__1 .flex__container .flex__col:nth-child(2) .image svg {
    width: 100%;
    height: 100%;
}

.section__1 .flex__container .flex__col:nth-child(2) .text {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.section__1 .flex__container .flex__col:nth-child(2) .text .text__box p {
    font-size: 2.5rem;
    font-weight: 500;
    color: #004DF6;
}


/* === Section 2 === */

.section__2 {
    padding-top: 12rem;
    padding-bottom: 8rem;
    position: relative;
}

.section__2 .back__object img {
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 56.626px;
    height: 51.104px;
    z-index: -1;
}

.section__2 .content__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5rem;
    gap: 2rem;
}

.section__2 .content__container .para p {
    max-width: 88.2rem;
    color: #3E3E3E;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 3rem; 
}

.section__2 .content__container .para p a {
    color: #004DF6;
}

.section__2 .content__container .image {
    max-width: 22rem;
    width: 100%;
}

.section__2 .content__container .image img {
    width: 100%;
    height: 100%;
}

.section__2 .btn button {
    color: #FFF;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    outline: none;
    display: flex;
    gap: 1rem;
    width: 37rem;
    height: 8.4rem;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.section__2 .btn button svg {
    width: 3rem;
    height: 3rem;
}

.section__2 .app__btn__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    margin-top: 5rem;
    text-align: center;
}

.section__2  .app__btn__container .app__btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5rem;
}

.section__2  .app__btn__container .app__btn a {
    display: inline-block;
    max-width: 21.2rem;
    height: 6.8rem;
}

.section__2  .app__btn__container .app__btn a img {
    width: 100%;
    height: 100%;
}

.section__2  .app__btn__container .text p {
    max-width: 55.9rem;
    color: #014EF5;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
}

/* === Section 3 === */

.section__3 {
    padding-top: 6.8rem;
    padding-bottom: 6.8rem;
    background: #F3F3F3;
    position: relative;
    z-index: 1;
}

.section__3 .back__object img:nth-child(1) {
    position: absolute;
    top: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 66.404px;
    height: 66.404px;
    z-index: -1;
}

.section__3 .back__object img:nth-child(2) {
    position: absolute;
    top: 15rem;
    right: 4rem;
    width: 44.703px;
    height: 44.703px;
    z-index: -1;
}

.section__3 .back__object img:nth-child(3) {
    position: absolute;
    bottom: 6rem;
    left: 9.3rem;
    width: 44.703px;
    height: 44.703px;
    z-index: -1;
}

.section__3 .text p {
    max-width: 119.3rem;
    margin: 0 auto;
    color: #3E3E3E;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 4rem; 
}

/* === Section 4 === */

.section__4 {
    width: 100%;
    min-height: 100vh;
    padding-top: 12rem;
    position: relative;
    overflow: hidden;
}

.section__4 .back__object img:nth-child(1) {
    position: absolute;
    top: 10%;
    left: 53%;
    z-index: -1;
}

.section__4 .back__object img:nth-child(2) {
    position: absolute;
    top: 5%;
    right: 2%;
    z-index: -1;
}

.section__4 .back__object img:nth-child(3) {
    position: absolute;
    top: 40%;
    right: 15%;
    z-index: -1;
}

.section__4 .back__object img:nth-child(4) {
    position: absolute;
    top: 42%;
    right: 0;
    z-index: -1;
}

.section__4 .back__object img:nth-child(5) {
    position: absolute;
    bottom: 23%;
    left: 20%;
    z-index: -1;
}

.section__4 .flex__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section__4 .flex__container .flex__col:nth-child(1) {
    flex-basis: 50%;
}

.section__4 .flex__container .flex__col:nth-child(2) {
    flex-basis: 50%;
}

.section__4 .flex__container .flex__col:nth-child(1) {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
}

.section__4 .flex__container .flex__col:nth-child(1) .text h3 {
    color: #343434;
    font-size: 6rem;
    font-weight: 700;
    line-height: 6.5rem; 
}

.section__4 .flex__container .flex__col:nth-child(1) .text h3 span {
    color: #014EF5;
}

.section__4 .flex__container .flex__col:nth-child(1) .list li {
    position: relative;
    max-width: 67.3rem;
    color: #212121;
    font-size: 2rem;
    font-weight: 400;
    line-height: 3rem;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}

.section__4 .flex__container .flex__col:nth-child(1) .list li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.section__4 .flex__container .flex__col:nth-child(2) .image {
    max-width: 63.5rem;
    height: 60.7rem;
}

.section__4 .flex__container .flex__col:nth-child(2) .image img {
    width: 100%;
    height: 100%;
}

/* === Section 5 === */

.section__5 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.section__5 .scroller {
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 5rem;
}

.section__5 .scroller::-webkit-scrollbar {
    display: none;
}

.section__5 .scroller .scroller__in {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: imgScroll 20s linear infinite;
}

@keyframes imgScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.section__5 .scroller .scroller__in img {
    width: 124px;
    height: 70px;
    margin: 0 2.6rem;
}

.section__5 .content__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 5rem;
}

.section__5 .content__container .para p {
    max-width: 88.2rem;
    color: #3E3E3E;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 3rem; 
}

.section__5 .content__container .para p a {
    color: #004DF6;
}

.section__5 .content__container .image {
    max-width: 22rem;
    width: 100%;
}

.section__5 .content__container .image img {
    width: 100%;
    height: 100%;
}

/* === Section 6 === */

.section__6 {
    padding-top: 10rem;
    position: relative;
}

.section__6 .back__object img {
    position: absolute;
    top: 0;
    right: 15%;
    z-index: -1;
}

.section__6 .back__object img:nth-child(2) {
    position: absolute;
    top: 90%;
    left: 20%;
}

.section__6 .wrapper,
.section__6 .slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.section__6 .slide {
    overflow: hidden;
}

.section__6 .wrapper .slide .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section__6 .wrapper .slide .image__data {
    position: absolute;
    top: 50%;
    left: 15rem;
    transform: translateY(-50%);
}

.section__6 .wrapper .slide .image__data h2 {
    max-width: 66.7rem;
    color: #FFF;
    font-size: 5rem;
    font-weight: 700;
    line-height: 5.5rem; 
}

.section__6 .wrapper .slide .image__data p {
    max-width: 67.3rem;
    color: #FFF;
    font-size: 2rem;
    font-weight: 400;
    line-height: 3rem;
    margin: 2rem 0;
}

.section__6 .wrapper .slide .image__data .btn button {
    display: inline-flex;
    gap: 1rem;
    padding: 1.8rem 2.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(256deg, #63B125 -32.05%, #63B125 103.29%);
    box-shadow: 0px 14px 40px 0px rgba(0, 0, 0, 0.15);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
}

.section__6 .wrapper .slide .image__data .btn button svg {
    width: 2rem;
    height: 2rem;
}

/* Swiper Button Start CSS */

.section__6 .swiper .nav__btn::before,
.section__6 .swiper .nav__btn::after {
    color: #fff;
    font-size: 3.5rem;
}

.section__6 .swiper .swiper-button-next {
    right: 5rem;
}

.section__6 .swiper .swiper-button-prev {
    left: 5rem;
}

.section__6 .swiper .swiper-pagination-bullet {
    opacity: 1;
    height: 1.2rem;
    width: 1.2rem;
    background-color: #004DF6;
    visibility: hidden;
}

.section__6 .swiper .swiper-pagination-bullet-active {
    border: 2px solid #fff;
    background-color:  #5EB21F;
}

/* Swiper Button End CSS */


.section__6 .start__container {
    text-align: center;
    margin-top: 17.5rem;
}

.section__6 .start__container .btn button {
    display: inline-flex;
    gap: 1rem;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem;
    border: none;
    outline: none;
    cursor: pointer;
}

.section__6 .start__container .btn button svg {
    width: 3rem;
    height: 3rem;
}

.section__6 .start__container .text p {
    color: #014EF5;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin-top: 5rem;
}

/* === Footer Area === */

.footer {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.footer .flex__container__1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .flex__container__1 .logo:nth-child(1) {
    width: 17.7rem;
    height: 12.6rem;
}

.footer .flex__container__1 .logo:nth-child(1) img {
    width: 100%;
    height: 100%;
}

.footer .flex__container__1 .logo:nth-child(2) {
    max-width: 22rem;
    width: 100%;
}

.footer .flex__container__1 .logo:nth-child(2) img {
    width: 100%;
    height: 100%;
}

.footer .flex__container__2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.3rem;
    margin-bottom: 2.2rem;
}

.footer .flex__container__2 .para p {
    max-width: 52.4rem;
    color: #7D7D7D;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.8rem; 
    text-align: end;
}

.footer .flex__container__2 .app__btns {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer .flex__container__2 .app__btns a {
    display: inline-block;
    width: 139px;
    height: 44px;
}

.footer .flex__container__2 .app__btns a img {
    width: 100%;
    height: 100%;
}

.footer .text__container p {
    color: #7D7D7D;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 3rem; 
    text-align: end;
}

.footer .text__container p a {
    color: #014EF5;
}

.footer .flex__container__3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.5rem;
    margin-bottom: 6rem;
}

.footer .flex__container__3 .nav .nav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
}

.footer .flex__container__3 .nav .nav__list .nav__link a {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #7D7D7D;
    position: relative;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
}

.footer .flex__container__3 .nav .nav__list .nav__link a:hover {
    background: linear-gradient(180deg, #004DF5 0%, #5EB21F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .flex__container__3 .nav .nav__list .nav__link.active a {
    background: linear-gradient(180deg, #004DF5 0%, #5EB21F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer .flex__container__3 .social__links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer .flex__container__3 .social__links a {
    display: inline-block;
    width: 25px;
    height: 25px;
}

.footer .flex__container__3 .social__links a svg {
    width: 100%;
    height: 100%;
}

.footer .flex__container__3 .social__links a svg path {
    fill: #9C9C9C;
}

.footer .flex__container__3 .social__links a svg path:hover {
    fill: #004CF7;
}

.footer .copyright__container p {
    color: #7D7D7D;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
}

/* === Review Page CSS === */

/* === Review Section 1 === */

.review__section__1 {
    width: 100%;
    height: 80vh;
    background: linear-gradient(218deg, rgba(1, 78, 245, 0.90) -7.66%, rgba(108, 182, 85, 0.90) 78.21%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.review__section__1 .flex__container {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.review__section__1 .flex__container .flex__col:nth-child(1) .content__container h1 {
    max-width: 66.7rem;
    color: #FFF;
    font-size: 5rem;
    font-weight: 700;
    line-height: 5.5rem; 
}

.review__section__1 .flex__container .flex__col:nth-child(1) .content__container p {
    max-width: 67.3rem;
    color: #FFF;
    font-size: 2rem;
    font-weight: 400;
    line-height: 3rem;
    margin: 2rem 0;
}

.review__section__1 .flex__container .flex__col:nth-child(1) .content__container .btn a {
    display: inline-block;
    padding: 1.8rem 2.5rem;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    box-shadow: 0px 14px 40px 0px rgba(0, 0, 0, 0.15);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem;
}

.review__section__1 .flex__container .flex__col:nth-child(1) .content__container .btn button svg {
    width: 3rem;
    height: 3rem;
}

.review__section__1 .flex__container .flex__col:nth-child(2) .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__section__1 .flex__container .flex__col:nth-child(2) .image:nth-child(1) {
    width: 200px;
    height: 172px;
    position: absolute;
    top: -30%;
    right: 20%;
}

.review__section__1 .flex__container .flex__col:nth-child(2) .image:nth-child(2) {
    width: 261px;
    height: 162px;
    position: absolute;
    top: -15%;
    right: -3%;

}

.review__section__1 .flex__container .flex__col:nth-child(2) .image:nth-child(3) {
    width: 97px;
    height: 98px;
    position: absolute;
    top: 35%;
    right: 30%;

}

.review__section__1 .flex__container .flex__col:nth-child(2) .image:nth-child(4) {
    width: 266px;
    height: 192px;
    position: absolute;
    top: 50%;
    right: 15%;

}

.review__section__1 .flex__container .flex__col:nth-child(2) .image:nth-child(5) {
    width: 273.077px;
    height: 146px;
    position: absolute;
    bottom: -13%;
    right: -8%;
}

/* === Review Section 2 === */

.review__section__2 {
    padding-top: 14rem;
    padding-bottom: 7rem;
    position: relative;
}

.review__section__2 .back__object img {
    position: absolute;
    bottom: 7%;
    left: 10%;
    z-index: -1;
}

.review__section__2 .flex__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
    flex-wrap: wrap;
}

.review__section__2 .flex__container .flex__col {
    max-width: 56.7rem;
    width: 100%;
    height: 41vh;
    border-radius: 1.2rem;
    border: 1px solid var(--Neutral-300, #EFF0F6);
    background: #FFF;
    box-shadow: 0px 14px 50px 0px rgba(0, 0, 0, 0.15);
    padding: 0 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 2rem;
}

.review__section__2 .flex__container .flex__col .top__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review__section__2 .flex__container .flex__col .top__container .profile {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.review__section__2 .flex__container .flex__col .top__container .profile .image {
    width: 71px;
    height: 71px;
}

.review__section__2 .flex__container .flex__col .top__container .profile .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review__section__2 .flex__container .flex__col .top__container .profile .details h5 {
    color: #024BF6;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5rem;
}

.review__section__2 .flex__container .flex__col .top__container .profile .details h6 {
    color: #272727;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5rem;
    margin-top: .9rem;
}

.review__section__2 .flex__container .flex__col .top__container .rating img {
    width: 100%;
    height: 100%;
}

.review__section__2 .flex__container .flex__col .bottom__container .para p {
    max-width: 47.6rem;
    color: #514F6E;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.5rem;
}

.review__section__2  .start__container {
    text-align: center;
    margin-top: 10rem;
}

.review__section__2  .start__container .btn button {
    display: inline-flex;
    gap: 1rem;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem;
    border: none;
    outline: none;
    cursor: pointer;
}

.review__section__2 .start__container .btn button svg {
    width: 3rem;
    height: 3rem;
}

.review__section__2  .start__container .text p {
    color: #014EF5;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin-top: 5rem;
}

/* === Muslima Page CSS === */

/* === Muslima Section 1 === */

.muslima__section__1 {
    width: 100%;
    height: 90vh;
    background-image: url(../images/muslima__page__img/section__1/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.muslima__section__1 .content__container {
    width: 100%;
}

.muslima__section__1 .content__container h1 {
    max-width: 66.7rem;
    color: #FFF;
    font-size: 5rem;
    font-weight: 700;
    line-height: 5.5rem; 
}

.muslima__section__1 .content__container p {
    max-width: 67.3rem;
    color: #FFF;
    font-size: 2rem;
    font-weight: 400;
    line-height: 3rem;
    padding: 2rem 0;
}

.muslima__section__1 .content__container .btn a {
    display: inline-block;
    padding: 1.8rem 2.5rem;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    box-shadow: 0px 14px 40px 0px rgba(0, 0, 0, 0.15);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem;
}

/* === Muslima Section 2 === */

.muslima__section__2 {
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.muslima__section__2 .content__container h2 {
    max-width: 88.2rem;
    color: #3E3E3E;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 4.5rem; 
    margin-bottom: 5rem;
}

.muslima__section__2 .content__container ul li {
    max-width: 1080px;
    color: #7A7A7A;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 3rem;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-bottom: 2.7rem;
}

.muslima__section__2 .content__container ul li strong {
    color: #3E3E3E;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 2.5rem; 
}

.muslima__section__2 .content__container p {
    max-width: 108rem;
    color: #7A7A7A;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 3rem; 
}

.muslima__section__2  .start__container {
    text-align: center;
    margin-top: 10rem;
}

.muslima__section__2  .start__container .btn button {
    display: inline-flex;
    gap: 1rem;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem;
    border: none;
    outline: none;
    cursor: pointer;
}

.muslime__section__2 .start__container .btn button svg {
    width: 3rem;
    height: 3rem;
}

.muslima__section__2  .start__container .text p {
    color: #014EF5;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin-top: 5rem;
}

/* === Login Page CSS === */

/* === Login Section 1 === */

.login__section__1 {
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login__section__1 .login__container {
    max-width: 80rem;
    width: 100%;
    height: 50.2vh;
    border-radius: 10px;
    border: 2px solid #DBDBDB;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login__section__1 .login__container h3 {
    color: #000;
    font-size: 5rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.login__section__1 .login__container form .input__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.login__section__1 .login__container form .input__container .input__box {
    width: 35rem;
    height: 4rem;
    border-radius: 5px;
    border: 1px solid #DBDBDB;
    background: #FFF;
}

.login__section__1 .login__container form .input__container .input__box input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1rem;
}

.login__section__1 .login__container form .input__container .input__box input::placeholder {
    color: #959595;
    font-size: 1.2rem;
}

.login__section__1 .login__container form .btn button {
    display: inline-flex;
    gap: 1rem;
    padding: 1rem 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.2rem;
    text-transform: uppercase;
    border: none;
    outline: none;
    margin-top: 3rem;
    cursor: pointer;
}

.login__section__1 .login__container .link__text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.login__section__1 .login__container .link__text a {
    color: #000;
    font-size: 1.8rem;
    font-weight: 400;
}

/* === Signup Page CSS === */

/* === Signup Section 1 === */

.signup__section__1 {
    min-height: 100vh;
    width: 100%;
    background-image: url(../images/signup__page__img/section__1/img.jpg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 75rem 100%;
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-left: 6rem;
}

.signup__section__1 .form__container {
    position: relative;
    max-width: 80rem;
    width: 100%;
    border-radius: 20px;
    border: 2px solid #DADADA;
    background: #FFF;
    padding: 2rem;
}

.signup__section__1 .form__container .icon__container {
    width: 12rem;
    height: 12rem;
    background-color: #ffffff;
    border: 2px solid #DADADA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8%;
    left: 50%;
    transform: translateX(-50%);
}

.signup__section__1 .form__container .icon__container svg {
    height: 6rem;
    width: 6rem;
}

.signup__section__1 .form__container .icon__container svg path {
    fill: #004DF6;
}

.signup__section__1 .form__container .heading__container {
    margin-top: 5rem;
}

.signup__section__1 .form__container .heading__container h1 {
    color: #004DF6;
    text-align: center;
    font-size: 5rem;
    font-weight: 600;
}

.signup__section__1 .form__container .heading__container p {
    color: #B4B4B4;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(1) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.signup__section__1 .form__container form .input__container:nth-child(1) .input__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(1) .input__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(1) .input__box input {
    height: 3rem;
    width: 100%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .input__container:nth-child(1) .input__box input::placeholder {
    color: #B4B4B4;
}

.signup__section__1 .form__container form .input__container:nth-child(1) .select__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(1) .select__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(1) .select__box select {
    height: 3rem;
    width: 100%;
    color: #B4B4B4;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .input__container:nth-child(1) .select__box select option {
    color: #000;
}

.signup__section__1 .form__container form .input__container:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .input__container:nth-child(2) .input__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(2) .input__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(2) .input__box input {
    height: 3rem;
    width: 100%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .input__container:nth-child(2) .input__box input::placeholder {
    color: #B4B4B4;
}

.signup__section__1 .form__container form .input__container:nth-child(3) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .input__container:nth-child(3) .input__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(3) .input__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(3) .input__box input {
    height: 3rem;
    width: 100%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .input__container:nth-child(3) .input__box input::placeholder {
    color: #B4B4B4;
}

.signup__section__1 .form__container form .input__container:nth-child(4) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .input__container:nth-child(4) .input__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(4) .input__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(4) .input__box input {
    height: 3rem;
    width: 100%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .input__container:nth-child(4) .input__box input::placeholder {
    color: #B4B4B4;
}

.signup__section__1 .form__container form .input__container:nth-child(5) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .input__container:nth-child(5) .input__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(5) .input__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(5) .input__box input {
    height: 4rem;
    width: 100%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .input__container:nth-child(6) {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .input__container:nth-child(6) .textarea__box {
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
}

.signup__section__1 .form__container form .input__container:nth-child(6) .textarea__box label {
    color: #000;
    font-size: 1.4rem;
    font-weight: 400;
}

.signup__section__1 .form__container form .input__container:nth-child(6) .textarea__box textarea {
    height: 10rem;
    width: 100%;
    color: #000;
    font-size: 1.2rem;
    font-weight: 400;
    border: none;
    outline: none;
    padding: .7rem;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
    resize: none;
}

.signup__section__1 .form__container form .input__container:nth-child(6) .textarea__box textarea::placeholder {
    color: #B4B4B4;
    font-family: "Rubik", sans-serif;
}

.signup__section__1 .form__container form .captcha__container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .captcha__container .captcha__screen {
    width: 15rem;
    height: 4rem;
    border: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
    color: #000;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.signup__section__1 .form__container form .captcha__container .captcha__input input {
    width: 30rem;
    height: 3rem;
    font-size: 1.2rem;
    padding: .7rem;
    border: none;
    outline: none;
    border-bottom: 1px solid #004DF6;
    background: rgba(217, 217, 217, 0.30);
}

.signup__section__1 .form__container form .captcha__container .captcha__input input::placeholder {
    color: #B4B4B4;
}


.signup__section__1 .form__container form .submit__btn {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.signup__section__1 .form__container form .submit__btn button {
    border-radius: 5px;
    background: #004DF6;
    width: 13rem;
    height: 3.5rem;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* === Profile Page CSS === */

/* === Profile Section === */

.profile__section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.profile__section .back__object img:nth-child(1) {
    position: absolute;
    top: 10%;
    left: 0;
}

.profile__section .back__object img:nth-child(2) {
    position: absolute;
    top: 20%;
    left: 80%;
    z-index: 1;
}

.profile__section .back__object img:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 5%;
}

.profile__section .back__object img:nth-child(4) {
    position: absolute;
    top: 60%;
    right: 0;
}

.profile__section .back__object img:nth-child(5) {
    position: absolute;
    bottom: 5%;
    left: 15%;
    z-index: -1;
}

.profile__section .logo {
    display: inline-block;
    width: 19.2rem;
    height: 14.5rem;
}

.profile__section .logo img {
    width: 100%;
    height: 100%;
}

.profile__section .profile__box {
    max-width: 100rem;
    width: 100%;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 14px 50px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    padding-bottom: 8rem;
    margin-top: 15rem;
    margin-bottom: 10rem;
}

.profile__section .profile__box .profile__image {
    width: 14.8rem;
    height: 14.8rem;
    position: absolute;
    top: -7%;
    left: 50%;
    transform: translateX(-50%);
}

.profile__section .profile__box .profile__image img {
    width: 100%;
    height: 100%;
}

.profile__section .profile__box h3 {
    color: #014CF4;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 2.2rem; 
    margin-top: 11.5rem;
}

.profile__section .profile__box .tag {
    color: #FFF;
    height: 5.2rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem; 
    padding: 2rem 4rem;
    border-radius: 15px;
    background: #014EF5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.profile__section .profile__box ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 2.5rem;
    margin-top: 6rem;
    margin-bottom: 5rem;
    padding: 0 10rem;
}

.profile__section .profile__box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.profile__section .profile__box ul li h4,
.profile__section .profile__box ul li h5 {
    color: #343434;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.5rem;
}

.profile__section .profile__box ul li h5 {
    color: #909090;
}

.profile__section .profile__box .flex__container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 5rem;
}

.profile__section .profile__box .flex__container .flex__col .image {
    width: 19.6rem;
    height: 21.4rem;
}

.profile__section .profile__box .flex__container .flex__col .image img {
    width: 100%;
    height: 100%;
}

.profile__section .profile__box .btn {
    text-align: center;
}

.profile__section .profile__box .btn a {
    color: #FFF;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    display: inline-flex;
    padding: 1rem 3rem;
    justify-content: center;
    align-items: center;
}

.profile__section .start__btn a {
    display: inline-flex;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: linear-gradient(256deg, #004CF7 -32.05%, #63B125 103.29%);
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 2.2rem;
}

.profile__section .para {
    color: #014EF5;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.6rem; 
    margin-top: 3rem;
}