* {
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 77px;
    height: fit-content;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

a {
    color: #000000;
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    overflow: hidden;
    vertical-align: bottom;
}

ul {
    padding: 0;
}

li {
    list-style-type: none;
}

input:focus,
textarea {
    border: none;
    outline: none;
}
::selection {
    background: #efd6ff;
    color: #3f3f3f;
    text-shadow: none;
}


.main {
    position: relative;
    background: #fff;
}

.container {
    max-width: 1515px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------buttons------------------ */
.border_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    height: 50px;
    border: 1px solid #6878B6;
    background: #ffffff;
    color: #6878B6;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    transition: 0.4s all ease;
}

.navigation_right .border_btn {
    margin-left: 55px;
}

.border_btn:hover {
    background: #6878B6;
    color: #ffffff;
}

.fill_btn {
    background: #6878b6;
    border: 1px solid #6878b6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    padding: 5px 30px 5px 30px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    cursor: pointer;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: .4s all ease;
    -moz-transition: .4s all ease;
    -o-transition: .4s all ease;
    transition: .4s all ease;
}

.fill_btn:hover {
    color: #6878b6;
    background: #ffffff;
}

/* -------------------------end of buttons------------------ */
/* -------------------------hamburger menu------------------ */
.hamburger_menu {
    display: none;
    align-items: center;
    justify-content: center;
}

.hamburger_menu .line {
    width: 30px;
    height: 3px;
    background-color: #434343;
    display: block;
    margin: 8px auto;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger_menu:hover {
    cursor: pointer;
}

/* ONE */

.hamburger_menu.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger_menu.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

.hamburger_menu.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

/* -------------------------end hamburger menu------------------ */

/*----------------------------content---------------------- */
.content_block>h3 {
    font-size: 52px;
    font-weight: 700;
    color: #434343;
    line-height: 60px;
}

.content_block>p {
    color: #545454;
    font-size: 18px;
    font-weight: 400;
    margin-top: 30px;
    line-height: 24px;

}

.content_block h3 span {
    color: #6878b6;
    font-size: inherit;
    font-weight: inherit;
}

.text_center {
    text-align: center;
}

/*----------------------------end of content---------------------- */
.lesson_plan_box {
    position: relative;
}

.column_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px !important;
}

.column_block>li {
    padding: 40px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;

}

.column_block.three_equal {
    margin: -1%;
}

.column_block.three_equal>li {
    width: calc(33.33% - 2%);
    margin: 1%;

}

.column_block.six_by_four {
    margin: -1%;
}

.column_block.six_by_four .sixty_percentage {
    width: calc(60% - 2%);
    margin: 1%;
}

.column_block.six_by_four .fourty_percentage {
    width: calc(40% - 2%);
    margin: 1%;
}

.column_block.hover_bg li {
    border: 1px solid #D0D7F5;
}

/*---------------------------- header---------- */
.header {
    padding: 22px 0;
}

.header_position {
    left: 0;
    z-index: 999 !important;
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    -moz-transition: all .4s ease-out 0s;
    -webkit-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.header-sticky {
    position: fixed;
    padding: 10px 0;
    background-color: #d5c6ff;
}

.header_wrap {
    max-width: 1515px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
}

.navigation_right {
    flex-grow: 1;
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav_menu_list {
    display: flex;
    align-items: center;
    margin: 0 -25px;
}

.nav_menu_list>li {
    margin: 0 25px;
}

.nav_menu_list>li a {
    color: #434343;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.nav_menu_list>li a:hover {
    color: #6878B6;
}

.nav_menu_list>li a::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -8px;
    background: url(../images/nav_icon.svg);
    width: 8px;
    height: 10px;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.nav_menu_list>li a:hover::after {
    opacity: 1;
}

/*---------------------------- end of header------------------------- */

/*---------------------------- Banner section------------------------- */

.banner_sec {
    position: relative;
    overflow: hidden;
}

.banner_sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 87%;
    background: radial-gradient(closest-side at 50% 79%, rgba(132, 74, 215, 0.78) 75%, rgba(102, 80, 180, 0) 315%);
    /* background: radial-gradient(closest-side at 50% 63%, rgb(132, 74, 215,0.6) 86%, rgba(102, 80, 180, 0) 100%); */
    -webkit-filter: blur(185px);
    -moz-filter: blur(185px);
    filter: blur(185px);
    z-index: 1;
}

.wave-shape-overlay {
    position: absolute;
    object-fit: cover;
    right: 0;
    top: 20vh;
    z-index: 0;
}

.banner_title_block {
    padding-top: 25vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 9;
}

.banner_title_block>h1 {
    text-align: center;
    font-size: 90px;
    font-weight: 700;
    color: #434343;
    line-height: 113px;
}

.banner_title_block>h1>span {
    color: #6878b6;
}

.banner_title_block>span {
    color: #545454;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.banner_title_block>span>h1 {
    color: #545454;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin: 0 5px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.banner_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    margin-left: -25px;
    margin-right: -25px;
}

.banner_btns>* {
    margin: 0 25px
}



.video_play {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.circle_play_btn {
    position: relative;
    z-index: 11;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    border: none;
}

.video_play_inside {
    padding: 17px;
    position: relative;
    background-color: #ffffff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.video_play-modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
    align-items: center;
    justify-content: center;
}

.video_play-modal-content {
    margin: 5% auto;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #000;
    width: 70%;
    border-radius: 8px;
}

.video_play-close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.video-iframe{
    width: 97%;
    height: 600px;
}

.video_play-close:hover,
.video_play-close:focus {
    color: #4f5c92;
    text-decoration: none;
    cursor: pointer;
}

.circle_play_btn:before,
.circle_play_btn:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 12;
}

.circle_play_btn:after {
    animation: ripple_one 3s linear infinite;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.2);
    z-index: 10;
}

.circle_play_btn:before {
    animation: ripple_two 3s linear infinite;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.4);
    z-index: 11;
}

@keyframes ripple_one {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes ripple_two {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}


.video_play p {
    color: #6878b6;
    font-size: 16px;
    font-weight: 600;
    margin-left: 20px;
}

.banner_moc_image {
    position: relative;
    z-index: 9;
}

.banner_moc_block {
    position: relative;
    margin-top: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_moc_block .banner_moc_image {
    width: auto;
}

.banner_gilter {
    position: absolute;
    z-index: 10;
}

.right_gilter {
    top: -5%;
    right: 0;

}

.left_gilter {
    top: -25%;
    left: 0;

}

.right_gilter img,
.left_gilter img {
    width: auto;
    animation: zoom_in_out 7s linear infinite;
}

.left_gilter img {
    animation-delay: 2s
}

@keyframes zoom_in_out {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    30% {
        transform: scale(1);
        opacity: 1;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

.moctop_image {
    position: absolute;
    z-index: 10;
    top: -3%;
    right: 27%;
}

/*----------------------------end of Banner section------------------------- */


/*--------------------------------------------------- about section-------------------- */
.about_sec {
    padding: 160px 0 0;
    background: url(../images/about_sec_bg.png);
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
}

.about_sec .pattern_02 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: auto;
}

.counter_block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: -1%;
}

.counter_block>li {
    width: 22%;
    margin: 1%;
    display: flex;
    justify-content: center;
}

.counter_rectangle {
    position: absolute;
    background: linear-gradient(180deg,
            #E6F3FC 0%,
            #DDE0F0 100%);
    border-radius: 58.34px;
    width: 200px;
    height: 206px;
    transform-origin: center;
    transform: rotate(135deg) scale(1, 1);
}

.counter_content {
    position: relative;
    margin-top: 14%;
    margin-left: 42%;
    width: 100%;
}

.counter_content h4 {
    color: #6878b6;
    text-align: left;
    font-size: 60px;
    font-weight: 700;
    line-height: 75px;
}

.counter_content p {
    color: #747474;
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}

/*------------------- end of about------------ */
/*------------------- about inner------------ */
.about_bg_box_section {
    position: relative;
}

.about_inner_section {
    position: relative;
    padding-bottom: 160px;
}

.about_bg_box_section .pattern_03 {
    position: absolute;
    bottom: -25%;
    right: 0;
    z-index: 0;
    width: auto;
}

.integerated_platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 257px;
}

.integerated_platform h3 {
    max-width: 684px;
}

.integerated_platform p {
    max-width: 75%;
}

.box_content img {
    width: auto;
    height: auto;
}

.lesson_plan_box>li {
    background: linear-gradient(180deg,
            #e7f5fe 0%,
            #e2e6f2 100%);
}

.box_content .icon_holder {
    min-height: 170px;
}

.box_content h5 {
    color: #6878b6;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.box_content p {
    color: #545454;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.content_with_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_inner_section .content_with_button {
    padding-top: 160px;
}

.about_inner_section .content_with_button .content_block {
    margin-right: 35%;
}

.content_with_button .fill_btn {
    white-space: nowrap;
    min-width: 190px;
}

.hover_bg>li {
    position: relative;
    background: #ffffff;
    -webkit-transition: 0.6s all ease;
    -moz-transition: 0.6s all ease;
    -o-transition: 0.6s all ease;
    transition: 0.6s all ease;
    cursor: pointer;
    overflow: hidden;
}

.hover_bg>li::after {
    content: '';
    position: absolute;
    background: url(../images/pattern_hover.png), linear-gradient(180deg,
            rgba(135, 206, 250, 0.1) 0%,
            rgba(104, 120, 182, 0.3) 100%);
    background-size: auto, cover;
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 0;
    transition: .5s all ease;
}

.hover_bg>li .box_content {
    position: relative;
    z-index: 1;
}

.hover_bg>li:hover::after {
    opacity: 1;
}

.hover_bg>li .box_content p {
    color: #7E7E7E;
}

/* ---------------------------lesson planner section------------------ */
.lesson_planner_sec {
    min-height: 100vh;
    background: linear-gradient(108.38deg,
            rgba(55, 90, 127, 0.1) 0%,
            rgba(139, 73, 222, 0.1) 100%);
    -webkit-border-radius: 80px 80px 0px 0px;
    -moz-border-radius: 80px 80px 0px 0px;
    -o-border-radius: 80px 80px 0px 0px;
    border-radius: 80px 80px 0px 0px;
    position: relative;
    padding: 140px 0px;
    overflow: hidden;
}

.lesson_planner_slider_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 865px;
    margin: 0 auto;

}

/* swipper */
/* .lesson_planner_slider {
    position: relative;
    height: auto;
    margin-top: 50px;
}

.lesson_planner_slider .swiper {
    width: 100%;
    overflow: visible;
}

.lesson_planner_slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
    background: white;
    transition: all .3s ease;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 47px 47px 64px 5px rgb(0, 0, 0, 0.25);
    -moz-box-shadow: 47px 47px 64px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 47px 47px 64px 5px rgba(0, 0, 0, 0.25);
    transform: scale(1.3);
}

.lesson_planner_slider .swiper-slide.swiper-slide-active {
    color: #fff;
    transform: scale(1.48);
    z-index: 2;
}


.lesson_planner_slider .swiper-slide>img {
    object-fit: cover;
}

/* ARROWS */
/* .lesson_planner_slider .swiper-button-prev,
.lesson_planner_slider .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6878B6;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    transition: 0.4s all ease;
}

.lesson_planner_slider .swiper-button-prev:hover,
.lesson_planner_slider .swiper-button-next:hover {
    background-color: #4d5887;
}

.lesson_planner_slider .swiper-button-prev img,
.lesson_planner_slider .swiper-button-next img {
    width: auto;
}

.lesson_planner_slider .swiper-button-prev:after,
.lesson_planner_slider .swiper-button-next:after {
    display: none;
}

.lesson_planner_slider .swiper-button-prev {
    left: 13%;
}

.lesson_planner_slider .swiper-button-next {
    right: 13%;
} */


/* ------------------------------owl slider -------------------------- */
.lesson_planner_slider {
    position: relative;
    height: auto;
    margin-top: 50px;
}
.lesson_planner_slider .owl-stage {
    display: flex;
    align-items: center;

}

.lesson_planner_slider .owl-carousel .owl-item>div {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}

.lesson_planner_slider  .owl-item>div {
    cursor: pointer;
    margin: 6% 7%;
    transition: margin 0.4s ease;
}

.lesson_planner_slider  .owl-item.center>div {
    cursor: auto;
    margin: 0;
}

.lesson_planner_slider  .owl-nav>button {
    position: absolute;
    width: 62px;
    height: 62px;
    top: 50%;
    background-color: #6878B6 !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all .4s ease;
}
.lesson_planner_slider  .owl-nav>button:hover{
    background-color: #4a5ca5 !important;
}

.lesson_planner_slider  .owl-prev {
    left: 10.3%;
}

.lesson_planner_slider  .owl-prev::after,
.lesson_planner_slider  .owl-next::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 40px;
    height: 38px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lesson_planner_slider  .owl-next {
    right: 10.3%;
}

.lesson_planner_slider  .owl-nav>button span {
    display: none;
}

.lesson_planner_slider  .owl-prev::after {
    background-image: url(../images/arrow-left.png);
}

.lesson_planner_slider  .owl-next::after {
    background-image: url(../images/arrow-right.png);

}
.lesson_planner_slider  .owl-item.center.active{
    border-radius: 20px;
    background: unset;
}
.lesson_planner_slider  .owl-carousel .owl-stage-outer{
    overflow: visible;
}
.lesson_planner_slider  .slider_img_holder>div{
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 47px 47px 64px 5px rgb(0 0 0 / 15%);
    -moz-box-shadow: 47px 47px 64px 5px rgb(0 0 0 / 15%);
    box-shadow: 47px 47px 64px 5px rgb(0 0 0 / 15%);
}

.triangle_3d {
    position: absolute;
    top: 1%;
    left: 13%;
    z-index: 10;
}
.owl-dots{
    display: none;
}

/* ------------------------------ end ofowl slider -------------------------- */

.triangle_3d image,
.blured_gradient image {
    width: auto;
}

.blured_gradient {
    position: absolute;
    top: -6%;
    right: 6%;
    z-index: 0;
}

/* ---------------------------end of lesson planner section------------------ */
/* ---------------------------rating section------------------ */
.rating_sec {
    padding: 160px 0;
    background-color: #ffffff;
}

.rating_wrap {
    max-width: 1720px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3%;
    position: relative;
}

.gradient_with_mocup {
    margin-bottom: 46px;
    padding: 120px 120px 0;
    background: linear-gradient(153.78deg,
            rgba(167, 183, 229, 1) 0%,
            rgba(207, 174, 251, 1) 100%);
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.white-title h3 {
    color: #ffffff;
    text-align: center;
    font-size: 52px;
    line-height: 60px;
    font-weight: 600;
}

.rating_star>img {
    width: auto;
}

.rating_star {
    margin: 20px 0 44px;
}

.white-title span {
    font-family: "Baloo 2", sans-serif;
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
}

.rating_mocup_img {
    position: relative;
    z-index: 1;
}

.curly_line img,
.bright_star img,
.blured_gilt img,
.sitting_character img {
    width: auto;
}

.curly_line,
.bright_star,
.blured_gilt,
.sitting_character,
.rating_wave_pattern {
    position: absolute;
}

.bright_star {
    top: 5%;
    right: 11%;
}

.sitting_character {
    bottom: -7%;
    right: -7%;
    z-index: 9;
}

.curly_line {
    top: 24%;
    right: 10%;
}

.rating_wave_pattern {
    bottom: 0;
    left: 0;
    z-index: 0;
}

.blured_gilt {
    top: 37%;
    left: 12%;
}

.blured_gilt {
    width: auto;
    animation: zoom_in_out 5s linear infinite;
}

.overlay_bottom {
    height: 46px;
    width: 80%;
    background-color: #F0EEF8;
    position: absolute;
    bottom: -46px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 20px 20px;
    z-index: 0;
}

/* ---------------------------end of rating section------------------ */
/* -------------------------efficient_section-------------------- */
.efficient_section {
    padding: 160px 0;
    -webkit-border-radius: 80px 80px 0px 0px;
    -moz-border-radius: 80px 80px 0px 0px;
    -o-border-radius: 80px 80px 0px 0px;
    border-radius: 80px 80px 0px 0px;
    background: linear-gradient(to left,
            rgba(246, 245, 250, 0.5),
            rgba(246, 245, 250, 0.5)),
        linear-gradient(108.38deg,
            rgba(55, 90, 127, 0.1) 0%,
            rgba(139, 73, 222, 0.1) 100%);
}
.efficient_section .content_block{
    max-width: 865px;
}

.feature_slider {
    margin: 60px 0 0;
}

.feature_slider .swiper {
    padding-bottom: 100px;
}

.feature_slider .swiper-pagination {
    width: 40%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.feature_slider .swiper-pagination .swiper-pagination-bullet {
    flex-grow: 1;
    height: 1px;
    border-radius: 0;
    margin: 0;
    background-color: #CCCCCC;
    opacity: 1;
}

.feature_slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #434343;
}

.features_slider_inside {
    display: flex;
    background: #ffffff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    overflow: hidden;
    min-height: 500px;
}

.efficient_section .slider_left_img {
    width: 33.33%;
    max-width: 300px;
}

.efficient_section .slider_content {
    width: 66.66%;
}

.efficient_section .slider_left_img img {
    height: 100%;
    object-fit: cover;
}

.slider_content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.slider_content h3 {
    color: #6878b6;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.slider_content p {
    color: #7e7e7e;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

/* -------------------------end of efficient_section-------------------- */
/* ---------------------------features section------------------ */
.features_section {
    padding: 229px 0 160px;
}

.two_col_item {
    display: flex;
    align-items: center;
    margin: -30px;
}

.two_col_item>div {
    width: calc(50% - 60px);
    margin: 30px;
}

.features_bg_box {
    background: linear-gradient(180deg, rgba(135, 206, 250, 0.2) 0%, rgba(104, 120, 182, 0.2) 100%);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.features_bg_box img {
    width: 100%;
}

.content_btn_wrap {
    display: flex;
    margin-top: 60px;
}

.content_btn_wrap .fill_btn {
    min-width: 190px;
}

.flip-x li:nth-child(odd) .two_col_details {
    padding-left: 17px;
}

.flip-x li:nth-child(even) {
    flex-direction: row-reverse;
}

.two_col_list .two_col_item+.two_col_item {
    margin-top: 160px;
}

.gradient_strip {
    width: 100%;
    max-width: 580px;
    height: 58px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,
            rgba(206, 174, 250, 1) 0%,
            rgba(206, 174, 250, 0) 71.52876257896423%);
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.gradient_strip>img {
    width: auto;
}

.gradient_strip p {
    color: #434343;
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-left: 15px;
}

.two_col_details .content_block>p {
    margin-right: 18%;
}

/* ---------------------------end offeatures section------------------ */
/* ---------------------------subscription section------------------ */
.subscription_sec {
    background: linear-gradient(108.38deg,
            rgba(55, 90, 127, 0.1) 0%,
            rgba(139, 73, 222, 0.1) 100%);
    -webkit-border-radius: 80px 80px 0px 0px;
    -moz-border-radius: 80px 80px 0px 0px;
    -o-border-radius: 80px 80px 0px 0px;
    border-radius: 80px 80px 0px 0px;
    padding: 160px 0;
}

.subscription_sec .content_block {
    margin-right: 27%;
}

.subscription_sec .content_with_button {
    align-items: flex-start;
}

/* ----------------------switching button-------------------- */

.switches-container {
    width: 300px;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: linear-gradient(180deg,
            rgba(135, 206, 250, 0.2) 0%,
            rgba(104, 120, 182, 0.2) 100%);
    line-height: 60px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}


.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}


.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
    color: #6878B6;
    font-weight: 600;
    font-size: 16px;
}


.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.switch {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    background: #6878B6;
    height: 100%;
    box-shadow: 0px 0px 6px 4px rgba(104, 120, 182, 0.2);
}

.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: #ffffff;
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 500;
    font-size: 16px;
}


.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}


.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}


.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}

.subscr_plan_box {
    margin-top: 40px;
    border-radius: 20px;
    background:
        linear-gradient(294deg,
            rgb(181 181 181 / 50%) 0%,
            rgba(165, 121, 255, 0.5) 146.354939%);
    z-index: -1;
    /* Set the border radius */
    padding: 20px;
    position: relative;
    z-index: 1;
}

.subscr_plan_box::after {
    content: '';
    position: absolute;
    display: block;
    top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    background: #ffffff;
    border-radius: 20px;
    z-index: -1;
}

.sub_plans_inside {
    display: flex;
}

.plans_buttons {
    width: 20%;
    margin: 10px 20px 10px 10px;
}

.plans_buttons li {
    color: #6878b6;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 30px 5px 30px;
    height: 58px;
    border-radius: 10px;
    border-style: solid;
    border-color: transparent;
    overflow: hidden;
    cursor: pointer;
    margin: 1px 0;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.plans_buttons li.active {
    background-color: #6878B6;
    color: #ffffff;
}

.plans_buttons li:hover {
    background-color: #6878B6;
    color: #ffffff;
}

.plans_wrapper {
    width: 80%;
    display: flex;
    background: linear-gradient(150deg,
            #f6f1ff,
            #faf8ff);
    padding: 20px 20px 40px 0;
    -webkit-border-radius: 0px 18px 18px 0px;
    -moz-border-radius: 0px 18px 18px 0px;
    -o-border-radius: 0px 18px 18px 0px;
    border-radius: 0px 18px 18px 0px;
}

.plan_box_top {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan_box_top h5 {
    color: #434343;
    text-align: left;
    font-size: 30px;
    font-weight: 700;
}

.basic_plan_box .plan_box_body {
    border-top: 1px solid #6878B6;

}

.pro_plan_box {
    border-left: 1px solid #DADADA;
    display: flex;
    flex-direction: column;
}

.pro_plan_box .plan_box_top {
    background: linear-gradient(200deg,
            rgba(167, 183, 229, 1) 0%,
            rgba(207, 174, 251, 1) 100%);
    -webkit-border-radius: 0px 14px 0px 0px;
    -moz-border-radius: 0px 14px 0px 0px;
    -o-border-radius: 0px 14px 0px 0px;
    border-radius: 0px 14px 0px 0px;
}

.plan_box_top h3 {
    font-family: "Roboto", sans-serif;
    font-size: 42px;
    font-weight: 500;
}

.plan_box_top h3 sub {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.pro_plan_box .plan_box_top h3 {
    color: #ffffff;
}

.basic_plan_box .plan_box_top h3 {
    color: #6878b6;
}

.basic_plan_box.hidden {
    position: relative;
}

.basic_plan_box.hidden::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
}

.plan_box_body {
    margin: 0 30px;
    padding: 25px 0;
    flex-grow: 1;
}

.plan_box_body p {
    color: #7e7e7e;
    text-align: left;
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    margin-bottom: 35px;
}

.plan_box_body ul>li {
    color: #7d7d7d;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    position: relative;
    line-height: 19px;
}

.plan_box_body ul>li:before,
.addons_body li:before {
    content: '';
    position: absolute;
    background: url(../images/list_tick_circle.svg);
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    top: 0;
    left: -35px;
}

.plan_box_body ul>li+li {
    margin-top: 22px;
}

.plan_box_body>ul {
    margin-bottom: 42px;
    margin-left: 25px;
    position: relative;
}

.plan_box_footer {
    padding: 0 30px;
}

.pro_plan_box .plan_box_footer {
    padding-right: 10px;
}

.curriculaum_addons {
    margin-top: 20px;
    padding: 30px 30px 20px;
    background: linear-gradient(150deg,
            #f6f1ff,
            #faf8ff);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;

}

.curriculaum_addons_wrapper {
    position: relative;
    z-index: 1;
}

.curriculum_person_img {
    position: absolute;
    bottom: calc(100% - 16px);
    left: 40px;
    z-index: 2;
}

.curriculu_wave_pattrern {
    position: absolute;
    bottom: calc(100% - 25px);
    left: calc(0% - 20px);
    z-index: -1;
}

.curriculum_person_img img,
.curriculu_wave_pattrern img {
    width: auto;
}


.addons_top {
    padding-bottom: 30px;
    border-bottom: 1px solid #6878b6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.addons_top h5 {
    color: #434343;
    text-align: left;
    font-size: 30px;
    font-weight: 700;
}

.addons_top h3 {
    font-family: "Roboto", sans-serif;
    color: #6878b6;
    font-size: 42px;
    font-weight: 500;
}

.addons_top h3 sub {
    font-family: "Roboto", sans-serif;
    color: #6878b6;
    font-size: 16px;
    font-weight: 500;
}

.addons_body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 18px -12px;
    margin-left: 20px;
}

.addons_body li {
    color: #7d7d7d;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    margin-left: 10px;
    line-height: 19px;
}

.addons_body li:nth-child(odd) {
    width: calc(45% - 24px);
    margin: 12px;
    padding-right: 35px;
}

.addons_body li:nth-child(even) {
    width: calc(55% - 24px);
    margin: 12px;
}

.addons_footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.addons_footer .fill_btn {
    width: 25%;
    min-width: 220px;
}

/*---------------------------------- feed back section--------------------------- */
.feedback_section {
    padding: 160px 0 134px;
    min-height: 830px;
}

.feedback_wrapper {
    display: flex;
}

.feedback_col {
    width: 50%;

}

.feedback_left_inside {
    position: relative;
}

.feedback_col .content_block {
    font-size: 46px;
    margin-right: 37%;
}

.feedback_bg {
    position: absolute;
    top: 70%;
    right: 15%;
    z-index: 0;
}

.feedback_bg::after {
    content: '';
    position: inherit;
    background: radial-gradient(closest-side,
            rgb(207 174 251 / 64%) 0%,
            rgba(102, 80, 180, 0) 84%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 169%;
    height: 169%;
    z-index: -1;
}

.feedback_col .content_block>h3 {
    font-size: 46px
}

.feedback_col .fill_btn {
    margin-top: 60px;
    width: 150px;
}

.faq_list {
    display: flex;
    flex-direction: column;
}

.faq_list_item {
    padding: 25px 0;
}

.faq_list_item:first-child {
    padding-top: 0;
}

.faq_title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.faq_title p {
    margin-top: 15px;
    color: #434343;
    text-align: left;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
}

.faq_btn {
    position: relative;
    border: 1px solid transparent;
    margin-left: 15px;
    font-size: 20px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    caret-color: #6878B6;
    cursor: pointer;
    background: linear-gradient(180deg,
            rgba(135, 206, 250, 0.1) 0%,
            rgba(104, 120, 182, 0.1) 100%);
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;

}

.faq_content {
    margin-top: 10px;
    display: none;
}

.faq_content p {
    color: #545454;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    line-height: 22px;
}

.faq_list_item+.faq_list_item {
    border-top: 1px solid #F0F0F0;
}

.faq_btn img {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s all ease;
}

.faq_btn .minus_icon {
    opacity: 0;
}

.faq_btn.close .minus_icon {
    opacity: 1;
}

.faq_btn.close .add_icon {
    opacity: 0;
}

.faq_btn.close {
    background: #ffffff;
    border: 1px solid #6878B6;

}

/* ----------------------end of faq section-------------------------------- */

/* ----------------------contact section-------------------------------- */
.contact_section {
    padding: 160px 0;
    background: linear-gradient(108.38deg,
            rgba(55, 90, 127, 0.1) 0%,
            rgba(139, 73, 222, 0.1) 100%);
    position: relative;
}

.contact_wave_shape {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.contact_wave_shape>img {
    height: auto;
}

.contact_col {
    display: flex;
    margin: -20px;
    position: relative;
}

.contact_corn_shape {
    position: absolute;
    top: 100%;
    left: 0;
}

.contact_col_item {
    width: calc(50% - 40px);
    margin: 20px;
}

.contact_col_item.left {
    display: flex;
    align-items: center;
}

.contact_col_item .content_block {
    margin-right: 15%;
}

.input_feild_wrapper>input,
.input_feild_wrapper>textarea {
    width: 100%;
}

.input_feild_wrapper>input {
    height: 58px;
}

.contact_form_inside>li+li {
    margin-top: 20px;
}

.two_input_feild {
    display: flex;
    margin: 0 -10px;
}

.two_input_feild .input_feild_wrapper {
    width: calc(50% - 20px);
    margin: 0 10px;
}

.form_feilds,
.form_textarea {
    padding: 10px 17px;
    background-color: #ffffff;
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
    z-index: 1;
    font-family: "PlusJakartaSans-Regular", sans-serif;

}

.form_feilds::placeholder {
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.form_feilds:-ms-input-placeholder {
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.form_textarea::placeholder {
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.form_textarea:-ms-input-placeholder {
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.input_feild_wrapper {
    display: flex;
    flex-direction: column;
    position: relative;


}

.input_feild_wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(149deg, rgba(165, 121, 255, 1) 0%, rgba(171, 171, 171, 0.5) 19%, rgba(171, 171, 171, 0.5) 81%, rgba(165, 121, 255, 1) 100%);
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    -o-border-radius: 11px;
    border-radius: 11px
}

.form_textarea {
    min-height: 265px;
    resize: none;
    overflow: auto;
}

.form_feilds::-ms-input-placeholder,
.form_textarea::-ms-input-placeholder {
    /* Edge 12-18 */
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.form_feilds::placeholder,
.form_textarea::-ms-input-placeholder {
    color: #ababab;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.phnnum_select {
    display: flex;
    flex-direction: row;
}

.country_code_wrapper .SumoSelect>.CaptionCont>label>i {
    background-image: url(../images/polygon.png);
}

.country_code_wrapper .SumoSelect {
    min-width: unset;
    width: 85px;
    border-right: 1px solid #D9D9D9;
}

.country_code_wrapper .SumoSelect>.CaptionCont {
    border: none;
}

.phnnum_select .form_feilds {
    -webkit-border-radius: 0 10px 10px 0;
    -moz-border-radius: 0 10px 10px 0;
    -o-border-radius: 0 10px 10px 0;
    border-radius: 0 10px 10px 0;
}

.country_code_wrapper {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    z-index: 10;
    -webkit-border-radius: 10px 0 0 10px;
    -moz-border-radius: 10px 0 0 10px;
    -o-border-radius: 10px 0 0 10px;
    border-radius: 10px 0 0 10px;
    padding-left: 10px;
}

.country_code_wrapper .SumoSelect.open>.optWrapper {
    top: 45px;
}

.country_code_wrapper .SumoSelect>.CaptionCont>label {
    right: 3px;
}

.country_code_wrapper .SumoSelect>.CaptionCont>span {
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
}

.country_code_wrapper .SumoSelect>.optWrapper>.options li.opt {
    padding: 10px 6px;
}

.contact_form_inside .form_btn_wrapper {
    margin-top: 40px;
}

.form_btn_wrapper .fill_btn {
    width: 100%;
    font-family: inherit;
}

.get_started_section {
    padding: 0 160px;
}

/* -------------------------get started-------------------------- */
.get_started_section {
    padding: 160px 0;
}

.get_started_inside {
    padding: 110px 0;
    background: linear-gradient(180deg, rgba(167, 183, 229, 1) 0%, rgba(207, 174, 251, 1) 100%);
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.get_started_inside_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.get_started_btn_box {
    margin-top: 20px;
}

.get_started_btn_box .fill_btn {
    min-width: 220px;
}

.get_started_wave {
    position: absolute;
    bottom: 0;
    left: 2%;
    z-index: 0;
}

.get_started_image {
    position: absolute;
    bottom: 0;
    right: 4%;
    z-index: 0;
}

/*------------------------------- footer---------------------- */
.footer {
    position: relative;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 80%;
    bottom: 0;
    left: 0;
    background: radial-gradient(closest-side at 50% 86%, rgba(132, 74, 215, 0.78) 9%, rgba(102, 80, 180, 0) 315%);
    -webkit-filter: blur(190px);
    -moz-filter: blur(190px);
    filter: blur(190px);
    z-index: -1;
}

.footer_cols_wrapper {
    position: relative;
    padding-top: 100px;
}

.footer_cols_wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0px;
    left: 0;
    background: linear-gradient(270deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(206, 174, 250, 1) 51.499998569488525%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.footer_cols {
    display: flex;
    flex-wrap: wrap;
    margin: -40px -20px;
}

.footer_cols_item {
    width: calc(50% - 40px);
    margin: 40px 20px;
}

.footer_logo img {
    width: 348px;
    height: auto;
}

.footer_abt_comp p {
    color: #545454;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    max-width: 450px;
    line-height: 24px;
    margin-top: 14px;
}

.footer_cols_item h6 {
    color: #434343;
    text-align: left;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 30px;
}

.news_letter {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    height: 68px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
}

.news_letter>input {
    flex-grow: 1;
    height: 100%;
    color: #898989;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    padding: 10px 15px;
    background: transparent;
}

.news_letter>input::placeholder {
    color: #898989;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "PlusJakartaSans-Regular", sans-serif;
}

.news_letter>input:-ms-input-placeholder {
    color: #898989;
    text-align: left;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: "PlusJakartaSans-Regular", sans-serif;
}

.footer_link_list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.footer_link_list>li {
    width: calc(33.33% - 30px);
    margin: 15px;
}

.footer_link_list li a {
    color: #747474;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.socila_links img {
    width: auto;
}

.socila_links {
    display: flex;
    margin: 0 -10px;
}

.socila_links>li {
    margin: 0 10px;
}

.socila_links>li a {
    width: 50px;
    height: 50px;
    border: 1.5px solid #6878B6;
    background: transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.socila_links>li a:hover {
    background: #ffffff;
}

.footer_botoom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    padding: 23px 0;
    position: relative;
}

.footer_botoom ::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0px;
    left: 0;
    background: linear-gradient(270deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 51.499998569488525%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.footer_botoom p {
    color: #747474;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
}