@import url(styles.css);

/* Start Fonts */

@font-face {
    font-family: 'bressay';
    src: url(../fonts/bressay_trial_Rg.ttf);
}

@font-face {
    font-family: 'bressayBold';
    src: url(../fonts/bressay_trial_Bd.ttf);
}

/* End Fonts */

:root {
    --main-color: #7312F3;
    --sec-color: #1F2954;
    --bg-color: #F5F5F5;
    --dark-color: #280655;
    --gray-color: #5D5D5D;
    --font-body: "bressay", sans-serif;
    --font-bold: "bressayBold", sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: initial;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    background: #fff;
    text-align: start;
    direction: rtl;
}

section,
footer {
    /* overflow: hidden; */
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    /* overflow: hidden; */
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--main-color);
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    left: -100%;
    max-width: 350px;
    overflow-y: auto;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-weight: 500;
    line-height: 27px;
    text-align: start;
    text-transform: capitalize;
    display: block;
    padding: 12px 0;
    position: relative;
    font-size: 20px;
    transition: all 0.6s;
    border-bottom: 1px #ffffff45 solid;
    color: #fff;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    left: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/*** 

====================================================================
	Start Search Popup
====================================================================

***/

.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -200%;
    transform: translateY(-100%);
    background-color: color-mix(in srgb, var(--dark-color) 90%, transparent);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.sidenav-bar-visible .search-popup {
    width: 80%;
}

.search-popup:before {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 560px;
    /* background-image: url(../images/waves-shape.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 0px;
    content: "";
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--main-color);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0;
}

.search-popup .close-search span {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    border-radius: 10px;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    left: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-popup .close-search.style-two span {
    font-size: 20px;
    color: #ffffff;
}


/*** 

====================================================================
	End Search Popup
====================================================================

***/

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 24px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 23px 0;
    /* overflow: hidden; */
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    position: relative;
    left: 0px;
    right: 0px;
    top: 0px;
    color: #fff;
    margin: 0px;
    padding: 0px;
    width: 38px;
    height: 38px;
    font-size: 25px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h a {
    font-family: var(--font-bold);
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    max-height: calc(100vh - 252px);
    overflow: hidden;
    overflow-y: auto;
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
    padding: 0;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    font-family: var(--font-bold);
    font-size: 18px;
    line-height: 26px;
    color: #fff;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
    background: color-mix(in srgb, var(--main-color) 50%, transparent);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 14px 21px;
}

.logo-h {
    width: 98px;
    /* width: 100%; */
    /* margin-inline-end: 47px; */
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--sec-color) !important;
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 9px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 198px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: color-mix(in srgb, var(--main-color) 73%, transparent);
    box-shadow: 0px 0px 14px 0px #0000001A;
    border-radius: 10px;
    padding: 20px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    padding: 16px 0;
    display: block;
    border-bottom: 1px solid #FFFFFF33;
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 24px;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
    height: 35px;
    align-content: center;
    text-align: center;
    background: var(--main-color);
    border-radius: 6px;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3.5px auto;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all .5s;
    top: 0;
    right: 0;
    left: 0;
}

.mobile-nav-toggler .lines ::after {
    /* transform: translateX(-50px); */
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    margin: 0 auto;
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    padding: 8px 24px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 121px;
    background: var(--main-color);
    min-height: 48px;
    border-radius: 16px;
    color: #fff;
    text-transform: capitalize;
    box-shadow: none !important;
    border: none;
    z-index: 1;
    gap: 8px;
    font-family: var(--font-bold);
    font-size: 18px;
    line-height: 28px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

header .btn {
    margin-inline-start: 40px;
}

.search-box-btn.search-box-outer {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

.header-med .head-inner ul li.current-menu-item a {
    color: var(--sec-color) !important;
}

.lang-menu {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 20px;
}

.lang-menu>a {
    min-width: 130px;
    min-height: 48px;
    padding: 9px 13px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--main-color);
    background: #fff;
    gap: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--main-color);
    cursor: pointer;
}

.contact-menu>a {
    background: var(--main-color);
    color: #fff;
}

.lang-menu ul {
    display: block;
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 130px;
    padding-inline-end: 6px;
}

.lang-menu ul li a {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #E5EEFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    gap: 6px;
    align-items: center;
    -webkit-align-items: center;
}

.lang-menu ul li:first-child a {
    padding-top: 0;
}

.lang-menu ul li:last-child a {
    border: none;
    padding-bottom: 0;
}

.btn:hover {
    color: inherit;
}

.logo-h a img {
    width: 100%;
}

.btn.btn-white {
    background: #fff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

/* End Header */

/* Start Banner-h */

.banner-block,
.banner-block .container>.row {
    height: 768px;
}

.banner-block .row {
    align-items: end;
}

.banner-block .banner-inner {
    height: auto;
}

.banner-block .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 6, 85, 0.32) 0%, #280655 83.27%);
}

.banner-block .banner-inner .banner-text {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
    justify-content: space-between;
}

.banner-block .banner-inner .banner-text h1 {
    font-family: var(--font-bold);
    color: #fff;
    font-size: 48px;
    max-width: 695px;
    line-height: 62.4px;
    transform: translateY(-100%);
    transition: all .4s;
    opacity: 0;
    transition-delay: 1s;
    transition-duration: .5s;
}

.banner-small-img {
    width: 292px;
    height: 158px;
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s;
    opacity: 0;
    transition-delay: 1s;
    transition-duration: .5s;
}

.banner-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-block .banner-inner .banner-bottom {
    max-width: 56.25%;
    position: relative;
    z-index: 5;
}

.banner-block .banner-inner .banner-bottom .banner-text-bottom {
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
    display: flex;
    padding: 52px 41px;
    align-items: center;
    -webkit-align-items: center;
    transform: translateY(100%);
    transition: all .4s;
    opacity: 0;
    transition-delay: 1s;
    transition-duration: .5s;
}

.banner-block .banner-inner .banner-bottom .banner-text-bottom p {
    max-width: 426px;
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    line-height: 26px;
    margin-inline-end: 56px;
}

.banner-control-bottom-in {
    position: absolute;
    left: 0;
    width: calc(100% - 56.25% - 48px);
    min-height: 34px;
    bottom: 0;
    margin-bottom: 71px;
    /* display: flex; */
    /* justify-content: space-between; */
    z-index: 8;
}

.banner-control-bottom .row {
    position: relative;
}

.banner-control-bottom-in .banner-nav {
    width: 86px;
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 24px;
    bottom: -11px;
}

.banner-control-bottom-in .banner-nav .home-nav::after {
    display: none;
}

.banner-control-bottom-in .banner-nav .home-nav {
    width: 35px;
    height: 34px;
    position: relative;
    left: auto;
    right: auto;
}

.banner-control-bottom {
    position: relative;
    z-index: 4;
}

.banner-pagination .swiper-pagination.home-pagination {
    position: relative;
    bottom: 0;
    top: 0;
    display: flex;
    gap: 12px;
    align-items: end;
    -webkit-align-items: end;
}

.banner-pagination .swiper-pagination.home-pagination .num-slider-h .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    transform: none;
}

.banner-pagination .swiper-pagination.home-pagination .num-slider-h .line-h {
    width: 53px;
    display: block;
    height: 8px;
    background: #FFFFFF;
    opacity: .2;
    border-radius: 10px;
    transition: all .4s;
}

.banner-pagination .swiper-pagination.home-pagination .num-slider-h .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    color: #fff;
    font-family: var(--font-bold);
    font-size: 24px;
    margin: 0;
    line-height: 32px;
    margin-bottom: 8px;
    transition: all .4s;
    transform: translateY(-10px);
    opacity: 0;
    display: none;
}

.banner-pagination {
    direction: ltr;
}

.banner-control-bottom-in .banner-control-bottom-all-in {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.home-counter {
    font-family: var(--font-bold);
    color: #fff;
    font-size: 24px;
    text-align: end;
    line-height: 32px;
    overflow: hidden;
    height: 32px;
}

.home-counter span {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-counter span.enter {
    transform: translateY(100%);
    opacity: 0;
}

.home-counter span.active {
    transform: translateY(0);
    opacity: 1;
}

.home-counter span.leave {
    transform: translateY(-100%);
    opacity: 0;
}

.banner-pagination .swiper-pagination.home-pagination .num-slider-h .swiper-pagination-bullet.swiper-pagination-bullet-active+.line-h {
    width: 97px;
    opacity: 1;
}

.swiper-slide-active .banner-block .banner-inner .banner-bottom .banner-text-bottom,
.swiper-slide-active .banner-block .banner-inner .banner-text h1 {
    opacity: 1;
    transform: none;
}

.swiper-slide-active .banner-small-img {
    opacity: 1;
}


/* End Banner-h */

/* Start About-h */

.about-h {
    padding-block: 140px;
}

.about-text h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 24px;
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    line-height: 26px;
}

.about-text {
    max-width: calc(100% - 103px);
}

.readMore {
    font-family: var(--font-bold);
    color: var(--main-color);
    margin-top: 15px;
    font-size: 18px;
    display: inline-flex;
    line-height: 26px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}

.about-img {
    height: 351px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #E3E3E3;
}

.about-img .img,
.about-img .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-h .row {
    align-items: center;
    -webkit-align-items: center;
}

.about-counter {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 38px 52px;
    justify-content: center;
    border: 1px solid #E3E3E3;
    border-radius: 16px;
    box-shadow: 0px 12px 20px 0px #00000014;
    gap: 40px;
Øª: Ø¤;
}

.about-counter .item {
    width: calc(25% - 32px);
    text-align: center;
}

.counter-block h4 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 3px;
    font-size: 24px;
    line-height: 34px;
}

.counter-item {
    direction: ltr;
    display: inline-flex;
    margin: 0;
}

.counter-block .counter-item {
    font-family: var(--font-bold);
    color: #454545;
    font-size: 40px;
    line-height: 52px;
}

/* End About-h */

/* Start Programes-h */

.programes-h {
    padding-top: 95px;
    background: var(--dark-color);
}

.programes-h::before,
.news-h::before,
footer::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 105.59px;
    background: url(../images/before.png) content-box;
    background-size: contain;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    align-items: center;
    -webkit-align-items: center;
}

.title-flex .title {
    margin: 0;
}

.title h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 52px;
}

.title p {
    max-width: 620px;
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    line-height: 26px;
}

.title.white-color h3 {
    color: #fff;
}

.title.white-color p {
    color: #F1E7FE;
}

.btn.btn-border {
    background: #fff;
    color: var(--main-color);
    border: 2px var(--main-color) solid;
}

.programe-block {
    height: 494px;
    overflow: hidden;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.programe-block .img {
    width: 100%;
    height: 100%;
}

.programe-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .4s;
}

.programe-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 6, 85, 0.32) 0%, rgba(40, 6, 85, 0.88) 100%);
}

.programe-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 2;
    border-top: 2px solid #D9D9D933;
    padding: 20px;
    overflow: hidden;
}

.programe-block .details h3 {
    font-family: var(--font-bold);
    color: #fff;
    font-size: 24px;
    line-height: 34px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.programe-block .details .details-in {
    margin-top: 12px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    margin-bottom: -76px;
    transition: all .4s;
    opacity: 0;
}

.programe-block .details .details-in p {
    max-width: calc(100% - 105px);
    color: #F1E7FE;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;

    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.more-btn {
    width: 65px;
    height: 64px;
    background: var(--main-color);
    border-radius: 50%;
    align-content: center;
    display: inline-block;
    text-align: center;
    font-family: var(--font-bold);
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}


/* End Programes-h */

/* Start Courses-h */

.courses-h {
    padding-block: 140px;
}

.courses-all .item,
.news-all .item,
.reviews-all .item {
    padding: 0 10px;
}

.courses-all .slick-list,
.news-all .slick-list,
.reviews-all .slick-list {
    margin-left: -10px;
    margin-right: -10px;
}

.courses-block .img {
    width: 100%;
    height: 100%;
}

.courses-block {
    height: 458px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #C5C5C5;
}

.courses-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.courses-block .details {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 8px;
    background: color-mix(in srgb, var(--main-color) 70%, transparent);
    border-radius: 8px;
    padding: 20px;
    transition: all .3s;
}

.courses-block .details h3 {
    font-family: var(--font-bold);
    color: #fff;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 34px;
    overflow: hidden;
    text-overflow: ellipsis; /* Displays an ellipsis (...) at the end of the truncated text */
    display: -webkit-box; /* Required for -webkit-line-clamp to work */
    -webkit-line-clamp: 2; /* Sets the maximum number of lines to show before truncating */
    line-clamp: 2; /* Standard property for line clamping */
    -webkit-box-orient: vertical;
    height: 68px;
}

.courses-block .details .details-in p {
    font-family: var(--font-bold);
    color: #F1E7FE;
    font-size: 18px;
    line-height: 26px;
    overflow: hidden;
    height: 52px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.courses-block .details .details-in .more-btn {
    margin-inline-start: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    margin-top: 1px;
    background: #fff;
    color: var(--main-color);
    margin-bottom: -65px;
    opacity: 0;
    z-index: 4;
    position: relative;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 3;
    top: 50%;
    margin: 0;
    padding: 0;
}

.slick-prev::after,
.slick-next::after {
    position: absolute;
    inset: 0;
    background: var(--main-color);
    content: "";
    z-index: -1;
    border-radius: 8px;
    transform: rotate(45deg);
    transition: all .4s;
}

.slick-prev::before,
.slick-next::before {
    font-family: 'Font Awesome 6 Pro';
    opacity: 1;
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -70px;
}

[dir='rtl'] .slick-prev {
    right: -70px;
    left: auto;
}

.slick-next {
    right: -70px;
}

.slick-prev {
    left: -70px;
}

/* End Courses-h */

/* Start News-h */

.news-h {
    padding-block: 66px;
}

.news-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(40, 6, 85, 0.1) 0%, #280655 100%);
}

.news-block {
    border: 1px solid #C5C5C5;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    padding: 16px 16px 32px;
    transition: all .3s;
    min-height: 480px;
}

.news-block .img {
    height: 187px;
    border-radius: 8px;
    overflow: hidden;
}

.news-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.news-block .details {
    padding-top: 20px;
}

.date-h {
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 4px;
    transition: all .4s;
    margin-bottom: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
}

.date-h .icon {
    width: 16px;
    height: 16px;
    line-height: 16px;
}

svg {
    width: 100%;
    height: 100%;
}

.date-h span {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.news-block .details h3 {
    font-family: var(--font-bold);
    color: #34086D;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
    transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-block .details p {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-block .details .details-btn {
    margin-bottom: -40px;
    position: relative;
    bottom: -26px;
    transition: all .4s;
    opacity: 0;
    margin-top: 22px;
}

.news-block .details .details-btn .readMore {
    margin: 0;
}

.news-all .item {
    min-height: 470px;
    height: auto;
}

/* End News-h */

/* Start Review-h */

.reviews-h {
    padding-block: 140px 0;
}

.review-block .img {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin: 0 32px;
    border-radius: 16px;
    border: 1px solid #F1E7FE;
    box-shadow: 0px 4px 4px 0px #0000001F;
    margin-bottom: -50px;
    background: #fff;
    z-index: 2;
    position: relative;
}

.review-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.review-block .details {
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    box-shadow: 0px 20px 28px 0px #00000014;
    border-radius: 16px;
    padding: 68px 32px 20px;
    transition: all .4s;
    height: calc(100% - 50px);
}

.review-block .details p {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.review-block .details .review-foot {
    margin-top: 23px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.review-block .details .review-foot .user-name-block h3 {
    font-family: var(--font-bold);
    color: #34086D;
    margin-bottom: 3px;
    font-size: 18px;
    line-height: 26px;
}

.review-block .details .review-foot .user-name-block span {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.review-block .details .review-foot .icon {
    width: 35px;
    height: 31px;
}

.reviews-all .item {
    margin-bottom: 150px;
    height: auto;
}

.reviews-all {
    position: relative;
}

.reviews-all::before,
.reviews-all::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(270deg, #FFFFFF 0%, #FFFFFF 51.08%, rgba(255, 255, 255, 0.01) 100%);
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

.reviews-all::before {
    right: -14%;
}

.reviews-all::after {
    left: -14%;
    transform: scaleX(-1);
}

.reviews-all .slick-prev,
.reviews-all .slick-next {
    top: 36%;
}

.review-block:hover .details {
    box-shadow: 0px 20px 48px 0px #0000001F;
    border-color: var(--main-color);
}

/* End Review-h */

/* Start Footer */

footer .overlay-img::after {
    content: "";
    background: radial-gradient(50% 50% at 50% 50%, rgba(40, 6, 85, 0) 0%, #280655 100%);
    position: absolute;
    inset: 0;
}

.footer-top {
    padding-block: 180px 40px;
}

.foot-block {
    border: 2px solid #FFFFFF1F;
    background: color-mix(in srgb, var(--dark-color) 60%, transparent);
    border-radius: 16px;
    padding: 49px 46px 34px;
    padding-inline-end: 34px;
    height: 100%;
}

.foot-block-s .logo-f {
    max-width: 226.54px;
    display: block;
    width: 100%;
    margin-bottom: 22px;
}

.foot-block-s .logo-f img {
    width: 100%;
}

.foot-block-s h3 {
    font-family: var(--font-bold);
    color: #fff;
    margin: 0;
    font-size: 24px;
    line-height: 32px;
}

.foot-block>h3 {
    font-family: var(--font-bold);
    color: #fff;
    margin-bottom: 22px;
    font-size: 24px;
    line-height: 32px;
}

.links-f ul li a {
    color: #F6F6F6;
    font-weight: 400;
    display: inline-block;
    font-size: 16px;
    margin: 0 0 12px;
    line-height: 24px;
}

.info-f ul li {
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--dark-color);
    margin-bottom: 16px;
    color: #fff;
    transition: all .3s;
    border: 1px transparent solid;
}

.info-f ul li:last-child {
    margin: 0;
}

.info-f ul li .icon {
    font-size: 24px;
    width: 24px;
    line-height: 32px;
}

.info-f ul li a,
.info-f ul li span {
    max-width: calc(100% - 24px);
    color: #F6F6F6;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.info-f ul li a span {
    width: auto;
}

.info-f ul li u {
    display: inline-block;
    text-decoration: none;
    direction: ltr;
}

.links-f ul li:last-child a {
    margin: 0;
}

.footer-bottom .row {
    border-top: 2px solid rgb(255 255 255 / 10%);
    align-items: center;
    -webkit-align-items: center;
}

.copy-right p {
    font-family: var(--font-bold);
    color: #fff;
    font-size: 18px;
    line-height: 26px;
}

.s-h {
    background: radial-gradient(50% 50% at 50% 50%, rgba(40, 6, 85, 0.1) 0%, #280655 100%);
    display: inline-flex;
    border: 1px solid #FFFFFF29;
    padding: 8px;
    border-radius: 56px;
    gap: 12px;
}

.footer-bottom {
    text-align: center;
}

.copy-right {
    text-align: start;
}

.s-h a {
    width: 35px;
    height: 35px;
    border: 1px solid #FFFFFF3D;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}

.s-h a i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.ryad-logo {
    float: left;
}

.ryad-logo svg {
    height: 96px;
}

.upTop {
    width: 50px;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    text-align: center;
    box-shadow: 0px 8.62px 14.77px 0px #1B1A1A40;
    background: var(--main-color);
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 20px;
    border-radius: 8px;
    color: #F5E8E8;
    font-size: 16px;
    line-height: 24px;
    z-index: 8;
    transform: scale(0.5);
    opacity: 0;
}

.upTop.active {
    opacity: 1;
    transform: none;
}

form {
    direction: rtl;
}

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding-block: 189px 102px;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 6, 85, 0.32) 0%, rgba(40, 6, 85, 0.7) 83.27%);
}

.text-bread {
    text-align: center;
}

.text-bread h1 {
    font-family: var(--font-bold);
    margin: 0;
    color: #fff;
    font-size: 40px;
    text-align: center;
    line-height: 52px;
}

/* End Breadcrumb-h */

/* Start About-page */

.about-page {
    padding-block: 92px;
}

.about-more-h {
    padding-block: 135px 46px;
}

.about-more-h::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    height: 105.59px;
    background: url(../images/before.png) content-box;
    background-size: contain;
}

.about-more-h .overlay-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(40, 6, 85, 0) 0%, rgba(40, 6, 85, 0.9) 100%);
}

.about-block {
    background: color-mix(in srgb, var(--dark-color) 60%, transparent);
    border: 2px solid #FFFFFF1F;
    backdrop-filter: blur(4px);
    padding: 44px;
    margin: 10px 0;
    height: calc(100% - 20px);
    border-radius: 16px;
}

.about-block h3 {
    font-family: var(--font-bold);
    color: #fff;
    margin-bottom: 32px;
    font-size: 40px;
    line-height: 52px;
}

.about-block p {
    font-family: var(--font-bold);
    color: #F1E7FE;
    font-size: 18px;
    line-height: 26px;
    max-width: 529px;
}

.about-block.flex-block {
    display: flex;
}

.about-block.flex-block .text-inner,
.about-block.flex-block .more-text-inner {
    width: 50%;
    padding-inline-end: 40px;
}

.about-block.flex-block .more-text-inner p {
    max-width: 100%;
    margin-bottom: 12px;
}

.about-block.flex-block .more-text-inner p:last-child,
.about-block ul li:last-child {
    margin: 0;
}

.about-block ul {
    padding-inline-start: 20px;
}

.about-block ul li {
    display: list-item;
    list-style: initial;
    color: #F1E7FE;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 12px;
    max-width: 529px;
}

/* End About-page */

/* Start Directors-page */

.body-inner {
    padding-block: 92px;
}

.table-h {
    max-width: 850px;
    margin: 0 auto;
}

.table-h table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.table-h table thead tr::after {
    background: #F1E7FE;
    border: 1px solid #D4B6FB;
    border-radius: 16px;
    width: 100%;
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.table-h table thead tr,
.table-h table tbody tr {
    position: relative;
}

.table-h table thead tr th,
.table-h table tbody tr td {
    padding: 33px;
}

.table-h table tbody tr::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    box-shadow: 0px 6px 12px 0px #0000000A;
    border-radius: 8px;
}

.table-h table thead tr th {
    font-family: var(--font-bold);
    color: var(--dark-color);
    font-size: 20px;
    line-height: 30px;
}

.table-h table tbody tr td {
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    line-height: 26px;
}

/* End Directors-page */

/* Start Team-page */

.team-page .table-h {
    max-width: 1024px;
}

/* End Team-page */

/* Start Structure-page */

.structure-page .table-h {
    max-width: 606px;
}

/* End Structure-page */

/* Start Framework-page */

.frame-block {
    border: 1px solid #D4B6FB;
    background: #FFFFFF;
    box-shadow: 0px 20px 28px 0px #0000000A;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    border-radius: 16px;
    padding: 43px 37px;
}

.frame-block h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 32px;
}

.frame-block p {
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    line-height: 26px;
}

.frame-block ul {
    padding-inline-start: 20px;
}

.frame-block ul li {
    display: list-item;
    list-style: initial;
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 26px;
}

.frame-block ul li:last-child {
    margin: 0;
}

.frame-block p+ul {
    margin-top: 24px;
}

.frame-sidebar {
    background: #F1E7FE;
    border: 1px solid #D4B6FB;
    padding: 75px 46px;
    border-radius: 16px;
    height: calc(100% - 20px);
    margin-bottom: 20px;
}

.frame-title {
    margin-bottom: 24px;
}

.frame-title h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin: 0;
    font-size: 24px;
    line-height: 34px;
}

.frame-content .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #FFFFFF;
    border: 1px solid #EADBFD;
    padding: 16px;
    border-radius: 16px;
}

.frame-content .item:last-child {
    margin: 0;
}

.frame-content .item h4 {
    margin: 0;
    max-width: calc(100% - 54px);
    font-family: var(--font-bold);
    color: #000;
    font-size: 20px;
    line-height: 30px;
}

.frame-content .item .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 8px;
    background: var(--main-color);
}

.frame-content .item .icon svg {
    max-width: 16px;
    max-height: 16px;
}

/* End Framework-page */

/* Start General-page */

.general-page .table-h {
    max-width: 606px;
}

/* End General-page */

/* Start Research-page */

.research-inner {
    max-width: 842px;
    margin: 0 auto;
}

.research-inner .frame-sidebar {
    padding: 41px 59px;
}

/* End Research-page */

/* Start Married-page */

.married-steps {
    border: 1px solid #D4B6FB;
    padding: 41px 27px;
    position: sticky;
    top: 0;
    height: fit-content;
    border-radius: 20px;
}

.married-page .row {
    position: relative;
}

.married-page .row .col-md-4 {
    /* align-self: flex-start; */
}

html,
body {
    overflow-x: hidden;
}

.title-step {
    margin-bottom: 24px;
}

.title-step h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 0;
    font-size: 24px;
    line-height: 34px;
}

.married-steps .steps {
    display: block;
}

.multi-step-form .steps button::after {
    display: none;
}

.married-steps .steps button {
    width: 100%;
    border: 1px solid #EADBFD;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 16px;
}

.married-steps .steps button .icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-family: var(--font-bold);
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    background: var(--main-color);
    opacity: .5;
    margin: 0;
    margin-inline-end: 13px;
}

.married-steps .steps button .text-step-btn {
    max-width: calc(100% - 61px);
    opacity: .5;
    transition: all .4s;
}

.married-steps .steps button .text-step-btn span {
    color: #450B92;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.married-steps .steps button .text-step-btn h3 {
    margin: 0;
    font-family: var(--font-bold);
    color: #000;
    font-size: 20px;
    line-height: 30px;
}

.married-steps .steps button.active .icon,
.married-steps .steps button.active .text-step-btn {
    opacity: 1;
}

.married-steps .steps button:last-child {
    margin: 0;
}

.step-terms .item {
    border: 1px solid #D4B6FB;
    box-shadow: 0px 20px 28px 0px #0000000A;
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 34px 40px;
}

.step-terms .item h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 34px;
}

.step-terms .item p {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
    max-width: 600px;
}

.step-terms .item ul {
    padding-inline-start: 20px;
}

.step-terms .item ul li {
    display: list-item;
    list-style: initial;
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin: 4px 0;
}

.form-group .btn.btn-full {
    width: 100%;
    margin-top: 30px;
}

.form-inner-h {
    border: 1px solid #D4B6FB;
    box-shadow: 0px 20px 28px 0px #0000000A;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 88px 195px;
}

.form-inner-h .step-title-in {
    margin-bottom: 32px;
}

.form-inner-h .step-title-in h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin: 0;
    font-size: 24px;
    line-height: 34px;
}

.form-inner-h .form-group {
    margin-bottom: 20px;
    align-items: center;
    -webkit-align-items: center;
}

.form-inner-h .form-group:last-child {
    margin-bottom: 0;
}

.form-inner-h .form-group label {
    font-weight: 400;
    color: var(--dark-color);
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

.form-inner-h .form-group .form-control {
    background: #FFFFFF;
    border: 1px solid #C5C5C5;
    height: 40px;
    border-radius: 12px !important;
    padding: 8px 6px;
    line-height: normal;
    align-content: center;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
}

.form-inner-h .form-group .form-control:focus {
    box-shadow: none;
}

.form-inner-h .form-group .form-control::after {
    width: 25px;
    height: 25px;
    line-height: 25px;
    top: 0;
    left: 0;
    background: #F1E7FE;
    border-radius: 4px;
    text-align: center;
    font-weight: 300;
    font-size: 14px;
    margin: 7px;
}

.multi-step-form .form-group span.error-text {
    margin-top: 5px;
}

.input-group-btn.input-group-append button.btn.btn-default.btn-secondary.kv-hidden.fileinput-cancel {
    display: none;
}

.input-group-btn.input-group-append .btn.btn-primary.btn-file {
    /* position: absolute; */
    left: 0;
    top: 0;
    min-width: auto;
    padding: 9px 10px;
    background: #F1E7FE;
    color: var(--dark-color);
    margin: -4px 5px;
    font-size: 13px;
    min-height: auto;
    height: 28px;
    border-radius: 6px;
    max-height: max-content;
}

.input-group-btn.input-group-append .btn.btn-primary.btn-file i.fa.fa-folder-open {
    display: none;
}


.file-preview .close.fileinput-remove {
    margin: 10px 5px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: red;
    left: 0;
    right: auto;
}

.file-preview .file-preview-thumbnails {
    display: flex;
    flex-wrap: wrap;
}

.krajee-default .file-preview-other-frame {
    width: 100% !important;
    height: 96px !important;
    line-height: 96px;
    align-items: center;
    -webkit-align-items: center;
}

.krajee-default.file-preview-frame .kv-file-content {
    width: 100%;
    height: 70px;
    line-height: 70px;
}

.krajee-default.file-preview-frame .file-thumbnail-footer {
    height: auto;
    position: initial;
}

.krajee-default .file-upload-indicator {
    position: absolute;
    top: 0;
    color: var(--main-color);
}

.krajee-default.file-preview-frame .file-thumbnail-footer .file-actions {
    overflow: hidden;
    display: none;
}

.krajee-default.file-preview-frame .file-thumbnail-footer .file-actions .btn {
    margin: 0;
    min-width: auto;
    background: transparent;
    color: var(--sec-color);
    box-shadow: none;
    min-height: auto;
    line-height: normal;
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 14px;
    /* border-radius: 6px; */
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.krajee-default.file-preview-frame .file-thumbnail-footer .file-actions .btn i {
    font-weight: 400;
}

.input-group.file-caption-main .input-group-btn .btn.fileinput-remove-button {
    min-width: auto;
    background: #d30000;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 10px 8px;
    border-radius: 6px;
    height: 28px;
    margin-top: -3px;
}

.input-group.file-caption-main .input-group-btn .btn.fileinput-upload {
    /* background: #423d69b3; */
    min-width: auto;
    padding: 9px 10px;
    border-radius: 6px;
    height: 28px;
    margin-top: -3px;
}

.input-group.file-caption-main .input-group-btn .btn.fileinput-remove-button i {
    display: inline-block;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 500;
    font-size: 13px;
}

.input-group.file-caption-main .input-group-btn .btn.fileinput-remove-button span {
    display: none;
}


.input-group.file-caption-main {
    flex-wrap: inherit;
    background: #FFFFFF;
    border: 1px solid #C5C5C5;
    height: 40px;
    border-radius: 12px !important;
    padding: 8px 6px;
    line-height: normal;
    align-content: center;
    color: var(--dark-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.input-group.file-caption-main .input-group-btn {
    display: flex;
    flex-direction: row-reverse;
    padding-inline-start: 28px;
    position: relative;
    margin: 0 !important;
    background: #fff;
}

.input-group.file-caption-main .input-group-btn .btn {
    margin: 0;
    min-height: auto;
    line-height: normal;
    font-size: 14px;
    padding: 10px 20px;
    min-width: 90px;
    background: var(--sec-color);
}

.input-group.file-caption-main .input-group-btn .btn.fileinput-cancel-button {
    display: none;
}

.input-group.file-caption-main .input-group-btn .btn i {
    display: none;
}

.input-group.file-caption-main .file-caption.form-control.kv-fileinput-caption {
    padding: 0;
    border: none;
    border-radius: 0;
    height: auto;
}

.input-group-btn.input-group-append .btn.btn-primary.btn-file input {
    height: auto;
    padding: 0;
}

.krajee-default .file-upload-indicator i {
    color: initial !important;
}

.fieldset:last-child .form-step {
    border: 1px solid #D4B6FB;
    box-shadow: 0px 20px 28px 0px #0000000A;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 88px 195px;
    text-align: center;
}

.fieldset:last-child .form-step .step-title-in {
    margin-bottom: 32px;
}

.fieldset:last-child .form-step .step-title-in h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin: 0;
    font-size: 24px;
    line-height: 34px;
}

.fieldset:last-child .form-step .text-step-inner p, .fieldset:last-child .form-step .text-step-inner label {
    text-align: center;
    margin: 5px auto;
    font-size: 18px;
    line-height: 28px;
    color: #000;
    display: inline-flex;
    gap: 10px;
}

.fieldset:last-child .form-step .text-step-inner p a,
.fieldset:last-child .form-step .text-step-inner p strong {
    color: var(--main-color);
}

.btn.btn-success.btn-done {
    width: 100%;
    margin-top: 20px;
    background: var(--main-color);
}

/* End Married-page */

/* Start Req-page */

.req-page .form-inner-h {
    max-width: 560px;
    margin: 0 auto;
    padding: 72px;
}

/* End Req-page */

/* Start Print-page */

.form-inner-h.prient-inner {
    max-width: 501px;
    margin: 0 auto;
    background: #F1E7FE;
    border: 1px solid #D4B6FB;
    padding: 41px 27px;
}

.form-inner-h.prient-inner .label-h,
.form-inner-h.prient-inner .input-h {
    width: auto;
}

.form-inner-h.prient-inner .input-h {
    width: calc(100% - 80px);
}

.form-inner-h.prient-inner .label-h {
    padding-inline-end: 0;
    width: 80px;
}

.form-inner-h.prient-inner .btn.btn-full {
    margin-top: 12px;
}

/* End Print-page */

/* Start Consuls-page */

.consul-block {
    background: #FFFFFF;
    border: 1px solid #C5C5C5;
    padding: 16px 16px 32px;
    margin: 15px 0;
    height: calc(100% - 30px);
    border-radius: 16px;
    overflow: hidden;
}

.consul-block .img {
    height: 187px;
    overflow: hidden;
    border-radius: 8px;
    transition: all .4s;
}

.consul-block .details {
    padding-top: 20px;
}

.consul-block .details .sub-title {
    background: #F1E7FE;
    padding: 4px 8px;
    display: inline-block;
    font-weight: 400;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
}

.consul-block .details h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin: 8px 0;
    font-size: 24px;
    line-height: 32px;
}

.consul-block .details p {
    color: #454545;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.consul-block .details .readMore {
    margin-bottom: -50px;
    display: block;
    opacity: 0;
    position: relative;
    bottom: -50px;
}

.consul-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: revert;
}

/* End Consuls-page */

/* Start Scales-page */

.consul-block.scale-block .img {
    height: 303px !important;
}

.consul-block.scale-block .details h3 {
    margin: 0 0 8px;
}

.consul-block.scale-block .details .readMore {
    margin-bottom: 0;
    bottom: 0;
    opacity: 1;
}

.consul-block.scale-block .details p {
    max-width: 485px;
}

.p-pages {
    margin-bottom: 48px;
}

.p-pages p {
    max-width: 788px;
    margin: 0 auto 45px;
    text-align: center;
    font-family: var(--font-bold);
    color: #454545;
    font-size: 24px;
    line-height: 32px;
}

/* End Scales-page */

/* Start Single-scale */

.single-scales-inner {
    max-width: 607px;
    margin: 0 auto;
}

.single-scales-title {
    background: #F1E7FE;
    border: 1px solid #D4B6FB;
    border-radius: 16px;
    padding: 33px;
    margin-bottom: 20px;
}

.single-scales-title h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}

.single-scales-lists .item {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #E3E3E3;
    background: #FFFFFF;
    box-shadow: 0px 6px 12px 0px #0000000A;
    padding: 20px;
    border-radius: 8px;
}

.single-scales-lists .item h3 {
    margin: 0;
    font-family: var(--font-bold);
    color: #454545;
    font-size: 18px;
    line-height: 26px;
    max-width: calc(100% - 130px);
}

/* End Single-scale */

/* Start Single-scale2 */

.single-scales-inner2 {
    max-width: 607px;
    margin: 0 auto;
}

.p-pages p:last-child {
    margin-bottom: 0;
}

.single-scales-inner2 .form-group {
    background: #F1E7FE;
    border: 1px solid #EADBFD;
    margin-bottom: 24px;
    padding: 27px 131px;
}

.single-scales-inner2 .form-group>label {
    font-family: var(--font-bold);
    color: #454545;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 26px;
}

.form-group .chooseInputs_H .item {
    position: relative;
    margin-bottom: 7px;
}

.form-group .chooseInputs_H .item:last-child {
    margin: 0;
}

.form-group .chooseInputs_H .item input {
    position: absolute;
    inset: 0;
    z-index: 4;
    opacity: 0;
    cursor: pointer;
}

.form-group .chooseInputs_H .item span {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding: 4px;
    padding-inline-start: 42px;
    z-index: 1;
    display: block;
    position: relative;
    transition: all .4s;
}

.form-group .chooseInputs_H .item span::before,
.form-group .chooseInputs_H .item span::after {
    content: "";
    position: absolute;
}

.form-group .chooseInputs_H .item span::before {
    width: 22.69px;
    height: 22.69px;
    background: #FFFFFF;
    border: 1px solid #D4B6FB;
    right: 0;
    top: 4px;
    border-radius: 50%;
    left: 0;
    margin: 0 11px;
}

.form-group .chooseInputs_H .item span::after {
    inset: 0;
    background: var(--main-color);
    z-index: -1;
    border-radius: 8px;
    opacity: 0;
    transition: all .4s;
}

.form-group .chooseInputs_H .item input:checked+span::after {
    opacity: 1;
}

.form-group .chooseInputs_H .item input:checked+span {
    color: #fff;
}

.form-group .chooseInputs_H .item input:checked+span::before {
    background: var(--main-color);
    box-shadow: inset 0 0 0 5px #fff;
}

.form-group .chooseInputs_H {
    max-width: 208px;
}

.single-scales-inner2 .form-group:last-child {
    border: none;
    padding: 0;
    background: transparent;
    margin: 0;
}

.single-scales-inner2 .form-group:last-child .btn.btn-full {
    margin: 0;
}

/* End Single-scale2 */

/* Start Programes-page */

.programes-page {
    background: var(--dark-color);
}

.p-pages.white-color p {
    color: #F1E7FE;
}

.programes-page .p-pages p {
    font-size: 18px;
    line-height: 26px;
}

.programes-page .all-programes.row {
    margin: 0;
}

.programes-page .all-programes .col-md-4 {
    padding: 0;
}

.all-pages {
    text-align: center;
    margin-top: 70px;
}

.programes-page .all-pages .pagination {
    background: radial-gradient(50% 50% at 50% 50%, rgba(40, 6, 85, 0.1) 0%, #280655 100%);
}

.all-pages .pagination .page-item .page-link {
    width: 35.22px;
    height: 35.22px;
    padding: 0;
    line-height: 35.22px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    border: 1px solid #FFFFFF3D;
    font-size: 16px;
    line-height: 24px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    box-shadow: none !important;
}

.programes-page .all-pages .pagination .page-item .page-link {
    border: 1px solid rgb(255 255 255 / 24%);
    color: #fff;
}

.all-pages .pagination .page-item.active .page-link,
.all-pages .pagination .page-item.prv-btn .page-link,
.all-pages .pagination .page-item.next-btn .page-link {
    background: var(--main-color);
}

.all-pages .pagination .page-item.disabled .page-link {
    opacity: .4;
}

/* End Programes-page */

/* Start Single-programe */

.single-text {
    margin: 0 0 32px;
    background: #FFFFFF;
    border: 1px solid #E3E3E3;
    padding: 40px 25px;
    box-shadow: 0px 20px 28px 0px #00000014;
    border-radius: 16px;
}

.single-text .text-inner h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 32px;
}

.single-text .text-inner p {
    max-width: 402px;
    color: #454545;
    font-weight: 400;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
}

.single-text .text-inner p:last-child {
    margin: 0;
}

.single-text .text-inner ul li {
    color: #000;
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 16px;
    position: relative;
    line-height: 24px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    max-width: 516px;
}

.single-text .text-inner ul li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Pro';
    right: 0;
    left: 0;
    color: #22C55D;
}

.single-imgs .small-img {
    height: 131px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
    cursor: pointer;
}

.single-imgs .small-img::before,
.single-imgs .small-img::after {
    content: "";
    position: absolute;
    inset: 0;
    transition: all .4s;
}

.single-imgs .small-img::before {
    background: var(--dark-color);
    opacity: .7;
}

.single-imgs .small-img::after {
    border: 4px solid #7312F3;
    border-radius: 16px;
    opacity: 0;
}

.single-imgs .big-img {
    height: 433px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.slider-single-nav {
    height: 433px;
    overflow: hidden;
}

.slider-single-nav .swiper-slide {
    width: calc(50% - 10px);
}

.slider-single-nav .swiper-wrapper {
    overflow: hidden;
    width: 100%;
}

.single-imgs-big {
    overflow: hidden;
    position: relative;
}

.single-imgs .swiper-slide.swiper-slide-thumb-active .small-img::before {
    opacity: 0;
}

.single-imgs .swiper-slide.swiper-slide-thumb-active .small-img::after {
    opacity: 1;
}

.single-imgs .big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-imgs .big-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, #280655 100%);
}

.single-imgs .big-img::before {
    content: "\f00e";
    position: absolute;
    inset: 0;
    font-family: 'Font Awesome 6 Pro';
    margin: auto;
    width: 48px;
    height: 48px;
    z-index: 3;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 20px;
}

.single-nav-slider {
    position: absolute;
    bottom: 27px;
    z-index: 5;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.single-nav-slider .single-button-next,
.single-nav-slider .single-button-prev {
    width: 40px;
    height: 40px;
    z-index: 3;
    top: 50%;
    margin: 0;
    padding: 0;
    position: relative;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    transition: all .4s;
}

.single-nav-slider .single-button-next::before,
.single-nav-slider .single-button-prev::before {
    position: absolute;
    inset: 0;
    background: var(--main-color);
    content: "";
    z-index: -1;
    border-radius: 8px;
    transform: rotate(45deg);
    transition: all .4s;
}

.all-pages .pagination {
    background: radial-gradient(50% 50% at 50% 50%, #280655 0%, #280655 100%);
    border: 1px solid #FFFFFF29;
    padding: 8px;
    border-radius: 50px;
    gap: 8px;
    display: inline-flex;
}

/* End Single-programe */

/* Start Courses-page */

.body-inner .courses-block {
    margin: 10px 0;
}

/* End Courses-page */

/* Start Single-course */

.modal-body .form-inner-h {
    padding: 73px 63px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

.courseModal .modal-dialog {
    max-width: 542px;
}

.courseModal .modal-dialog .modal-content {
    border: 1px solid #D4B6FB;
    border-radius: 16px;
}

.courseModal .modal-dialog .modal-content .modal-body {
    padding: 0;
    background: transparent;
}

.courseModal button.btn-close {
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    margin: -16px;
    background: #EADBFD;
    opacity: 1;
    border-radius: 50%;
}

.modal-body .form-inner-h .form-group label {
    margin-bottom: 5px;
}

/* End Single-course */

/* Start News-page */

.body-inner .news-block {
    margin: 10px 0;
}

/* End News-page */

/* Start Single-news */

.single-news-inner {
    max-width: 1022px;
    margin: 0 auto;
}

.single-title-news {
    margin-bottom: 43px;
}

.single-title-news .date-h {
    background: #F1E7FE;
    margin-bottom: 12px;
    padding: 5px;
}

.single-title-news h3 {
    font-family: var(--font-bold);
    color: var(--dark-color);
    font-size: 48px;
    margin: 0;
    line-height: 62.4px;
}

.single-news-inner .img {
    height: 433px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
}

.single-news-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.single-news-inner .text-inner p {
    max-width: 875px;
    color: #454545;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 24px;
}

.single-news-inner .text-inner h3 {
    margin-block: 43px 32px;
    font-family: var(--font-bold);
    font-size: 24px;
    color: var(--dark-color);
    line-height: 34px;
}

.single-news-inner .text-inner ul li {
    color: #000;
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 16px;
    position: relative;
    line-height: 24px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    max-width: 516px;
}

.single-news-inner .text-inner ul li::before {
    content: "\f00c";
    font-family: 'Font Awesome 6 Pro';
    right: 0;
    left: 0;
    color: #22C55D;
}

/* End Single-news */

/* Start Review-page */

.body-inner .review-block {
    margin: 10px 0;
}

/* End Review-page */

/* Start Careers-page */

.form-page2 .form-inner-h {
    max-width: 542px;
    margin: 0 auto;
    padding: 65px;
}

.form-page2 .form-inner-h .form-group label {
    margin-bottom: 4px;
}

.file-upload-group.form-control {
    position: relative;
}

.file-upload-group.form-control .file-uploadH {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
}

.form-inner-h .form-group  .file-upload-group.form-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-upload-group.form-control label.for-sm-input-file {
    margin: 0;
    width: 29px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    align-content: center;
    border-radius: 4px;
    background: #F1E7FE;
    font-size: 10px;
    color: var(--main-color);
}

.form-inner-h .form-group textarea.form-control {
    height: 71px;
}

.form-page2 .form-inner-h .form-group .btn {
    margin-top: 16px;
}

/* End Careers-page */

/* Start Contact-page */

.contact-page.body-inner {
    padding-bottom: 0;
}

.contact-page .form-inner-h {
    margin-bottom: -100px;
}

.fieldset:last-child .form-step .text-step-inner label input {
    width: 15px;
    accent-color: var(--main-color);
}

.form-inner-h .form-group .file-upload-group.form-control .wpcf7-form-control-wrap {
    position: absolute;
    inset: 0;
}

.reviews-all .slick-track {
    display: flex;
}

.review-block {
    height: 100%;
}

.news-slider .slick-track {
    display: flex;
}

.news-all .item .news-block {
    height: 100%;
}

.form-inner-h .form-group .file-upload-group.form-control .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    position: relative;
    top: 36px;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
}

/* End Contact-page */


/* Start Hover */

@media (min-width: 992px) {

    .btn:hover,
    .input-group-btn.input-group-append .btn.btn-primary.btn-file:hover,
    .btn.btn-success.btn-done:hover {
        background: #5C0EC2;
        color: #fff !important;
        border-color: #5C0EC2;
    }

    .btn.btn-border:hover {
        background: var(--main-color);
        border-color: var(--main-color);
    }

    .courses-block:hover .details .details-in .more-btn {
        opacity: 1;
        margin-bottom: 0;
        margin-top: 10px;
    }

    .courses-block:hover .details {
        background: var(--main-color);
    }

    .programe-block:hover .details .details-in {
        opacity: 1;
        margin-bottom: 0;
    }

    .programe-block:hover .img img {
        transform: scale(1.1) translate(-10px, 10px);
    }

    .slick-prev:hover::after,
    .slick-next:hover::after {
        opacity: .3;
    }

    .news-block:hover {
        border: 2px var(--main-color) solid;
        transition: all .3s;
    }

    .news-block:hover .date-h {
        border-color: #D4B6FB;
        padding: 4px 8px;
        background: #F1E7FE;
    }

    .news-block:hover .details h3 {
        color: var(--main-color);
    }

    .news-block:hover .details .details-btn {
        opacity: 1;
        bottom: 0;
        margin-bottom: 0;
    }

    .links-f ul li a:hover {
        color: var(--main-color);
    }

    .info-f ul li:hover {
        border-color: #D4B6FB;
    }

    .s-h a:hover {
        background: var(--main-color);
        border-color: var(--main-color);
    }

    .upTop:hover {
        background: var(--dark-color);
        color: #fff;
    }

    .married-steps {
        width: calc(100% - 30px);
        margin-inline-start: auto;
    }

    .form-inner-h .form-group .form-control:focus {
        border-color: var(--main-color);
    }

    .consul-block:hover .details .readMore {
        opacity: 1;
        margin-bottom: 0;
        bottom: 0;
    }

    .consul-block:hover .img {
        height: 261px;
    }

    .single-nav-slider .single-button-next:hover,
    .single-nav-slider .single-button-prev:hover {
        opacity: .3;
    }
    
    .banner-block .banner-inner .banner-text h1 {
        max-width: 56.25%;
    }
    
    .courses-block:hover .details .details-in .more-btn:hover {
        background: #5C0EC2;
        color: #fff;
    }
    
    .courses-page.body-inner {
        padding-block: 140px;
    }
}

/* End Hover */