@import url(styles.css);

/* Start Fonts */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* End Fonts */

:root {
    --main-color: #9E3088;
    --sec-color: #8b2877;
    --dark-color: #000;
    --bg-color: #F9EBF6;
    --bg-color2: #EBFAF4;
    --font-body: "Nunito Sans", 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: var(--sec-color);
    -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;
}

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 */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 285px;
    height: 100vh;
    padding: 0;
    /* padding-top: 30.1px; */
    /* padding-bottom: 53.1px; */
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: #fff;
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: #1D1F1F40;
    transition: all .3s;
    opacity: 0;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 70px);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    /* margin: 0 0 20px; */
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 17px;
    font-weight: 500;
    line-height: 27px;
    color: #333333;
    padding: 16px 24px;
    display: block;
    border-bottom: 1px #eeeeee12 solid;
    text-align: start;
    text-transform: capitalize;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 99999999;
    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: rgba(0, 0, 0, 0.90);
    -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;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 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;
    /* margin-top: 27px; */
    gap: 32px;
}

header.sticky {
    position: relative;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 32px 0 24px;
    box-shadow: 0px 2px 12px 0px #00000026;
    top: 0;
    background: #fff;
    transition: all .4s;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    margin: 24px 0;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #DB3A3D;
    line-height: 38px;
    text-align: center;
    position: absolute;
    left: -38px;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
}

.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 {
    position: relative;
}

.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: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    /* width: 50%; */
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    /* color: #fff; */
    /* text-decoration: underline; */
}

.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;
    color: #1D1F1F;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    border-bottom: 4px solid transparent;
}


.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 298px;
    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(--main-color);
    border-color: var(--main-color);
    font-weight: 800;
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 12px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 206px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 14px 0px #0000001A;
    border-radius: 6px;
    padding: 19px 9px;
    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 {
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 8px 0;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #E6E6E6;
    padding-inline-start: 20px;
}

.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;
    justify-content: end;
    margin-bottom: 24px;
}

.lang-h:hover {
    /* color: #fff; */
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 18px;
    height: 4px;
    margin: 2.5px 0;
    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: var(--dark-color);
    transition: all .5s;
    top: 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) {
    /* width: 25px; */
}

.mobile-nav-toggler .lines i:nth-child(1) {
    /* margin-inline-start: auto; */
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: 2px transparent solid;
    padding: 12px 33px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 167px;
    background: var(--main-color);
    min-height: 54px;
    border-radius: 8px;
    color: #fff;
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    box-shadow: none !important;
    z-index: 1;
    transition: all .4s;
    gap: 20px;
}

header .btn {
    /* font-size: 15px; */
    /* padding: 8px 24px; */
}

.btn::before,
.btn::after,
.btn span::before,
.btn span::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25.25%;
    height: 0;
    background-color: var(--sec-color);
    transition: 0.5s ease-in-out;
    z-index: -1;
}

.btn::before {
    left: 0;
}

.btn::after {
    left: 50%;
}

.btn:hover::before,
.btn:hover::after,
.btn:hover span::before,
.btn:hover span::after {
    /* height: 80px; */
}

.btn span::before,
.btn span::after {
    top: auto;
    bottom: 0;
}

.btn span::before {
    left: 25%;
}

.btn span::after {
    left: 75%;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box-btn.search-box-outer {
    color: #fff;
    font-size: 20.46px;
    font-weight: 900;
    line-height: 16px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    display: none;
}

.nav-inner-h {
    max-width: calc(100% - 380px);
    width: 100%;
}

.head-inner .menu-left form {
    width: 343px;
    position: relative;
}

.head-inner .menu-left form input {
    width: 100%;
    height: 48px;
    padding: 12px;
    padding-inline-start: 48px;
    border-radius: 12px;
    border: 1px solid #666666;
}

.head-inner .menu-left form i {
    position: absolute;
    left: 0;
    top: 0;
    margin: 17px 22px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    transition: all .4s;
}


.head-inner .menu-left form svg {
     position: absolute;
    left: 0;
    top: 0;
    margin: 13px 15px;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    transition: all .4s;
    width: 20px;
    height: 20px;
}

.head-inner .menu-left form input:focus {
    border-color: var(--sec-color);
}

.btn:hover {
    background: transparent;
    color: var(--sec-color);
    border-color: var(--sec-color);
}

.head-inner .menu-left form input:focus {
    border-color: var(--main-color);
}

.header-med .head-inner ul li a::before {
    /* content: ""; */
}

.lang-h a {
    display: inline-flex;
    font-weight: 500;
    align-items: center;
    font-size: 20px;
    gap: 13px;
    line-height: 30px;
    color: #141414;
}

.lang-h a i {
    font-weight: 300;
}

.header-med .head-inner .lang-h .sub-menu {
    position: absolute;
    display: block;
    min-width: 160px;
    background: #fff;
    z-index: 99;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
    transition: none;
}

.header-med .head-inner .lang-h .sub-menu li a {
    display: flex;
    font-size: 15px;
    border-bottom: 1px #f3f3f3 solid;
    padding: 5px 0;
}

header.sticky.active {
    position: fixed;
}

/* End Header */

/* Start Banner-h */

.banner-h .row {
    min-height: 714px;
    align-items: center;
    padding-block: 143px;
}

.banner-h .overlay-img::before,
.banner-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(89.88deg, #FFFFFF 0.1%, rgba(255, 255, 255, 0) 64.59%);*/
     background: linear-gradient(89.88deg, #ffffffd9 40%, rgba(255, 255, 255, 0) 65.59%);
}

.text-banner {
    max-width: 850px;
}

.text-banner h1 {
    color: var(--main-color);
    font-weight: 800;
    margin-bottom: 32px;
    font-size: 64px;
    line-height: 87px;
}

.text-banner p {
    color: #1D1F1F;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    margin: 32px 0;
}

.search-banner-h {
    margin: 32px 0 0;
    max-width: 651px;
    width: 100%;
    background: #FCFCFC;
    box-shadow: 0px 0px 10px 0px #97979766;
    padding: 36px;
    border-radius: 16px;
}

.search-banner-h form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-banner-h form .btn {
    min-width: 212px;
}

.search-banner-h form input {
    max-width: calc(100% - 236px);
    width: 100%;
    border: 1px solid #666666;
    height: 48px;
    border-radius: 8px;
    padding: 12px 16px;
}

.search-banner-h form input::placeholder {
    color: #666666;
}

.banner-h .overlay-img::before {
    background: linear-gradient(0deg, #FFFFFF 0.45%, rgba(255, 255, 255, 0.456702) 9.26%, rgba(255, 255, 255, 0) 100%);
}

/* End Banner-h */

/* Start Categories-h */

.categories-h {
    padding: 100px 0;
}

.title {
    margin-bottom: 48px;
}

.title h3 {
    color: #1D1F1F;
    font-weight: 500;
    margin: 0;
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 10px;
}

.title h3 span {
    color: var(--main-color);
    position: relative;
    padding-bottom: 10px;
}

.title h3 span::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 4px;
    left: 0;
    right: 0;
    /*width: 130px;*/
    width: 100%;
    background: var(--main-color);
}

.title p {
    margin-top: 24px;
    max-width: 954px;
    color: #444444;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.title.text-center p {
    margin: 24px auto 0;
}

.cat-block {
    margin-bottom: 54px;
    height: calc(100% - 54px);
    background: #F0F8F0;
    border-radius: 36px;
    padding: 24px 10px;
    text-align: center;
    overflow: hidden;
    transition: all .4s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
     border:1px solid #F0F8F0 ;
}

.cat-block .img {
    width: 64px;
    height: 64px;
    line-height: 40px;
    text-align: center;
    margin: 0 auto;
    background: #6EBE6E;
    border-radius: 12px;
    padding: 12px;
    transition: all .4s;
   
}

.cat-block .img img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.cat-block .details {
    padding: 20px 0;
    transition: all .4s;
}

.cat-block .details h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
    transition: all .4s;
}

.cat-block .details span {
    color: #1D1F1F;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    transition: all .4s;
    /* overflow: hidden; */
    display: block;
}

.categories-h .col-md-3:nth-child(3) .cat-block,
.categories-h .slick-track .item:nth-child(1) .cat-block {
    background: #ECF7FC;
    border:1px solid #ECF7FC ;
}

.categories-h .col-md-3:nth-child(3) .cat-block .img,
.categories-h .slick-track .item:nth-child(1) .cat-block .img {
    background: #43ADE3;
    /*border:1px solid #43ADE3 ;*/
}

.categories-h .col-md-3:nth-child(4) .cat-block,
.categories-h .slick-track .item:nth-child(2) .cat-block {
    background: #FCF2ED;
     border:1px solid #FCF2ED ;
}

.categories-h .col-md-3:nth-child(4) .cat-block .img,
.categories-h .slick-track .item:nth-child(2) .cat-block .img {
    background: #DF7D4F;
}

.categories-h .col-md-3:nth-child(5) .cat-block,
.categories-h .slick-track .item:nth-child(3) .cat-block {
    background: #FCEDF4;
     border:1px solid #FCEDF4 ;
}

.categories-h .col-md-3:nth-child(5) .cat-block .img,
.categories-h .slick-track .item:nth-child(3) .cat-block .img {
    background: #E05193;
}

.categories-h .col-md-3:nth-child(6) .cat-block,
.categories-h .slick-track .item:nth-child(4) .cat-block {
    background: #FEF9E5;
    border:1px solid #FEF9E5 ;
}

.categories-h .col-md-3:nth-child(6) .cat-block .img,
.categories-h .slick-track .item:nth-child(4) .cat-block .img {
    background: #F2C900;
}

.categories-h .col-md-3:nth-child(7) .cat-block,
.categories-h .slick-track .item:nth-child(5) .cat-block {
    background: #F2F2F2;
    border:1px solid #F2F2F2 ;
}

.categories-h .col-md-3:nth-child(7) .cat-block .img,
.categories-h .slick-track .item:nth-child(5) .cat-block .img {
    background: #808080;
}

.categories-h .col-md-3:nth-child(8) .cat-block,
.categories-h .slick-track .item:nth-child(6) .cat-block {
    background: #FFE9E7;
    border:1px solid #FFE9E7 ;
}

.categories-h .col-md-3:nth-child(8) .cat-block .img,
.categories-h .slick-track .item:nth-child(6) .cat-block .img {
    background: #FF2712;
}

.categories-h .col-md-3:nth-child(9) .cat-block,
.categories-h .slick-track .item:nth-child(7) .cat-block {
    background: #EDF7F6;
     border:1px solid #EDF7F6 ;
}

.categories-h .col-md-3:nth-child(9) .cat-block .img,
.categories-h .slick-track .item:nth-child(7) .cat-block .img {
    background: #4CACAB;
}

.res-only {
    display: none;
}

.cat-block .overlay-img::after,
.cat-block .overlay-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #6EBE6EA6;
}

.cat-block .overlay-img::before {
    background: linear-gradient(179.89deg, rgba(4, 4, 4, 0) 37.98%, rgba(0, 0, 0, 0.225) 76.36%);
}

.cat-block:hover {
    background: transparent !important;
}

.cat-block:hover .details {
    padding-bottom: 0;
}

.cat-block:hover .details span {
    margin-bottom: -30px;
    opacity: 0;
}

.cat-block:hover .details h3 {
    margin: 0;
    color: #fff;
}

.categories-h .col-md-3:nth-child(3) .cat-block .overlay-img::after {
    background: #43ADE3A6;
}

.categories-h .col-md-3:nth-child(4) .cat-block .overlay-img::after {
    background: #DF7D4FA6;
}

.categories-h .col-md-3:nth-child(5) .cat-block .overlay-img::after {
    background: #E05193A6;
}

.categories-h .col-md-3:nth-child(6) .cat-block .overlay-img::after {
    background: #F2C900A6;
}

.categories-h .col-md-3:nth-child(7) .cat-block .overlay-img::after {
    background: #808080A6;
}

.categories-h .col-md-3:nth-child(8) .cat-block .overlay-img::after {
    background: #FF2712A6;
}

.categories-h .col-md-3:nth-child(9) .cat-block .overlay-img::after {
    background: #4CACABA6;
}

/* End Categories-h */

/* Start Partners-h */

.partners-h {
    padding-bottom: 100px;
}

.partners-h .row {
    box-shadow: 0px 0px 20px 0px #0000001F;
    margin: 0;
    padding: 80px 40px;
    border-radius: 24px;
}

.btn-center {
    text-align: center;
    margin-top: 48px;
}


.part-block {
    display: flex;
    align-items: center;
    padding: 32px;
    height: 150px;
}

.part-block img {
    max-height: 86px;
    height: 86px;
    object-fit: contain;
    object-position: center;
}

/* Start Partners-h */

/* Start Courses-h */

.courses-h {
    background: var(--bg-color2);
    padding: 80px 0;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.course-block {
    margin-bottom: 54px;
    height: calc(100% - 54px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
    transition: all .4s;
}

.course-block .img-block {
    height: 410px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.course-block .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.course-block .img-block .alert-h {
    position: absolute;
    left: 0;
    top: 0;
    margin: 16px;
    min-width: 180px;
    background: #DB3A3D;
    text-align: center;
    height: 30px;
    align-content: center;
    color: #fff;
    border-radius: 2px;
    font-size: 16px;
    line-height: 24px;
}

.course-block .img-block .alert-h::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #DB3A3D;
    transform: rotate(45deg);
    margin: auto 0;
    display: table;
}

.course-block .details {
    padding: 16px;
}

.course-block .details .title-block {
    margin-bottom: 4px;
}

.course-block .details .title-block>span {
    color: #486AF2;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.course-block .details .title-block h3 {
    color: #333333;
    font-weight: 700;
    margin: 4px 0;
    font-size: 24px;
    line-height: 32px;
}

.rate-h {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rate-h h5 {
    margin: 0;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.rate-h .stars-h {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 10px;
    color: #FEB325;
}

.rate-h .stars-h span {
    margin-inline-start: 6px;
    font-size: 14px;
    color: #A5A5A5;
}

.price-h {
    margin-bottom: 16px;
}

.price-h h3 {
    color: #DB3A3D;
    font-weight: 700;
    margin: 0;
    font-size: 20px;
    line-height: 26px;
}

.logo-block {
    /*max-width: 224px;*/
    max-width: 58.6%;
    height: 130px;
    display: flex;
}

.logo-block img {
    max-height: 90%;
    object-fit: contain;
    object-position: center;
}

.courses-h .btn-center {
    margin: 0;
}

.course-block:hover {
    box-shadow: 0px 0px 20px 0px #00000033;
    transform: scale(1.05);
}

/* End Courses-h */

/* Start Students-h */

.students-h {
    padding-block: 100px;
}

.all-students .item {
    position: relative;
}

.all-students .student-block {
    max-width: 284px;
    margin: 0 auto 20px;
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px #0000001F;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    position: relative;
    transition: all .4s;
}

.all-students .student-block .img {
    border-radius: 12px;
    overflow: hidden;
    height: 214px;
}

.all-students .student-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.all-students .student-block .details {
    margin-top: 24px;
}

.all-students .student-block .details h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 40px;
}

.all-students .student-block .details span {
    color: #444444;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.all-students .student-block::before,
.all-students .student-block::after {
    content: "\f10e";
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    position: absolute;
    font-size: 25px;
    color: #1D1F1F;
    margin: -10px -35px;
    transition: all .4s;
    opacity: 0;
}

.all-students .student-block::before {
    left: 0;
    top: 0;
    transform: scaleX(-1);
}

.all-students .student-block::after {
    right: 0;
    bottom: 0;
}

.all-students .student-block:hover::before,
.all-students .student-block:hover::after,
.all-students .item.slick-current.slick-active+.slick-active .student-block::after,
.all-students .item.slick-current.slick-active+.slick-active .student-block::before {
    opacity: 1;
}

.all-students .item.slick-current.slick-active+.slick-active .student-block,
.all-students .student-block:hover {
    background: #F3D8EE;
}

ul.slick-dots {
    position: relative;
    bottom: 0;
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

ul.slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

ul.slick-dots li button {
    width: 16px;
    height: 16px;
    margin: 0 8px;
    border-radius: 50%;
    background: #D6D6D6;
}

ul.slick-dots li button::before {
    display: none;
}

ul.slick-dots li.slick-active button {
    background: var(--main-color);
}

.slick-dotted.slick-slider {
    margin: 0;
}

.pragraph-h {
    margin-top: 28px;
}

.pragraph-h p {
    margin: 0 auto;
    max-width: 954px;
    color: #444;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

/* End Students-h */

/* Start Featured-h */

.featured-h {
    padding-block: 80px;
    background: var(--bg-color);
}

.featured-h .course-block .img-block {
    height: 338.08px;
}

.featured-h .btn-center {
    margin: 0;
}

/* End Featured-h */

/* Start Counter-h */

.counter-h {
    margin-top: 100px;
    background: #F8F8F8;
    padding-block: 80px;
}

.counter-block {
    text-align: center;
    margin: 20px 0;
}

.counter-block .counter-item {
    font-weight: 800;
    font-size: 64px;
    line-height: 87px;
    margin: 0;
    background: linear-gradient(100.83deg, #9E3088 21%, #FF88EF 93.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-block h5 {
    color: #444444;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    display: inline-block;
    margin: 0;
}

/* End Counter-h */

/* Start Blogs-h */

.blogs-h {
    padding-block: 100px 164px;
}

.blogs-h .title {
    margin-bottom: 0px;
}

.all-blogs .item {
    padding: 68px 12px;
}

.blog-block .blog-block-in {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all .4s;
}

.blog-block .img,
.blog-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-block .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 4, 4, 0) 53.69%, rgba(0, 0, 0, 0.75) 79.05%);
}

.blog-block .details {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 32px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.blog-block .details h3 {
    margin: 0;
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    width: calc(100% - 64px - 16px);
    line-height: 32px;
    vertical-align: middle;
}

.blog-block .details i {
    width: 64px;
    line-height: 64px;
    height: 64px;
    text-align: center;
    align-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 12px;
    color: #fff;
    font-size: 29.17px;
}

.blog-block {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    transition: all .4s;
}

.blog-block .btn {
    transition: all .4s;
    height: 54px;
    overflow: hidden;
    min-height: auto;
    padding: 0;
    opacity: 0;
    margin-top: -70px;
}

.all-blogs .slick-track .item:nth-child(even) .blog-block {
    flex-direction: column-reverse;
}

/* End Blogs-h */

/* Start Follow-h */

.follow-h {
    background: var(--main-color);
    text-align: center;
    padding-block: 16px;
}

.follow-h .follow-inner h3 {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    position: relative;
    padding-bottom: 13px;
    margin-bottom: 18px;
}

.follow-h .follow-inner h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #fff;
    width: 130px;
}

.s-h {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.s-h a {
    width: 32px;
    height: 32px;
    align-content: center;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    color: var(--main-color);
    font-size: 20px;
}

.s-h a i {
    line-height: 32px;
}

.s-h a:hover {
    background: var(--sec-color);
    color: #fff;
    box-shadow: 0 0 20px rgb(255 255 255 / 10%);
}

/* End Follow-h */

/* Start Footer */

.footer-top {
    padding-block: 59px 24px;
}

.logo-f {
    display: block;
    max-width: 298.02px;
    margin-bottom: 31px;
}

.des-f p {
    color: #1D1F1F;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.foot-block-f .s-h {
    justify-content: start;
    margin-top: 34px;
}

.foot-block-f .s-h a {
    background: var(--main-color);
    color: #fff;
}

.foot-block-f .s-h a:hover {
    background: var(--sec-color);
}

.foot-block h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 30px;
}

.links-f ul li a {
    display: inline-block;
    font-weight: 400;
    color: #1D1F1F;
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 8px;
        text-transform: capitalize;
}

.links-f ul li.current-menu-item a {
    font-weight: 800;
    color: var(--main-color);

}

.links-f ul li a:hover {
    color: var(--main-color);
}

.footer-bottom .row {
    margin: 0;
    padding: 24px 0;
    border-top: 1px solid #1D1F1F;
}

.copy-right p {
    color: #1D1F1F;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.cat-block:hover .img {
    background: transparent !important;
}

/* End Footer */

/* Start Courses-details-page */

.banner-logo {
    max-width: 336.96px;
    margin-bottom: 35px;
}

.btns-flex {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 24px;
}

.btns-flex .btn {
    min-width: 316px;
}

.btn.btn-border {
    background: transparent;
    border-color: var(--main-color);
    color: var(--main-color);
    border-width: 1px;
}

.breadcrumb-h {
    margin-top: 32px;
}

.breadcrumb-h ul {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.breadcrumb-h ul li a,
.breadcrumb-h ul li span {
    color: var(--main-color);
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    line-height: 32px;
    position: relative;
        text-transform: capitalize;
}

.breadcrumb-h ul li a::after {
    content: "\f105";
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    right: -30px;
    top: 1px;
}

.courses-details-links {
    padding: 52px 0;
    box-shadow: 0px 2px 20px 0px #0000001F;
}

.courses-details-links .links-inner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.courses-details-links .links-inner ul li a {
    color: #666;
    font-weight: 700;
    font-size: 24px;
    display: inline-block;
    line-height: 32px;
    text-transform: capitalize;
}

.courses-details-links .links-inner ul li a:hover {
    color: var(--main-color);
}

.courses-description-h {
    padding-block: 100px;
}

.courses-des h1 {
    color: #1D1F1F;
    font-weight: 800;
    margin-bottom: 40px;
    font-size: 64px;
    line-height: 87px;
}

.courses-des .img {
    height: 397px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
}

.courses-des .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.courses-des .title {
    margin-bottom: 24px;
}

.courses-des p {
    font-weight: 500;
    color: #1D1F1F;
    font-size: 24px;
    line-height: 32px;
}

.courses-sidebar {
    border: 2px solid #EEEEEE;
    border-radius: 24px;
    overflow: hidden;
}

.courses-sidebar .sidebar-title {
    background: var(--main-color);
    padding: 28px 40px;
}

.courses-sidebar .sidebar-title h3 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

.price-courses {
    padding: 32px 0 10px;
    text-align: center;
}

.price-courses h3 {
    margin: 0;
    color: #1D1F1F;
    font-weight: 700;
    font-size: 40px;
    line-height: 26px;
}

.sidebar-items .sidebar-item {
    border-bottom: 1px solid #D6D6D6;
    padding: 16px 40px;
    padding-inline-end: 20px;
}

.sidebar-items .sidebar-item p {
    color: #1D1F1F;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    display: flex;
    gap: 12px;
}

.sidebar-items .sidebar-item p span {
    white-space: nowrap;
    color: var(--main-color);
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
}

.sidebar-btn {
    padding: 32px 54px 40px;
}

.sidebar-btn .btn {
    width: 100%;
}

.collapse-content {
    padding-bottom: 100px;
}

.collapse-content .btn-collapse {
    border: 1px solid var(--main-color);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px !important;
    color: #1D1F1F;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    box-shadow: none;
    background: transparent;
}

.collapse-content .btn-collapse::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    transition: all .4s;
    background: transparent;
    margin: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.collapse-content .btn-collapse.collapsed {
    border: 1px solid #1D1F1F;
}

.collapse-content .btn-collapse::after {
    transform: rotate(180deg);
    color: var(--main-color);
}

.collapse-content .btn-collapse.collapsed::after {
    transform: none;
    color: initial;
}

.collapse-inner {
    margin: 0;
    padding: 40px 25px;
    background: #F8F8F8;
}

.collapse-title {
    margin-bottom: 24px;
}

.collapse-text {
    padding-inline: 40px;
}

.collapse-title span {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--main-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 24px;
}

.collapse-title h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin: 0;
    font-size: 40px;
    line-height: 50px;
}

.collapse-text p {
    color: #1D1F1F;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    margin: 24px 0;
}

.collapse-text h4 {
    color: var(--main-color);
    font-weight: 700;
    margin: 24px 0;
    font-size: 24px;
    line-height: 32px;
}

.collapse-text ul {
    padding-inline-start: 20px;
}

.collapse-text ul li {
    display: list-item;
    list-style: disc;
    color: #1D1F1F;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    vertical-align: middle;
    margin: 3px 0;
}

.collapse-text .btn {
    margin-top: 24px;
    min-width: 245px;
}

.courses-content-inner ul {
    padding-inline-start: 20px;
}

.courses-content-inner ul li {
    display: list-item;
    list-style: disc;
    color: #1D1F1F;
    font-weight: 500;
    margin: 24px 0;
    font-size: 24px;
    line-height: 32px;
}

.courses-req-h {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 133.25%);
    padding-block: 40px 80px;
}

.courses-content-h {
    padding-bottom: 80px;
}

.courses-content-inner .btn {
    min-width: 316px;
}

.courses-enroll-h {
    background: linear-gradient(180deg, #FFFFFF -26.52%, #EBFAF4 106.88%);
    padding-block: 40px 80px;
    margin: 100px 0;
}

.courses-content-inner .title {
    margin-bottom: 24px;
}

.courses-content-inner p {
    color: #1D1F1F;
    font-weight: 500;
    margin: 24px 0;
    font-size: 24px;
    line-height: 32px;
}

.courses-content-inner .btns-flex {
    margin-top: 48px;
}

.courses-method-h {
    padding-block: 40px;
    margin: 100px 0 0;
}

.courses-rat-h {
    padding-block: 100px 140px;
}

@media (min-width: 576px) {
    .applyModal .modal-dialog {
        max-width: 1112px;
        margin: 1.75rem auto;
    }
}

.applyModal .modal-body {
    padding: 0;
}

.applyModal .modal-content {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #EEEEEE;
}

.applyModal .title-modal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--main-color);
    padding: 28px 40px;
}

.applyModal .title-modal h3 {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
}

.applyModal .btn-close {
    filter: brightness(0) invert(1);
}

.modal-form-item {
    border-bottom: 1px solid #D6D6D6;
    padding: 16px 40px;
    margin: 0;
}

.title-form {
    margin-block: 40px 16px;
}

.title-form h3 {
    margin: 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

.modal-form-item .form-group {
    margin: 0;
}

.form-group label {
    margin-bottom: 8px;
    color: #1D1F1F;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.form-group label>span {
    color: #DB3A3D;
}

.numb-ph {
    display: flex;
    gap: 8px;
}

.form-group .numb-ph .small-width {
    width: 97px;
    line-height: normal;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 12px; */
    color: #666;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.numb-ph .small-width::after {
    position: relative;
    top: 0;
    margin: 0;
    color: inherit;
    left: 0;
    right: 0;
    font-weight: 300;
    font-size: 14px;
}

.form-group .form-control:focus {
    box-shadow: none;
    border-color: var(--main-color);
}

.nice-select .list {
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
}

.checkBoxH {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 54px;
}

.form-group .checkBoxH label {
    margin: 0;
    width: 40%;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.form-group .checkBoxH label span {
    color: inherit;
}

.form-group .checkBoxH label input {
    width: 20px;
    height: 20px;
    accent-color: var(--main-color);
}

.form-group .file-upload-group.form-control {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    gap: 16px;
}

.form-group .file-upload-group.form-control .file-uploadH {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    cursor: pointer;
}

.form-group .file-upload-group.form-control label {
    margin: 0;
    background: #486AF2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    min-width: 122px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

i.fa.fa-info {}

.alret-input {
    margin-top: 8px;
}

.alret-input p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
}

.form-group .agree-h {
    display: flex;
    gap: 12px;
    margin-bottom: 64px;
    align-items: center;
}

.form-group .agree-h input {
    width: 20px;
    height: 20px;
    accent-color: var(--main-color);
}

.form-group .agree-h p {
    max-width: calc(100% - 32px);
    color: #000;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.alert-form-bottom p {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.modal-form-item .form-group button.btn {
    display: table;
    margin: 32px auto;
}

/* End Courses-details-page */

/* Start Blog-details-page */

.blogs-details-page-h {
    padding: 100px 0;
}

.blog-details-inner {
    border: 1px solid #D6D6D6;
    border-radius: 24px;
    padding: 32px 24px;
}

.blog-details-inner .blog-info ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 32px;
}

.blog-details-inner .blog-info ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.blog-details-inner .blog-info ul li i {
    font-size: 14px;
}

.blog-details-inner .blog-text h2,
.blog-details-inner .blog-text h3 {
    color: #1D1F1F;
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 24px;
}

.blog-details-inner .blog-text p {
    color: #1D1F1F;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0;
}

.blog-details-inner .blog-text .blog-img {
    margin: 40px 0;
    height: 397px;
    border-radius: 24px;
    overflow: hidden;
}

.blog-details-inner .blog-text .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-more {
    margin-block: 56px 16px;
}

.title-blog-in {
    text-align: center;
    margin-bottom: 40px;
}

.title-blog-in h3 {
    color: var(--main-color);
    font-weight: 700;
    margin: 0;
    font-size: 40px;
    line-height: 50px;
}

.blog-imgs .blog-img {
    height: 277px;
    border-radius: 16px;
    overflow: hidden;
}

.blog-imgs .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-details-more .blog-imgs {
    margin-bottom: 40px;
}

.blog-details-inner .blog-text ul {
    padding-inline-start: 20px;
}

.blog-details-inner .blog-text ul li {
    display: list-item;
    list-style: disc;
    font-weight: 400;
    color: #1D1F1F;
    font-size: 20px;
    margin: 2px 0;
    line-height: 30px;
}

.comments-h {
    border-top: 1px solid #D6D6D6;
    padding-top: 40px;
}

.comments-h .title {
    margin-bottom: 24px;
}

.all-comments .item-comment {
    display: flex;
    align-items: center;
    padding: 24px 12px;
    border-bottom: 1px solid #D6D6D6;
}

.all-comments .item-comment .img {
    width: 142px;
    height: 135px;
    overflow: hidden;
    border-radius: 8px;
}

.all-comments .item-comment .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.all-comments .item-comment .details {
    width: calc(100% - 142px);
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
}

.all-comments .item-comment .details .comment-in {
    max-width: calc(100% - 120px);
}

.all-comments .item-comment .details .comment-in h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
}

.all-comments .item-comment .details .comment-in .date-h {
    color: #666;
    font-weight: 400;
    display: flex;
    font-size: 12px;
    align-items: center;
    line-height: 18px;
    gap: 5px;
    margin-bottom: 8px;
}

.all-comments .item-comment .details .comment-in .date-h i {
    font-size: 14.33px;
}

.all-comments .item-comment .details .comment-in p {
    color: #444;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.all-comments .item-comment .details .comment-btn .btn {
    min-width: 108px;
    min-height: 40px;
    padding: 8px 18px;
    gap: 8px;
    font-size: 16px;
}

.all-comments .item-comment .details .comment-btn .btn i {
    transform: scaleX(-1);
}

.add-comments {
    padding-top: 40px;
}

.all-comments .item-comment:last-child {
    border: none;
}

.add-comments .title h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    padding: 0;
}

.add-comments .title p {
    margin-top: 8px;
    font-weight: 400;
    font-size: 20px;
    color: #1D1F1F;
    line-height: 30px;
}

.form-group {
    margin: 8px 0;
}

.form-group .form-control {
    height: 48px;
    width: 100%;
    border: 1px solid #666666;
    border-radius: 8px;
    padding: 12px 16px;
}

.form-group textarea.form-control {
    height: 120px;
}

.form-group button.btn {
    min-width: 302px;
}

.sidebar-blog {
    border-inline-start: 2px solid #EEEEEE;
    padding-inline-start: 23px;
}

.sidebar-blog .sidebar-item {
    padding: 28px 0;
}

.sidebar-blog .sidebar-item .title {
    margin-bottom: 24px;
}

.sidebar-blog .sidebar-item .title h3 {
    font-size: 24px;
    line-height: 32px;
}

.sidebar-blog-user .img {
    width: 123px;
    height: 117px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.sidebar-blog-user .img img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.sidebar-blog-user h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 24px;
}

.sidebar-blog-user p {
    max-width: 278px;
    color: #666;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
}

.sidebar-blog-form form {
    position: relative;
}

.sidebar-blog-form form .form-control {
    height: 48px;
    border: 1px solid #666666;
    border-radius: 8px;
    padding-inline-start: 35px;
    font-size: 16px;
}

.sidebar-blog-form form i {
    position: absolute;
    left: 0;
    top: 0;
    margin: 20px 15px 19px;
    font-size: 11px;
    color: #666;
}
.sidebar-blog-form form svg {
  position: absolute;
    left: 0px;
    top: 0px;
    margin: 14px 8px;
    font-size: 11px;
    color: #666 !important;
    width: 21px;
    height: 20px;
}

.popular-list .list-popular {
    display: flex;
    margin: 24px 0;
}

.popular-list .list-popular .img {
    width: 106px;
    height: 78px;
    border-radius: 8px;
    overflow: hidden;
}

.popular-list .list-popular .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.popular-list .list-popular .details {
    max-width: calc(100% - 106px);
    padding-inline-start: 16px;
}

.popular-list .list-popular .details h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
}

.popular-list .list-popular .details .date-h {
    display: flex;
    align-items: center;
    font-weight: 400;
    color: #666;
    font-size: 12px;
    line-height: 18px;
    gap: 5px;
}

.popular-list .list-popular .details .date-h i {
    font-size: 16px;
}

.sidebar-blog-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    padding: 4px 0;
    color: var(--main-color);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
}

.sidebar-blog-categories ul li a span:nth-child(2) {
    color: #1D1F1F;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
}

.sidebar-blog-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar-blog-tags ul li a {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 87px;
    background: #F8F8F8;
    min-height: 32px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    border-radius: 8px;
}

.sidebar-blog-tags ul li a:hover {
    background: var(--main-color);
    color: #fff;
}

/* End Blog-details-page */

/* Start Courses-page */

.body-inner {
    padding-block: 100px;
}

.courses-form button.btn {
    width: 100%;
    min-height: 35px;
}

.courses-form .form-group {
    position: relative;
    margin: 0;
}

.courses-form .form-group .form-control {
    padding-inline-start: 42px;
}

.courses-form .form-group i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #666666;
    margin: 19px;
}
.courses-form .form-group svg {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    color: #666666;
    margin: 13px;
}

.courses-form .form-group .form-control.niceSelect {
    background: #F8F8F8;
    border: 1px solid #A5A5A5;
    padding: 0 16px;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.courses-form .form-group .form-control.niceSelect::after {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    color: inherit;
    font-size: initial;
    font-weight: 400;
}

.courses-form {
    margin-bottom: 48px;
}

.courses-form .result-form {
    margin-top: 48px;
}

.courses-form .result-form p {
    color: #666;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.courses-form .result-form p strong {
    color: #1D1F1F;
}

.all-pages {
    text-align: center;
}

.all-pages .pagination {
    display: inline-flex;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #EEEEEE;
}

.all-pages .pagination .page-item .page-link {
    width: 40px;
    height: 40px;
    border: none;
    padding: 0;
    line-height: 40px;
    border-inline-start: 1px solid #EEEEEE;
    background: #fff;
    color: #444444;
    font-size: 14px;
    font-weight: bold;
}

.all-pages .pagination .page-item.active .page-link {
    color: var(--main-color);
    background: var(--bg-color);
    border-color: transparent;
}

.all-pages .pagination .page-item:nth-child(1) .page-link {
    border: none;
}

.all-pages .pagination .page-item .page-link:hover,
.all-pages .pagination .page-item .page-link:focus {
    background: var(--bg-color);
    border-color: transparent;
    box-shadow: none;
}

/* End Courses-page */

/* Start Blogs-page */

.blog-item {
    margin-bottom: 80px;
    border: 1px solid #D6D6D6;
    border-radius: 24px;
    overflow: hidden;
}

.blog-item .img-block {
    height: 397px;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
}

.blog-item .img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-item .img-block .user-name {
    display: inline-flex;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 8px;
    background: #fff;
    border-radius: 24px;
    padding: 12px;
    align-items: center;
    gap: 8px;
}

.blog-item .img-block .user-name .img {
    width: 56px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-item .img-block .user-name .img img {
    width: 100%;
    height: 100%;
}

.blog-item .img-block .user-name h3 {
    margin: 0;
    color: #1D1F1F;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.blog-item .details {
    padding: 40px 24px 0;
}

.blog-item .details h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 50px;
}

.blog-item .details p {
    color: #1D1F1F;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
}

.blog-item .details .blog-info {
    margin-top: 16px;
    padding: 24px 0;
    border-top: 1px solid #D6D6D6;
}

.blog-item .details .blog-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.blog-item .details .blog-info ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.blog-item .details .blog-info ul li i {
    font-size: 14px;
}

.accordion-item {
    margin-bottom: 56px;
}

.accordion-partners.collapse-content .accordion-body {
    padding: 0;
}

/* End Blogs-page */

/* Start About-page */

.about-page-h.body-inner {
    padding-bottom: 0;
}

.about-page-h .collapse-title h3{
    color:var(--main-color);
}
.about-page-h .collapse-inner{
    border-radius:24px;
}
.about-page-h .collapse-inner .collapse-text span{
    font-size:24px !important;
}
section.courses-enroll-h.choose-h {}

.vision-list .item {
    display: flex;
    gap: 12px;
    padding: 24px 0;
    border-bottom: 1px solid #D6D6D6;
}

.vision-list .item .num {
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    font-weight: 700;
    font-size: 32px;
}

.vision-list .item .details {
    width: calc(100% - 64px - 12px);
}

.vision-list .item .details h3 {
    color: #1D1F1F;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
}

.vision-list .item .details p {
    margin: 0;
    color: #444;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.vision-list .item:nth-child(1) {
    padding-top: 0;
}

.vision-list .item:last-child {
    padding-bottom: 0;
    border: none;
}

.about-page-h.body-inner .collapse-content {
    padding: 0;
}

.courses-content-inner.about-content-inner h4 {
    margin: 24px 0;
    font-weight: 700;
    color: var(--main-color);
    font-size: 32px;
    line-height: 40px;
}

.courses-content-inner.about-content-inner ul {
    padding: 0;
    margin: 16px 0;
}

.courses-content-inner.about-content-inner ul li {
    list-style: none;
}

.courses-content-inner.about-content-inner ul i {
    margin-inline-end: 10px;
}

/* End About-page */

/* Start Contact-page */

.contact-item {
    margin: 0;
    box-shadow: 0px 0px 20px 0px #0000001F;
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
}

.contact-item .col-md-6 {
    padding: 0;
}

.contact-item .contact-text {
    padding: 67px 40px 100px;
}

.contact-item .contact-text .with-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.contact-item .contact-text h3 {
    margin: 0 0 24px;
    font-weight: 700;
    color: var(--main-color);
    font-size: 40px;
    line-height: 50px;
}

.contact-item .contact-text p {
    color: #1D1F1F;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 32px;
}

.contact-item .contact-text p strong {
    font-size: 32px;
    line-height: 40px;
}

.contact-map {
    height: 100%;
}

.contact-info-block {
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 24px;
    text-align: center;
    background: #F0F8F0;
}

.contact-info-block .icon {
    width: 104px;
    height: 104px;
    line-height: 104px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #6EBE6E;
}

.contact-info-block .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
}

.contact-info-block .details a {
    display: inline-block;
    color: #1D1F1F;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
}

.contact-info-block .details span {
    color: #666;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

.contact-info-h .col-md-4:nth-child(3) .contact-info-block {
    background: #ECF7FC;
}

.contact-info-h .col-md-4:nth-child(3) .contact-info-block .icon {
    background: #43ADE3;
}

.contact-info-h .col-md-4:nth-child(4) .contact-info-block {
    background: #FCF2ED;
}

.contact-info-h .col-md-4:nth-child(4) .contact-info-block .icon {
    background: #DF7D4F;
}

.contact-form-h {
    padding-block: 100px;
}

.contact-form-h .container>.row {
    margin: 0;
    box-shadow: 0px 0px 20px 0px #0000001F;
    border-radius: 24px;
    overflow: hidden;
}

.contact-form-h .container>.row>.col-md-6 {
    padding: 0;
}

.contact-form-text {
    padding: 40px;
}

.contact-form-text .item {
    padding-block: 24px;
    border-bottom: 1px solid #D6D6D6;
}

.contact-form-text .item:first-child {
    padding-top: 0;
}

.contact-form-text .item:last-child {
    padding-bottom: 0;
    border: none;
}

.contact-form-text .item h3 {
    margin-bottom: 24px;
    font-weight: 700;
    color: #1D1F1F;
    font-size: 40px;
    line-height: 50px;
}

.contact-form-text .item a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #1D1F1F;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.contact-form-text .item a i {
    color: var(--main-color);
}

.contact-form-text .item .s-h {
    justify-content: start;
    gap: 19px;
}

.contact-form-text .item .s-h a {
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.contact-form-text .item .s-h a:hover i {
    color: #fff;
}

.contact-form {
    background: #F8F8F8;
    padding: 40px;
    height: 100%;
}

.contact-form h3 {
    margin-bottom: 32px;
    font-weight: 700;
    color: var(--main-color);
    font-size: 40px;
    line-height: 50px;
}

.contact-form .form-group {
    margin: 0 0 16px;
}

.contact-form .form-group .btn {
    margin-top: 16px;
    min-width: 210px;
}

.counter-block .counter-item * {
    background: linear-gradient(100.83deg, #9E3088 21%, #FF88EF 93.51%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.all-students .student-block .details p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
}

.whatsappIcon {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9;
    margin: 30px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #25D366;
    text-align: center;
    border-radius: 50%;
    color: #fff !important;
    font-size: 30px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
}

.courses-details-links.active {
    position: fixed;
    top: 0;
    z-index: 99;
    right: 0;
    left: 0;
    background: #fff;
}

.sidebar-blog-form form .form-control::placeholder {
    color: #9191A1;
    opacity: 1;
}

body.mobile-menu-visible .menu-backdrop {
    opacity: 1;
    z-index: 99;
}

.btn.btn-border:hover {
    background: #fff;
}

.collapseForm-inner {
    border: 1px solid #A5A5A5;
    padding: 40px;
    border-radius: 24px;
}

.collapseForm-inner .collapseTitle {
    margin: 32px 0;
}

.collapseForm-inner .row .col-md-12:nth-child(1) .collapseTitle {
    margin-top: 0;
}

.collapseForm-inner .collapseTitle h3 {
    margin: 0;
    color: #000;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}

.collapseCheck label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.collapseCheck label input {
    width: 21.5px;
    height: 21.5px;
    accent-color: var(--main-color);
}

.collapseCheck {
    margin: 0 0 8px;
}

.collapseForm-inner .btn-center .btn {
    width: 100%;
    max-width: 384px;
    padding: 15px;
}

/* End Contact-page */
.partners-page-h {
    margin-top:100px;
}
/* Start Hover */

@media (min-width: 991px) {
    .blog-block:hover .btn {
        height: 54px;
        opacity: initial;
        transform: none;
        margin: -70px 0 0;
    }

    .blog-block:hover .blog-block-in {
        transform: translateY(-67px);
    }

    .all-blogs .slick-track .item:nth-child(even) .blog-block:hover .blog-block-in {
        transform: translateY(67px);
    }

    .all-blogs .slick-track .item:nth-child(even) .blog-block:hover .btn {
        margin: 0 0 -70px;
    }
}

/* End Hover */