/*
@File: Insocour Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - General Styles
** - Animation CSS
*/

/*---------------------------------
    Defult Styles 
-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --primaryFont: 'Inter', sans-serif;
    --mainColor: #012935;
    --primaryColor: #c60b1e;
    --secondaryColor: #012935;
    --paraColor: #51666C;
    --borderColor: #C6C9D4;
    --greadintColor: linear-gradient(90deg, #ce2d3d 33.33%, #f0b53b 100%);
    --whiteColor: #ffffff;
    --offWhiteColor: #F6F6F6;
    --blackColor: #000;
    --fontSize: 15px;
    --transition: all ease .5s;
}

/*---------------------------------
    General Styles 
-----------------------------------*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:focus,
button:focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

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

.container-fluid {
    max-width: 1560px;
}

a,
button,
input[type=submit] {
    cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

.h-60 {
    height: 60px;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: var(--whiteColor) !important;
}

.bg-fw {
    background-color: var(--offWhiteColor);
}

.w-100 {
    width: 100% !important;
}

.border-style {
    border: 1px solid var(--borderColor);
    border-radius: 30px;
}

.input-style {
    padding: 0 20px;
}

.label-style {
    color: var(--mainColor);
    margin-bottom: 10px;
}

textarea.border-style {
    border-radius: 5px;
}

textarea.input-style {
    padding: 10px 20px;
}

.select-options {
    background-image: url(../img/icons/down-arrow.svg);
    background-position: calc(100% - 18px) 50%;
    background-size: 12px;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--whiteColor);
    letter-spacing: 0.8px;
    font-family: var(--secondaryFont);
    display: inline-block;
    height: 52px;
    width: 176px;
    padding: 12px 20px;
}

.select-options option {
    color: var(--blackColor);
}

a {
    text-transform: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--paraColor);
}

a:hover,
a :focus {
    text-decoration: none;
    box-shadow: none;
}

a:focus {
    outline: 0 solid;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--mainColor);
    font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: var(--mainColor);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: var(--primaryColor);
}

body {
    font-size: var(--fontSize);
    font-family: var(--primaryFont);
    color: var(--paraColor);
    font-weight: 400;
    line-height: 28px;
}

p {
    font-size: var(--fontSize);
    line-height: 28px;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
}

.box-shadow-1 {
    box-shadow: 0px 6px 30px 0px #0001110D;
}

.box-shadow-2 {
    box-shadow: 0px 5px 30px 0px #0001110D;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-17 {
    font-size: 17px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-30 {
    font-size: 30px;
}

.fs-36 {
    font-size: 36px;
}

.fs-42 {
    font-size: 42px;
}

.fs-46 {
    font-size: 46px;
}

.fs-50 {
    font-size: 50px;
}

.fs-64 {
    font-size: 64px;
}

.lh-54 {
    line-height: 54px;
}

.lh-34 {
    line-height: 34px;
}

.lh-36 {
    line-height: 36px;
}

.h-60 {
    height: 60px;
}

.round-5 {
    border-radius: 5px;
}

.index-1 {
    z-index: 1;
}

.index-2 {
    z-index: 2;
}

.fw-600 {
    font-weight: 600;
}

.fc-sec {
    color: var(--secondaryColor);
}

.fc-main {
    color: var(--mainColor);
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-30 {
    padding-left: 30px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-13 {
    margin-bottom: 13px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-22 {
    margin-bottom: 22px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mr-20 {
    margin-right: 20px;
}

.b-shadow {
    box-shadow: -7px 15px 30px 0px rgba(0, 0, 0, 0.1);
}

.list-unstyle {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-unstyle li {
    list-style: none;
}

.position-relative {
    position: relative;
}

.btn {
    padding: 16px 30px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    border-radius: 30px;
    border: none;
    transition: var(--transition);
}

.btn img {
    position: relative;
    top: -2px;
    margin-left: 13px;
    transition: var(--transition);
}

.btn:before {
    position: absolute;
    top: -5%;
    left: -5%;
    content: "";
    width: 0%;
    height: 110%;
    z-index: -1;
    border-radius: 5px;
    transform: skewX(15deg);
    overflow: hidden;
    transition: var(--transition);
}

.btn:hover:before {
    width: 120%;
    visibility: visible;
    opacity: 1;
}

.btn.style-one {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
    border-color: transparent;
}

.btn.style-one.style-2 {
    border-radius: 5px;
    background-color: var(--secondaryColor);
}

.btn.style-one.style-2::before {
    background-color: var(--primaryColor);
}

.btn.style-one:before {
    background-color: var(--secondaryColor);
}

.btn.style-one:hover {
    color: var(--whiteColor);
}

.btn.style-one:hover i {
    color: var(--whiteColor);
}

.btn.style-one img {
    filter: brightness(0) invert(1);
}

.btn.style-two {
    border: 1px solid var(--borderColor);
}

.btn.style-two:before {
    background-color: var(--primaryColor);
}

.btn.style-two:hover {
    color: var(--whiteColor);
}

.btn.style-two:hover img {
    filter: brightness(0) invert(1);
}

.btn.style-three {
    z-index: 1;
    background-color: transparent;
    position: relative;
    display: inline-block;
    padding: 15px 34px;
    color: #513A50;
    text-decoration: none;
    box-shadow: 3px 3px 0 1px var(--primaryColor);
    transition: .3s;
    overflow: hidden;
}

.btn.style-3 {
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.sub-title {
    font-size: 20px;
    text-transform: uppercase;
    background: var(--greadintColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-flex;
    position: relative;
}

.sub-title::after {
    position: absolute;
    content: '';
    background: var(--greadintColor);
    top: 23px;
    left: 0;
    width: 100%;
    height: 3px;
}

.gradient-style {
    background: var(--greadintColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

.text-title {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.top-title {
    font-size: 20px;
    font-weight: 600;
    padding-left: 30px;
    position: relative;
    margin-bottom: 25px;
    color: var(--mainColor);
}

.top-title img {
    left: 0;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

.top-title.style-3 {
    padding-left: 22px;
}

.top-title.style-3::before {
    top: 50%;
    left: 0;
    content: '';
    width: 11px;
    height: 11px;
    position: absolute;
    border-radius: 100%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

/*---------------------------------
     Animation CSS
----------------------------------*/

.rotate {
    animation: rotation 20s infinite linear;
}

.bounce {
    animation: float 1500ms infinite ease-in-out;
}

.moveHorizontal {
    animation: moveHorizontal 3000ms infinite ease-in-out;
}

.moveVertical {
    animation: moveVertical 3000ms infinite ease-in-out;
}

.zoomIn {
    animation: zoom-in 5s ease-out infinite;
}

.animationFramesTwo {
    animation: animationFramesTwo 20000ms infinite ease-in-out;
}

.animationFramesThree {
    animation: animationFramesThree 20000ms infinite ease-in-out;
}

.scaleUp {
    animation: scaleUp 2.5s infinite ease-out;
}

.main-max-width {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes zoom-in {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.1, 1.1);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-20px);
    }
    100% {
        transform: translateX(0px);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes animationFramesTwo {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes animationFramesThree {
    0% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(-73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(-141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(-83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(40px, 72px) rotate(144deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotate(0deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes mymove {
    from {
        left: 0;
    }
    to {
        left: -100px;
    }
}

@keyframes mymovetwo {
    from {
        right: 0;
    }
    to {
        right: -100px;
    }
}

@keyframes scaleUp {
    0% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1.3);
    }
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 110px;
    width: 110px;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center center;
    border-radius: 50%;
    -ms-box-shadow: 0 0 0 0 rgb(255, 255, 255);
    -o-box-shadow: 0 0 0 0 rgb(255, 255, 255);
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
    animation: ripple 3s infinite;
}

.play-now {
    position: relative;
    height: 110px;
    width: 110px;
    text-align: center;
    background-color: transparent;
    color: var(--whiteColor);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    transform-origin: center center;
    border-radius: 50%;
    margin: 0 auto;
}

.play-now .ripple:before {
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.play-now .ripple:after {
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ====================
  Hero Section
=====================*/

.hero-bg {
    background-image: url(../img/banner/1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.hero-section .silde-item {
    padding-top: 300px;
    padding-bottom: 130px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .content {
    text-align: start;
}

.hero-section .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
    position: absolute;
    top: 50%;
    left: -50px;
}

.hero-section .owl-theme .owl-dots .owl-dot {
    display: block;
    zoom: 1;
    transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--mainColor);
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border: 1px solid var(--mainColor);
    margin: 5px 0px;
    background: transparent;
    border-radius: 30px;
    transition: var(--transition);
}

.book-icon {
    position: absolute;
    top: 28%;
    left: 5%;
}

.idea-icon {
    position: absolute;
    top: 31%;
    left: 43%;
}

.global-icon {
    position: absolute;
    bottom: 14%;
    right: 50%;
}

.shape1 {
    position: absolute;
    top: 49%;
    right: 10%;
}

.shape2 {
    position: absolute;
    top: 35%;
    right: 31%;
}

.hero-image::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 200px;
    border-radius: 30px;
    background-color: var(--primaryColor);
    left: 0;
    bottom: 0;
    z-index: 0;
}

.banner-area {
    padding-top: 200px;
    padding-bottom: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/banner/banner-bg-2.jpg);
}

.banner-content .title {
    margin-bottom: 50px;
    margin-right: 20px;
}

.banner-content .global-icon {
    top: -88px;
    right: 107px;
    max-width: 77px;
    position: absolute;
}

.banner-content .shape-icon {
    bottom: -128px;
    right: 142px;
    max-width: 77px;
    position: absolute;
}

.banner-content .title h1 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.banner-content .banner-btn .contact {
    margin-left: 25px;
}

.banner-content .banner-btn .contact .icon {
    flex: 0 0 auto;
    font-size: 30px;
    margin-right: 15px;
    color: var(--blackColor);
}

.banner-content .banner-btn .contact .text a {
    font-size: 16px;
    font-weight: 600;
    color: var(--blackColor);
}

.banner-content .banner-btn .contact .text a:hover {
    color: var(--secondaryColor);
}

.banner-content .play-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 58px;
    text-align: center;
    border-radius: 100%;
    color: var(--mainColor);
    display: inline-block;
    border: 2px solid var(--mainColor);
}

.banner-content .play-icon i {
    left: 2px;
    position: relative;
}

.banner-content .play-icon:hover {
    border-color: var(--secondaryColor);
}

.banner-image {
    margin-right: -100px;
    margin-left: -40px;
}

.banner-image .image {
    margin-right: -70px;
}

.banner-image .image-3 {
    right: -71px;
    margin-top: -258px;
    position: relative;
}

.banner-image .image-3 .paly {
    top: 50%;
    left: 0;
    right: 0;
    width: 80px;
    height: 80px;
    margin: auto;
    font-size: 35px;
    line-height: 80px;
    position: absolute;
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    color: var(--mainColor);
    transform: translateY(-50%);
    background-color: var(--whiteColor);
}

.banner-image .image-3 .paly:hover {
    color: var(--whiteColor);
    background-color: var(--secondaryColor);
}

.banner-image .image-3 .paly i {
    left: 2px;
    position: relative;
}

.banner-image .banner-shape {
    bottom: 50px;
    right: -16px;
    z-index: -1;
    position: absolute;
}

.banner-image .banner-complete {
    left: 51px;
    bottom: 31px;
    z-index: 1;
    padding: 20px;
    position: absolute;
    max-width: 240px;
    border-radius: 10px;
    background-color: var(--whiteColor);
    border-right: 7px solid rgba(246, 246, 246, 1);
    border-bottom: 7px solid rgba(246, 246, 246, 1);
}

.banner-image .banner-complete .icon {
    width: 70px;
    height: 70px;
    margin-left: -50px;
    margin-right: 20px;
    line-height: 70px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    background-color: var(--primaryColor);
}

.banner-image .banner-complete .content span {
    margin-bottom: 10px;
    color: var(--mainColor);
}

.banner-image .banner-complete .content h5 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--mainColor);
}

.banner-warp-area {
    padding-top: 212px;
    padding-bottom: 100px;
    background-color: rgba(246, 246, 246, 1);
}

.banner-content .graph-shape {
    top: -56px;
    right: 147px;
    position: absolute;
}

.banner-content .graph-shape-2 {
    right: -47px;
    bottom: 30px;
    position: absolute;
}

.single-banner-warp-card {
    padding: 20px;
    max-width: 370px;
    margin-left: auto;
    border-radius: 5px;
    background-color: var(--whiteColor);
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
}

.single-banner-warp-card .image {
    margin-bottom: 20px;
}

.single-banner-warp-card .image img {
    border-radius: 5px;
}

.single-banner-warp-card ul {
    margin-bottom: 15px;
}

.single-banner-warp-card ul li {
    margin-right: 3px;
}

.single-banner-warp-card ul li i {
    color: var(--secondaryColor);
}

.single-banner-warp-card ul li span {
    color: var(--mainColor);
}

.single-banner-warp-card ul li:last-child {
    margin-right: 0;
}

.single-banner-warp-card h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.single-banner-warp-card span strong {
    color: var(--mainColor);
}

.owl-item.active .content .sub-title {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.owl-item.active .content h1 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.7s;
}

.owl-item.active .content p {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.9s;
}

.owl-item.active .content .her-btns {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1.1s;
}

.owl-item.active .hero-image img {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInRight;
    animation-delay: 0.7s;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(20%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

/* ====================
  Category Section
=====================*/

.category-section .cetg-card .icon {
    margin-right: 20px;
    height: 70px;
    line-height: 69px;
    width: 70px;
    background: #f7f7f7;
    text-align: center;
    border-radius: 100px;
    transition: var(--transition);
}

.category-section .cetg-card {
    padding: 20px 30px;
    border-radius: 95px;
    transition: var(--transition);
}

.category-section .cetg-card:hover {
    background-color: var(--primaryColor);
}

.category-section .cetg-card .text {
    transition: var(--transition);
}

.category-section .cetg-card .text p {
    transition: var(--transition);
}

.category-section .cetg-card .text p img {
    transition: var(--transition);
}

.category-section .cetg-card:hover .text a {
    color: var(--whiteColor);
}

.category-section .cetg-card:hover .text p {
    color: var(--whiteColor);
}

.category-section .cetg-card:hover .text p img {
    filter: brightness(0) invert(1);
}

.single-category-card {
    padding: 25px 30px;
    border-radius: 5px;
    margin-bottom: 25px;
    transition: var(--transition);
    border: 1px solid rgba(198, 201, 212, 1);
}

.single-category-card .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 100%;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
    border: 1px solid rgba(198, 201, 212, 1);
}

.single-category-card .icon img {
    transition: var(--transition);
}

.single-category-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.single-category-card a {
    padding-right: 25px;
    position: relative;
}

.single-category-card a img {
    top: 6px;
    right: 0;
    position: absolute;
}

.single-category-card:hover .icon {
    border-color: var(--secondaryColor);
    background-color: var(--secondaryColor);
}

.single-category-card:hover .icon img {
    filter: brightness(111);
}

.single-category-card a:hover {
    color: var(--mainColor);
}

/* ====================
  About Section
=====================*/

.about-section .about-meta .info h5 {
    background: var(--greadintColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-section .content {
    margin-right: 30px;
    border-bottom: 1px solid var(--borderColor);
}

.about-wrapper {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.about-wrapper .card {
    width: 80px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .6s cubic-bezier(.28, -0.03, 0, .99);
    background-color: var(--primaryColor);
    box-shadow: 0px 6px 30px 0px #0001110D;
}

.about-wrapper .card .icon {
    background: var(--offWhiteColor);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 80px;
}

.about-wrapper .card .description {
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}

.about-wrapper .card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--whiteColor);
    position: relative;
    padding-left: 20px;
}

.about-wrapper .card .heading {
    font-size: 20px;
    /* margin-bottom: 25px; */
    color: var(--whiteColor);
    position: absolute;
    /* padding-left: 20px; */
    /* bottom: 10px; */
    /* left: 0px; */
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin: 0;
    /* line-height: 60px; */
    margin-left: 18px;
}

.about-wrapper input:checked+label .heading {
    opacity: 0 !important;
    transform: translateY(0) !important;
}

.about-wrapper .description h4::after {
    position: absolute;
    content: '';
    top: 12px;
    left: 0;
    height: 2px;
    width: 10px;
    background-color: var(--whiteColor);
    border-radius: 15px;
}

.about-wrapper .description p {
    color: var(--whiteColor);
    margin-bottom: 25px;
}

.about-wrapper input {
    display: none;
}

.about-wrapper .about-card.active {
    width: 350px;
    display: inline-block;
    padding: 20px;
}

.about-wrapper .about-card.active .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.about-wrapper .about-card.active .heading {
    opacity: 0;
}

.about-wrapper .card .btn {
    background-color: var(--whiteColor);
    padding: 20px 30px;
    border-radius: 10px;
}

.about-wrapper .card .btn:hover {
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
}

.about-wrapper .card .btn:hover img {
    filter: brightness(0) invert(1);
}

.about-content {
    margin-bottom: 25px;
    margin-right: 20px;
}

.about-content .title {
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #c6c9d4;
}

.about-content .title h1 {
    font-size: 50px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-image {
    margin-top: 50px;
    margin-left: 43px;
}

.about-image.style-3 {
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 25px;
}

.about-image img {
    border-radius: 10px;
}

.about-image .about-shape {
    top: -50px;
    left: -51px;
    z-index: -1;
}

.about-image .about-experiences-info {
    right: -80px;
    bottom: -45px;
    max-width: 313px;
    border-radius: 5px;
    position: absolute;
    display: inline-block;
    padding: 30px 30px 48px 30px;
}

.about-image .about-experiences-info h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--whiteColor);
}

.about-image .about-experiences-info h3 span {
    margin-right: 0;
}

.about-image .about-experiences-info .bg-shape {
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
}

.about-content .resource-info {
    margin-top: 25px;
    margin-bottom: 15px;
}

.about-content .resource-info .info-item .icon {
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    margin-right: 20px;
    line-height: 60px;
    border-radius: 5px;
    text-align: center;
    display: block;
    background-color: rgba(246, 246, 246, 1);
}

.about-content .resource-info .info-item h3 {
    font-size: 20px;
    margin-bottom: 0;
}

/* ====================
  course Section
=====================*/

.course-section .sorting-menu {
    position: absolute;
    bottom: 5px;
    right: 0;
}

.sorting-menu ul {
    list-style: none;
    display: flex;
    padding: 0px;
    margin-bottom: 10px;
    position: relative;
    transition: var(--transition);
}

.sorting-menu ul::after {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    border-radius: 15px;
    transition: var(--transition);
    background-color: var(--offWhiteColor);
}

.sorting-menu ul li {
    color: var(--mainColor);
    font-size: 16px;
    margin-right: 35px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.sorting-menu ul li:last-child {
    margin-right: 0px;
}

.sorting-menu ul .active {
    position: relative;
}

.sorting-menu ul .active:after {
    position: absolute;
    content: '';
    height: 5px;
    width: 50px;
    border-radius: 30px;
    top: 33px;
    left: 22px;
    background: var(--primaryColor);
    z-index: 1;
    transition: var(--transition);
}

.course-section .sorting-menu.style-2 {
    position: unset;
}

.sorting-menu.style-2 ul {
    margin-bottom: 0;
    display: inline-block;
}

.sorting-menu.style-2 ul::after {
    display: none;
}

.sorting-menu.style-2 ul li {
    padding: 6px 16px;
    margin-right: 20px;
    border-radius: 5px;
    display: inline-block;
    background-color: rgba(246, 246, 246, 1);
}

.sorting-menu.style-2 ul li:last-child {
    margin-right: 0;
}

.sorting-menu.style-2 ul li:hover {
    color: var(--whiteColor);
    background-color: var(--secondaryColor);
}

.sorting-menu.style-2 ul .active:after {
    display: none;
}

.sorting-menu.style-2 ul .active {
    color: var(--whiteColor);
    background-color: var(--secondaryColor);
}

.course-mix-wrapper .mix-target {
    display: none;
}

.single-courses-box.style-2 {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid rgba(198, 201, 212, 1);
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
}

.single-courses-box.style-2 .cr-tag a {
    top: 20px;
    left: 0;
    padding: 6px 20px;
    box-shadow: unset;
    position: absolute;
    color: var(--whiteColor);
    border-radius: 0px 5px 5px 0px;
    background-color: var(--secondaryColor);
}

.single-courses-box.style-2 .cr-tag a:hover {
    color: var(--blackColor);
}

.single-courses-box .image img {
    width: 100%;
}

.single-courses-box .cr-option {
    position: absolute;
    top: 10%;
    left: 5%;
    display: block;
}

.single-courses-box .cr-option a {
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 25px;
    color: var(--whiteColor);
    background: #6163644d;
    display: block;
    border-radius: 30px;
    margin-bottom: 15px;
}

.single-courses-box .cr-option a:last-child {
    margin-bottom: 0px;
}

.single-courses-box .cr-option a:hover {
    color: var(--secondaryColor);
}

.single-courses-box .cr-tag a {
    position: relative;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    top: -10px;
    left: 15px;
    color: var(--mainColor);
    transition: var(--transition);
    background-color: var(--whiteColor);
    box-shadow: 3px 3px 0 1px var(--primaryColor);
}

.single-courses-box .cr-tag :hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

.single-courses-box.style-2 .content {
    padding: 0;
}

.single-courses-box .content .author img {
    margin-right: 15px;
}

.single-courses-box .content .author span {
    color: var(--mainColor);
    font-weight: 600;
}

.single-courses-box .content {
    padding: 0 20px;
}

.single-courses-box .content h3 {
    line-height: 32px;
}

.single-courses-box .cr-price .price {
    color: var(--secondaryColor);
}

.single-courses-box .cr-price .old-price {
    position: relative;
}

.single-courses-box .cr-price .old-price::after {
    position: absolute;
    content: '';
    top: 8px;
    left: -1px;
    width: 40px;
    height: 1px;
    background-color: var(--mainColor);
}

.single-courses-box .ratings li i {
    color: var(--secondaryColor);
}

.single-courses-box .ratings span {
    margin-left: 10px;
    font-size: 15px;
    color: var(--mainColor);
    position: relative;
    top: 2px;
}

.single-courses-box .cr-items {
    padding: 10px 20px 20px;
    border-top: 1px solid var(--borderColor);
}

.single-courses-box.style-2 .cr-items {
    padding: 0;
    padding-top: 15px;
}

.single-courses-box.style-2 .cr-items li .btn {
    color: var(--mainColor);
    background-color: rgba(246, 246, 246, 1);
}

.single-courses-box.style-2:hover .btn:before {
    width: 120%;
    visibility: visible;
    opacity: 1;
}

.single-courses-box.style-2:hover .cr-items li .btn {
    color: var(--whiteColor);
}

.single-courses-box.style-2:hover .cr-items li .btn i {
    color: var(--whiteColor);
}

.single-courses-box.style-2 .cr-items li {
    margin-right: 30px;
}

.single-courses-box.style-2 .cr-items li:last-child {
    margin-right: 0;
}

.single-courses-box.style-2 .cr-items li i {
    font-size: 16px;
    color: var(--mainColor);
    transition: var(--transition);
}

.single-courses-box.style-2 .cr-items li .btn {
    padding: 8px 20px;
    border-radius: 5px;
}

.single-courses-box.style-2 .cr-items li span {
    color: var(--mainColor);
}

.single-courses-box .cr-items li i {
    color: var(--secondaryColor);
    font-size: 20px;
}

.single-courses-box .cr-items li {
    margin-right: 10px;
}

.single-courses-box .cr-items li span {
    color: var(--mainColor);
}

.single-courses-box.style-two .cr-tag a {
    position: absolute !important;
    top: 76%;
    left: 20px;
}

.single-courses-box.style-two .content {
    padding: 0 20px 0 0;
}

.single-courses-box.style-two .cr-items {
    padding: 10px 20px 0px 0;
}

.edu-courses-area .result-count .courbtn {
    padding: 18px 18px;
    font-size: 28px;
    border-radius: 5px;
    line-height: 0px;
    margin-right: 12px;
    color: var(--blackColor);
    background-color: #f8f8f8;
    display: inline-block;
}

.edu-courses-area .result-count .courbtn:hover {
    color: var(--whiteColor);
    background-color: var(--secounderyColor);
}

.edu-courses-area .result-count .courbtn:last-child {
    margin-right: 0px;
}

.active-courbtn {
    color: var(--whiteColor) !important;
    background-color: var(--secounderyColor) !important;
}

.edu-courses-area .result-count p {
    display: inline-block;
    font-size: 15px;
    color: var(--mainColor);
}

.edu-grid-sorting {
    margin-bottom: 50px;
    padding: 15px;
    border-radius: 5px;
}

.edu-grid-sorting .nice-select select {
    display: inline-block;
    background: var(--whiteColor);
    border-color: var(--borderColor);
    color: var(--mainColor);
    padding: 0 20px 0 20px;
    height: 40px;
    line-height: 40px;
    border-radius: 30px;
    font-size: 15px;
    float: unset;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.edu-grid-sorting .nice-select option {
    font-size: 15px;
    padding-left: 20px;
    padding-right: 85px;
}

.fitter-option .item a {
    margin-right: 30px;
    position: relative;
}

.fitter-option .item a:hover {
    color: var(--primaryColor);
}

.fitter-option .item a:hover span {
    color: var(--primaryColor);
}

.fitter-option .item a.active .icon,
.fitter-option .item a.active span {
    color: var(--primaryColor) !important;
}

.fitter-option .item a:last-child {
    margin-right: 0px;
}

.fitter-option .item a::after {
    position: absolute;
    content: '';
    top: 6px;
    right: -16px;
    height: 16px;
    width: 3px;
    background-color: var(--borderColor);
}

.fitter-option .item a:last-child::after {
    display: none;
}

.fitter-option .item a .icon {
    margin-right: 5px;
    font-size: 20px;
}

.fitter-option .item span {
    font-size: 16px;
    font-weight: 600;
    color: var(--mainColor);
}

.edu-grid-sorting.style-one {
    margin-bottom: 30px;
    padding: 20px 0;
    background: transparent;
}

.grid-short {
    margin-right: 13px;
}

.grid-short .accordion-item {
    border: none;
}

.grid-short:last-child {
    margin-right: 0px;
}

.grid-short .accordion-button {
    background-color: var(--offWhiteColor);
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

.grid-short .accordion-button:hover {
    background-color: #d2d2d57d;
}

.grid-short .accordion-button span {
    margin-right: 8px;
    font-size: 15px;
    color: var(--mainColor);
    transition: var(--transition);
}

.grid-short .accordion-body {
    position: absolute;
    background-color: var(--whiteColor);
    z-index: 1;
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 0;
}

.grid-short .accordion-body li a {
    display: block;
    padding: 5px 10px;
    border-bottom: 1px solid var(--borderColor);
}

.grid-short .accordion-body li a:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.grid-short .accordion-button::after {
    background-image: url(../img/icon/down-arrow.png);
    transform: rotate(0deg);
}

.single-course-image .course-catgy {
    position: absolute;
    content: '';
    display: inline-block;
    padding: 6px 23px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 600;
    top: 30px;
    left: 30px;
    border-radius: 30px;
}

.single-course-content h2 {
    line-height: 32px;
}

.user-details {
    padding: 30px 0px 20px;
}

.user-details .info-item {
    margin-right: 15px;
}

.user-details .info-item img {
    margin-right: 10px;
}

.user-details .info-item p a {
    font-weight: 600;
    color: var(--mainColor);
}

.user-details .info-item p span {
    color: var(--secondaryColor);
    margin-right: 5px;
}

.user-details .info-item ul li i {
    color: var(--secondaryColor);
}

.user-details .info-item ul span {
    margin-left: 5px;
}

.course-tab {
    border: 1px solid var(--borderColor);
    list-style: none;
    padding: 20px;
    border-radius: 10px;
}

.course-tab .nav-link {
    color: var(--mainColor);
    padding: 15px 20px;
    border-radius: 30px;
    background-color: var(--offWhiteColor);
    margin-right: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.course-tab .nav-link img {
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.course-tab .nav-link.active {
    color: var(--whiteColor);
    background: var(--primaryColor);
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

.course-tab .nav-link.active img {
    filter: brightness(0) invert(1);
}

.course-tab .nav-link:hover {
    color: var(--whiteColor);
    background: var(--primaryColor);
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

.course-tab .nav-link:hover img {
    filter: brightness(0) invert(1);
}

.course-single-otp {
    margin-bottom: 20px;
}

.course-single-otp .icon {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 25px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    margin-right: 20px;
    border-radius: 30px;
}

.course-single-otp p {
    font-weight: 600;
    color: var(--mainColor);
    margin-bottom: 0;
}

.instructor-content {
    padding-left: 20px;
}

.instructor-content .meta-info {
    margin-bottom: 15px;
}

.instructor-content .meta-info li {
    margin-right: 5px;
}

.instructor-content .meta-info li i {
    color: var(--secondaryColor);
}

.instructor-content .instructor-info ul {
    margin-bottom: 15px;
}

.instructor-content .instructor-info ul li {
    margin-right: 20px;
    color: var(--mainColor);
}

.instructor-content .instructor-info ul li:last-child {
    margin-right: 0px;
}

.instructor-content .instructor-info span {
    margin-right: 5px;
}

.instructor-content .instructor-info ul li {
    margin-right: 8px;
    font-size: 12px;
}

.instructor-content .instructor-info span {
    margin-right: 2px;
}

.single-course-image .course-catgy {
    padding: 4px 12px;
    font-weight: 600;
    top: 17px;
    font-size: 14px;
    left: 12px;
}

.single-course-sidebar .course-widget .sidebar-content .courses-details h4 {
    font-size: 18px;
}

.course-single-otp .icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 20px;
    margin-right: 15px;
}

.single-course-sidebar .course-widget h3 {
    font-size: 30px !important;
}

.single-course-sidebar .course-widget .share img {
    width: 30px;
}

.single-course-sidebar .course-widget {
    padding: 30px 12px !important;
}

.single-meet-card {
    margin-bottom: 25px;
}

.single-meet-card .image {
    margin-bottom: 20px;
    border-radius: 10px;
    padding: 10px 30px 0;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--primaryColor);
    background-color: rgba(246, 246, 246, 1);
}

.single-meet-card .image::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 11px;
    transition: var(--transition);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-meet-card:hover .image::before {
    opacity: 1;
    visibility: visible;
}

.single-meet-card:hover .image {
    border-color: rgba(198, 201, 212, 1)
}

.single-meet-card .content {
    padding-right: 15px;
}

.single-meet-card .content .text h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.single-meet-card .content .icon .btn {
    padding: 0;
    width: 60px;
    height: 60px;
    font-size: 25px;
    line-height: 60px;
    border-radius: 100%;
}

.single-meet-card .social-icon {
    right: 15px;
    bottom: 70px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: var(--transition);
}

.single-meet-card .social-icon ul li {
    margin-bottom: 10px;
}

.single-meet-card .social-icon ul li a {
    width: 60px;
    height: 60px;
    font-size: 25px;
    line-height: 60px;
    border-radius: 100%;
    display: inline-block;
    text-align: center;
    color: var(--mainColor);
    transition: var(--transition);
    background-color: var(--whiteColor);
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
}

.single-meet-card .social-icon ul li a:hover {
    color: var(--whiteColor);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-meet-card .content .icon:hover .social-icon {
    opacity: 1;
    visibility: visible;
}

.single-provides-info {
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/all-img/single-provides-info.jpg);
}

.single-provides-info::before {
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 80%;
    border-radius: 5px;
    position: absolute;
    background-color: var(--mainColor);
}

.single-provides-info span {
    padding: 8px 20px;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--primaryColor);
    background-color: var(--whiteColor);
}

.single-provides-info h3 {
    font-size: 20px;
    max-width: 384px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--whiteColor);
}

.single-provides-info p {
    max-width: 384px;
    color: rgba(255, 255, 255, 1);
}

.single-events-card {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: var(--transition);
    background-color: var(--whiteColor);
    border: 1px solid var(--primaryColor);
}

.single-events-card .image {
    margin-bottom: 20px;
}

.single-events-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.single-events-card ul li {
    padding-left: 20px;
    position: relative;
    margin-right: 10px;
}

.single-events-card ul li:last-child {
    margin-right: 0;
}

.single-events-card ul li i {
    left: 0;
    top: 0;
    position: absolute;
}

.single-events-card .btn {
    top: 50%;
    left: 0;
    right: 0;
    opacity: 0;
    margin: auto;
    max-width: 149px;
    text-align: center;
    position: absolute;
    visibility: hidden;
    transform: translateY(-50%);
    display: inline-block !important;
}

.single-events-card:hover .btn {
    opacity: 1;
    visibility: visible;
}

.single-events-card:hover::before {
    opacity: 1;
    visibility: visible;
}

.single-events-card:hover {
    border-color: rgba(198, 201, 212, 1);
}

.single-events-card::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 11px;
    transition: var(--transition);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-testimonial-info {
    padding: 20px;
    margin-bottom: 5px;
    border-radius: 10px;
    display: inline-block;
    transition: var(--transition);
    background-color: var(--whiteColor);
    border: 1px solid var(--primaryColor);
}

.single-testimonial-info::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 11px;
    transition: var(--transition);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-testimonial-info:hover::before {
    opacity: 1;
    visibility: visible;
}

.single-testimonial-info:hover {
    border-color: rgba(198, 201, 212, 1);
}

.single-testimonial-info .image {
    margin-bottom: 15px;
}

.single-testimonial-info .image img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.single-testimonial-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.single-testimonial-info .cap-icon {
    top: 30px;
    right: 118px;
    position: absolute;
}

.single-testimonial-info .quote-icon {
    right: 35px;
    bottom: 35px;
    font-size: 40px;
    position: absolute;
    transition: var(--transition);
    color: rgba(246, 246, 246, 1);
}

.single-testimonial-info:hover .quote-icon {
    color: var(--primaryColor);
}

.lession-total-review {
    padding: 40px 0;
    text-align: center;
    box-shadow: 0px 5px 30px 0px #0001110D;
}

.lession-total-review h3 {
    font-size: 35px;
    font-weight: 600;
}

.rating-stars li i {
    color: var(--secondaryColor);
}

.rating-stars li {
    margin-right: 2px;
    display: inline-block;
}

.progress-bar {
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
    background-color: var(--secondaryColor);
}

.progress {
    display: flex;
    height: 5px;
    background-color: var(--offWhiteColor);
}

.lesseon-review-section .lession-review-items .ratings-text span {
    margin-right: 15px;
    color: var(--mainColor);
}

.lesseon-review-section .lession-review-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}

.lession-review-items .progress-section {
    margin-bottom: 0;
    margin-right: 18px;
}

.lession-review-items .progress {
    height: 5px;
    background-color: var(--offWhiteColor);
    width: 300px;
}

.progress-bar-items .progress-title span {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondaryColor);
}

.progress-bar-items .progress-title {
    padding: 0 20px;
}

@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.student-review-section form .student-rating {
    text-align: left;
    overflow: hidden;
    max-width: 115px;
    margin-top: -5px;
    margin-bottom: 20px;
}

.student-review-section form .form-group {
    margin-bottom: 25px;
    text-align: left;
}

.student-review-section form .student-rating label {
    float: right;
    position: relative;
    width: 23px;
    height: 23px;
    cursor: pointer;
}

.student-review-section form .student-rating label:not(:first-of-type) {
    padding-right: 5px;
}

.student-review-section form .student-rating label:before {
    content: "\2605";
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 27px;
    color: #CCCCCC;
    line-height: 1;
}

.student-review-section form .student-rating input {
    display: none;
}

.student-review-section form .student-rating input:checked~label:before,
.student-review-section form .rating:not(:checked)>label:hover:before,
.student-review-section form .rating:not(:checked)>label:hover~label:before {
    color: #ffbc1f;
}

.carriculum-box .accordion {
    padding: 10px;
}

.carriculum-box .accordion-body {
    padding: 20px 0 0;
}

.carriculum-content {
    padding: 10px;
    border: 1px solid var(--borderColor);
    border-radius: 10px;
}

.carriculum-btn {
    padding: 0;
    color: var(--mainColor);
    font-weight: 600;
    font-size: 16px;
}

.carriculum-btn:focus {
    box-shadow: none;
    border: none;
}

.carriculum-btn:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    color: var(--mainColor);
}

.carriculum-box {
    border: none;
    padding: 5px;
    width: 100%;
    height: 420px;
    overflow-y: scroll;
}

.carriculum-box::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

.carriculum-box::-webkit-scrollbar-track {
    background-color: var(--offWhiteColor);
}

.carriculum-box::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

.carriculum-box::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

.meta-progress {
    margin-bottom: 20px;
}

.meta-progress .p-header {
    margin-bottom: 10px;
}

.meta-progress .p-header p {
    margin-bottom: 0;
    color: var(--mainColor);
}

.meta-progress .p-header p {
    margin-bottom: 0;
    color: var(--mainColor);
}

.meta-progress .progress-section {
    margin-bottom: 0;
}

.meta-progress .progress {
    height: 5px;
    background-color: var(--offWhiteColor);
    width: 100%;
}

.meta-progress .progress-bar {
    width: 0;
    animation: progress 1.5s ease-in-out forwards;
    background-color: var(--primaryColor);
}

.carriculum-item {
    margin-bottom: 20px;
}

.carriculum-item:last-child {
    margin-bottom: 0px;
}

.course-into .icon {
    margin-right: 10px;
    font-size: 20px;
    color: var(--mainColor);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--offWhiteColor);
    border-radius: 30px;
}

a.course-set {
    margin-bottom: 20px;
}

a.course-set:last-child {
    margin-bottom: 0px;
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 25px;
}

.course-into span {
    font-size: 15px;
    color: var(--mainColor);
}

.course-time span {
    font-size: 15px;
    color: var(--mainColor);
    background-color: var(--offWhiteColor);
    padding: 5px 20px;
    margin-right: 15px;
    border-radius: 5px;
}

.single-course-sidebar .course-widget {
    border: 1px solid var(--borderColor);
    padding: 30px 20px;
    border-radius: 10px;
}

.single-course-sidebar .course-widget .course-video a img {
    width: 100%;
}

.course-video .play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    height: 60px;
    width: 60px;
}

.single-course-sidebar .course-widget .course-video {
    position: relative;
    background-image: url(../img/all-img/course-promo.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.single-course-sidebar .course-widget .course-video .cr-video-btn {
    position: absolute;
    content: '';
    top: 25px;
    display: inline-table;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 30px;
    color: var(--mainColor);
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--whiteColor);
    border-radius: 42px;
}

.single-course-sidebar .course-widget .course-video {
    margin-bottom: 20px;
}

.single-course-sidebar .course-widget h3 {
    font-size: 35px;
}

.single-course-sidebar .course-widget .style-one {
    display: inherit;
    text-align: center;
}

.single-course-sidebar .course-widget .sidebar-content .courses-details {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}

.single-course-sidebar .course-widget .sidebar-content .courses-details li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.single-course-sidebar .course-widget .sidebar-content .courses-details li p {
    margin-bottom: 0px;
}

.single-course-sidebar .course-widget .sidebar-content .courses-details li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.single-course-sidebar .course-widget .sidebar-content .courses-details li .icon img {
    margin-right: 5px;
}

.single-course-sidebar .course-widget .sidebar-content .course-shared {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.sidebar-content .btn.dec-clor {
    background-color: var(--offWhiteColor);
    color: var(--mainColor);
}

.sidebar-content .btn.dec-clor img {
    filter: brightness(0) invert(0);
}

.sidebar-content .btn.dec-clor:hover {
    color: var(--whiteColor);
}

.sidebar-content .btn.dec-clor:hover img {
    filter: brightness(0) invert(1);
}

/* ====================
  testimonial Section 
=====================*/

.testimonial-box {
    border: 1px solid var(--borderColor);
    padding: 30px 20px;
    border-radius: 20px;
    max-width: 350px;
    transition: var(--transition);
}

.testimonial-box .image img {
    margin-right: 10px;
}

.testimonial-box .content h5 {
    margin-bottom: 5px;
    transition: var(--transition);
}

.testimonial-box .content p {
    color: var(--secondaryColor);
    transition: var(--transition);
}

.testimonial-section .content .slider-btn {
    justify-content: start;
}

.testimonial-box .ratings li i {
    color: var(--secondaryColor);
    transition: var(--transition);
}

.testimonial-box .info .icon {
    opacity: 0;
}

.testimonial-cards .owl-item {
    left: -173px;
}

.testimonial-cards .owl-item.center .testimonial-box .info .icon {
    opacity: 1;
}

.testimonial-cards .owl-item.center {
    border-radius: 20px;
    background-color: var(--primaryColor);
    transition: var(--transition);
    justify-content: center;
}

.testimonial-cards .owl-item.center .testimonial-box {
    max-width: 100%;
}

.testimonial-cards .owl-item.center .testimonial-box {
    border-color: var(--primaryColor);
}

.testimonial-cards .owl-item.center .testimonial-box .content h5 {
    color: var(--whiteColor);
}

.testimonial-cards .owl-item.center .testimonial-box .content p {
    color: var(--whiteColor);
}

.testimonial-cards .owl-item.center .testimonial-box .box-content p {
    color: var(--whiteColor);
}

.single-testimonial-content {
    margin-bottom: 25px;
}

.single-testimonial-content h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.single-testimonial-content .btn {
    margin-top: 10px;
}

.single-testimonial-card {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    background-color: var(--whiteColor);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
}

.single-testimonial-card .user {
    margin-bottom: 15px;
}

.single-testimonial-card .user .image {
    display: block;
    flex: 0 0 auto;
    margin-right: 20px;
}

.single-testimonial-card .user .image img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
}

.single-testimonial-card .user .content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-testimonial-card .review {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(198, 201, 212, 1);
}

.single-testimonial-card .review li {
    margin-right: 8px;
}

.single-testimonial-card .review li:last-child {
    margin-right: 0;
}

.single-testimonial-card .review li i {
    color: var(--secondaryColor);
}

.testimonial-slider-2 {
    margin-bottom: 25px;
}

.testimonial-slider-2.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--blackColor);
}

.testimonial-slider-2.owl-theme .owl-dots .owl-dot span {
    margin-right: 10px;
    border: unset;
    background-color: rgba(246, 246, 246, 1);
}

.testimonial-slider-2.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--blackColor);
}

/* ====================
  Benefits Section 
=====================*/

.benefits-box {
    padding: 30px 25px;
    margin-bottom: 25px;
}

.benefits-box .icon {
    height: 80px;
    width: 80px;
    border-radius: 45px;
    text-align: center;
    line-height: 80px;
    background-color: var(--offWhiteColor);
    margin-bottom: 30px;
}

.benefits-box .content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.custom-nav .owl-carousel .owl-nav .owl-prev,
.custom-nav .owl-carousel .owl-nav .owl-next,
.custom-nav .owl-carousel .owl-dot {
    text-align: center;
    width: 80px;
    height: 60px;
    border-radius: 60px;
    justify-content: center;
    cursor: pointer;
    background-color: var(--primaryColor) !important;
    transition: var(--transition);
    box-shadow: 0px 6px 30px 0px #0001110D;
}

.custom-nav .owl-carousel .owl-nav .owl-prev:hover,
.custom-nav .owl-carousel .owl-nav .owl-next:hover {
    background-color: var(--secondaryColor) !important;
}

.custom-nav .owl-carousel .owl-nav .owl-prev img,
.custom-nav .owl-carousel .owl-nav .owl-next img {
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.custom-nav .owl-carousel .owl-nav .owl-prev {
    transform: rotate(180deg);
    margin-right: 10px;
}

.testimonial-section .owl-theme .owl-nav {
    left: -75%;
    position: absolute;
    content: '';
    margin: 0;
    bottom: 15px;
}

.owl-carousel .owl-item img {
    display: inline-block;
    width: initial;
}

/* ====================
  Faq Section 
=====================*/

.faq-content .faq .accordion-button {
    color: var(--mainColor);
    font-weight: 600;
    font-size: 16px;
    padding: 25px 20px;
    border-radius: 60px;
}

.faq-content .faq .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: var(--offWhiteColor);
    border-radius: 30px 30px 0 0;
}

.faq-content .faq .accordion-button:focus {
    box-shadow: none;
}

.faq-content .faq .accordion-item {
    margin-bottom: 20px;
    border-radius: 30px;
    border: none;
    box-shadow: 0px 5px 30px 0px #0001110D;
}

.faq-content .faq .accordion-item .accordion-body {
    background-color: var(--offWhiteColor);
    padding-top: 0;
}

.faq-content .faq .accordion-item:last-child {
    margin-bottom: 0px;
}

.faq-content .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 30px;
}

/* ====================
  Contact Section 
=====================*/

.contact-section {
    position: relative;
    bottom: -100px;
    z-index: 5;
}

.contact-section .contact-form {
    padding: 30px 20px;
    box-shadow: 0px 5px 30px 0px #0001110D;
    background-color: var(--whiteColor);
    border-radius: 5px;
}

.contact-section .contact-info .info-item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.contact-section .contact-info .info-item .icon {
    height: 80px;
    width: 80px;
    border-radius: 60px;
    text-align: center;
    line-height: 80px;
    color: var(--mainColor);
    background-color: var(--offWhiteColor);
    margin-right: 20px;
}

.contact-section .social-profile li a {
    height: 40px;
    width: 40px;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
    box-shadow: 0px 5px 30px 0px #0001110D;
    display: block;
    color: var(--mainColor);
    margin-right: 5px;
}

.contact-section .social-profile li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.contact-section .social-profile span {
    font-weight: 600;
    color: var(--mainColor);
    margin-right: 20px;
}

.office-map {
    width: 100%;
    height: 650px;
}

.office-map iframe {
    width: 100%;
    height: 100%;
}

/* ====================
  Error Section 
=====================*/

.error-content h2 {
    font-weight: 600;
}

.error-btns a {
    margin-right: 20px;
}

.error-btns .btn:last-child {
    margin-right: 0px;
}

.btn.dark {
    background-color: var(--mainColor) !important;
}

/* ====================
  success Section 
=====================*/

.success-content h2 {
    color: #35B729;
}

/* ====================
  Sign Section 
=====================*/

.sign-content {
    padding: 35px 30px;
    max-width: 600px;
    margin: auto;
    border: 1px solid var(--borderColor);
    border-radius: 5px;
}

.acount-s .btn {
    background-color: var(--offWhiteColor);
    padding: 16px 25px;
}

.acount-s .btn img {
    margin-right: 10px;
}

.log-from .btn.signin {
    background-color: var(--offWhiteColor);
    color: var(--mainColor);
}

.log-from .btn.signin:hover {
    color: var(--whiteColor);
}

.sign-link a {
    text-decoration: underline;
    color: var(--mainColor);
}

.sign-link a:hover {
    color: var(--secondaryColor);
}

.log-from .meta-info a {
    color: var(--secondaryColor);
}

.log-from .form-group input:focus {
    border-color: var(--secondaryColor);
}

.text-sin::after {
    position: absolute;
    content: '';
    top: 24px;
    left: 0;
    background-color: var(--borderColor);
    height: 1px;
    width: 100%;
    z-index: 0;
}

.text-sin p {
    padding: 10px 15px;
    background-color: var(--whiteColor);
    position: relative;
    z-index: 1;
    display: inline-block;
}

/*================================================
Single Product
=================================================*/

.product-details .product-dec {
    padding: 35px 30px 25px;
    border: 1px solid var(--secondaryColor);
    border-radius: 5px;
}

.product-details .product-dec p {
    position: absolute;
    top: -25px;
    left: 30px;
    background-color: var(--whiteColor);
    display: inline-block;
    padding: 10px;
    font-weight: 600;
    color: var(--secondaryColor);
    font-size: 16px;
    margin: 0;
}

.product-details .pr-price {
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--borderColor);
}

.product-details .meta-info {
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--borderColor);
}

.product-details .meta-info li {
    margin-right: 20px;
}

.product-details .meta-info li a:hover {
    color: var(--primaryColor);
}

.product-details .meta-info li i {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-right: 6px;
}

.product-details .tags a:hover {
    color: var(--primaryColor);
}

.product-details-wapper .pr-ot li {
    color: var(--mainColor);
    line-height: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.product-details-wapper .pr-ot li span {
    font-size: 25px;
    position: absolute;
    content: '';
    top: 2px;
    left: 0;
}

.input-counter {
    margin-right: 10px;
}

.input-counter input {
    height: 55px;
    border-radius: 10px 0px 0px 10px;
    border: 1px solid var(--borderColor);
    width: 50px;
    border-right: none;
    text-align: center;
    font-weight: 600;
}

.input-counter .scale-btn span {
    padding: 4px 10px;
    border: 1px solid var(--borderColor);
    font-weight: 600;
    color: var(--mainColor);
    cursor: pointer;
}

.product-details-wapper .course-tab {
    display: inline-flex;
}

.product-gallery .carousel-indicators [data-bs-target] {
    width: 100px;
    height: auto;
    padding: 0;
    margin: 0 0px 5px 0;
    text-indent: initial;
    background-color: transparent;
    border: 1px solid transparent;
    opacity: 1;
}

.product-gallery .carousel-indicators img {
    width: 100px;
    height: 110px;
    object-fit: cover;
    border-radius: 5px;
}

.product-gallery .carousel-indicators {
    position: absolute;
    right: initial;
    bottom: auto;
    left: 0;
    z-index: 2;
    display: grid;
    padding: 0;
    margin-right: 0;
    margin-bottom: 0px;
    margin-left: 0;
}

.product-gallery .carousel-inner {
    margin-left: 130px;
    max-width: 430px !important;
}

.product-gallery .carousel-item img {
    border-radius: 5px;
}

.product-gallery .carousel-indicators .active {
    opacity: 1;
    border: 1px solid var(--secondaryColor) !important;
    border-radius: 10px;
}

/*================================================
Shop Section
=================================================*/

.single-product {
    padding: 25px;
    box-shadow: 0px 5px 30px 0px #0001110D;
    background-color: var(--whiteColor);
    border-radius: 5px;
}

.single-product .image {
    margin-bottom: 20px;
    position: relative;
}

.single-product .image .product-opt {
    position: absolute;
    content: '';
    left: 6%;
    top: 0%;
    opacity: 0;
    transition: var(--transition);
}

.single-product:hover .product-opt {
    top: 12%;
    opacity: 1;
}

.single-product .image .product-opt li a {
    height: 40px;
    width: 40px;
    border-radius: 30px;
    line-height: 40px;
    background-color: var(--whiteColor);
    text-align: center;
    margin-bottom: 10px;
    display: block;
    font-size: 18px;
}

.single-product .image .product-opt li a:hover {
    color: var(--secondaryColor);
}

.single-product .meta-info .pr-btn {
    padding: 5px 25px;
    border-radius: 20px;
    background-color: var(--offWhiteColor);
    color: var(--mainColor);
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
}

.single-product .meta-info .pr-btn:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.single-product .pr-price .price {
    color: var(--secondaryColor);
}

.single-product .ratings li i {
    color: var(--secondaryColor);
}

.single-product .ratings span {
    margin-left: 7px;
    font-size: 15px;
    color: var(--mainColor);
}

.pr-bg-1 {
    background-image: url(../img/all-img/shop/feture-product-1.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.pr-bg-2 {
    background-image: url(../img/all-img/shop/feture-product-2.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.single-feature-product {
    padding: 140px 30px 30px;
    transition: var(--transition);
}

.single-feature-product::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(360deg, #02001D 0%, rgba(0, 5, 51, 0) 100%);
}

.single-feature-product .content {
    position: relative;
    z-index: 5;
}

.single-feature-product .content .ratings li i {
    color: var(--secondaryColor);
}

.single-feature-product .content h4 {
    position: relative;
    top: 25px;
    transition: var(--transition);
}

.single-feature-product:hover .content h4 {
    top: 0;
}

.single-feature-product .content .meta-info span {
    font-weight: 600;
}

.single-feature-product .meta-info {
    opacity: 0;
    transition: var(--transition);
}

.single-feature-product:hover .meta-info {
    opacity: 1;
}

.single-feature-product .card-btn p {
    opacity: 0;
    transition: var(--transition);
}

.single-feature-product:hover .card-btn p {
    opacity: 1;
}

.edu-grid-sorting.style-one .grid-short .accordion-button {
    border-radius: 30px;
}

.edu-grid-sorting.style-one .product-section .grid-short .accordion-item:last-of-type .accordion-button.collapsed {
    border-radius: 30px;
}

/*================================================
Checkout Area CSS
=================================================*/

.checkout-from .condetion .edu-check {
    margin-right: 30px;
}

.checkout-from .condetion .edu-check:last-child {
    margin-right: 0px;
}

.checkout-from .condetion .edu-check-input {
    border: 1px solid var(--borderColor);
}

.checkout-sidebar .details-list {
    padding: 20px;
    border: 1px solid var(--borderColor);
    border-radius: 10px;
}

.checkout-sidebar .details-list .list-head {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.checkout-sidebar .details-list .list-body {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.checkout-sidebar .details-list .list-body li {
    margin-bottom: 20px;
}

.checkout-sidebar .details-list .list-body li:last-child {
    margin-bottom: 0px;
}

.card-list span {
    margin-right: 10px;
}

.card-details .card-types {
    margin-right: 15px;
}

.card-details .card-types:last-child {
    margin-right: 0px;
}

.card-details .form-group input {
    height: 45px;
    background-color: var(--offWhiteColor);
    border: none;
    border-radius: 30px;
}

/*================================================
Cart Area CSS
=================================================*/

.cart-table table {
    margin-bottom: 0;
}

.cart-table tbody,
td,
tfoot,
th,
thead,
tr {
    border-top: 0;
}

.cart-table table thead tr th:first-child {
    border-radius: 20px 0 0 20px;
}

.cart-table table thead tr th:last-child {
    border-radius: 0 20px 20px 0;
}

.cart-table table tbody {
    border-color: unset;
    border-style: unset;
    border-width: 0;
}

.cart-table table thead tr th {
    vertical-align: middle;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    text-align: center;
    background-color: var(--offWhiteColor);
}

.cart-table table thead tr th:first-child {
    text-align: left;
}

.cart-table table tbody tr {
    border-top: none;
    border-style: unset;
}

.cart-table table tbody tr td {
    vertical-align: middle;
    color: var(--mainColor);
    font-weight: 600;
    padding-bottom: 25px;
    padding-top: 25px;
    font-size: var(--fontSize);
    padding-left: 0;
    padding-right: 0;
    border-color: var(--borderColor);
    border-left: none;
    border-right: none;
    text-align: center;
}

.cart-table table tbody tr td .product-info .product-thumbnail i {
    top: 50%;
    left: 0;
    right: 0;
    width: 40px;
    content: '';
    margin: auto;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    border-radius: 30px;
    color: var(--mainColor);
    transform: translateY(-50%);
    transition: var(--transition);
    background-color: var(--whiteColor);
}

.cart-table table tbody tr td:nth-child(2) {
    text-align: left;
}

.cart-table table tbody tr td.product-info .product-thumbnail:hover i {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.cart-table table tbody tr td.product-info .product-thumbnail a img {
    position: relative;
}

.cart-table table tbody tr td .product-name {
    max-width: 299px;
}

.cart-table table tbody tr td .product-name a {
    font-weight: 600;
    color: var(--mainColor);
}

.cart-table table tbody tr td .product-name a:hover {
    color: var(--primaryColor);
}

.cart-table table tbody tr td.product-quantity .input-counter {
    margin-right: 0;
    justify-content: center;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
    height: 59px;
}

.cart-table table tbody tr td.product-quantity .input-counter .scale-btn span {
    padding: 0px 10px;
    display: block;
}

.cart-options-ft {
    margin-top: 30px;
}

.cart-options-ft .shopping-coupon-code {
    position: relative;
}

.cart-options-ft .shopping-coupon-code .form-control {
    height: 60px;
    border-radius: 30px;
    padding-left: 25px;
}

.cart-options-ft .shopping-coupon-code button {
    position: absolute;
    right: 30px;
    top: 15px;
    color: var(--primaryColor);
    background-color: transparent;
    border: none;
    padding: 0;
    outline: 0;
    font-size: 16px;
    font-weight: 600;
}

.cart-totals {
    background: var(--whiteColor);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid var(--borderColor);
}

.cart-totals h3 {
    margin-bottom: 25px;
    font-size: 22px;
}

.cart-totals ul {
    padding-left: 0;
    margin: 0 0 25px;
    list-style-type: none;
}

.cart-totals ul li {
    border-bottom: 1px solid var(--borderColor);
    padding: 10px 0;
}

.cart-totals ul li:last-child {
    border-bottom: none;
}

.cart-totals ul li span {
    float: right;
}

/* ====================
  Contributor Section 
=====================*/

.contributor-content {
    padding: 40px 30px;
    padding-right: 150px;
    overflow: hidden;
    border-radius: 5px;
}

.contributor-content span {
    padding: 10px;
    border: 1px solid var(--borderColor);
    margin-bottom: 20px;
    display: inline-block;
}

.contributor-content h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 15px;
    max-width: 265px;
}

.contributor-content p {
    margin-bottom: 25px;
}

.contributor-content.style-two p {
    margin-bottom: 80px;
}

.contributor-content .paly {
    padding: 0;
    position: absolute;
    height: 70px;
    width: 70px;
    font-size: 35px;
    text-align: center;
    line-height: 66px;
    border-radius: 100%;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
}

.contributor-content .paly i {
    left: 3px;
    position: relative;
}

.contributor-content .shape-image {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
}

.contributor-content .shape {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 365px solid var(--primaryColor);
    border-left: 80px solid transparent;
}

/* ====================
  Instructor Section
=====================*/

.details-profile .title-text {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.single-instructor-box.style-one {
    border-radius: 10px;
}

.single-instructor-box.style-one:hover .image ul {
    opacity: 1;
    right: 5%;
}

.single-instructor-box.style-one .image {
    position: relative;
}

.single-instructor-box.style-one ul {
    position: absolute;
    bottom: 4%;
    right: 0%;
    transition: var(--transition);
    opacity: 0;
}

.single-instructor-box .social-profile li a {
    height: 35px;
    display: inline-block;
    width: 35px;
    border-radius: 5px;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    text-align: center;
    line-height: 35px;
    margin-bottom: 15px;
}

.single-instructor-box .social-profile li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.single-instructor-box .details-info {
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 10px;
}

.single-instructor-box.style-one .content {
    border: none;
}

.single-instructor-box .content {
    padding: 20px 20px;
    border-left: 1px solid var(--borderColor);
    border-right: 1px solid var(--borderColor);
    border-bottom: 1px solid var(--borderColor);
}

.single-instructor-box .content .text h3 {
    margin-bottom: 5px;
}

.single-instructor-box .content .text p {
    margin-bottom: 10px;
}

.single-instructor-box .content .reat i {
    color: var(--secondaryColor);
}

.single-instructor-box .meta-info .item {
    margin-right: 20px;
}

.single-instructor-box .meta-info .item:last-child {
    margin-right: 0px;
}

.single-instructor-box .meta-info .item img {
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.edu-skills ul.info {
    margin-bottom: 30px;
}

.edu-skills ul.info li {
    padding: 10px 20px;
    background-color: var(--offWhiteColor);
    margin-bottom: 15px;
    border-radius: 30px;
}

.edu-skills ul.info li:last-child {
    margin-bottom: 0px;
}

.edu-skills ul.info li span {
    margin-right: 10px;
}

.edu-skills .social-profile li {
    display: inline-block;
    margin-right: 10px;
}

.edu-skills .social-profile li a {
    height: 40px;
    width: 40px;
    border-radius: 30px;
    text-align: center;
    line-height: 40px;
    background-color: var(--mainColor);
    display: block;
    color: var(--whiteColor);
}

.profile-scores {
    background-image: url(../img/banner/counter-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 30px 0px;
    border-radius: 10px;
    position: relative;
}

.profile-scores::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #012935CC;
    border-radius: 10px;
}

.profile-scores .item-score {
    position: relative;
    z-index: 2;
    text-align: center;
}

.profile-scores .item-score h2 {
    font-size: 50px;
    color: var(--whiteColor);
    display: inline-flex;
}

.profile-scores .item-score p {
    color: var(--whiteColor);
    margin-bottom: 0;
}

.skills-bar {
    padding: 30px;
    box-shadow: 0px 5px 30px 0px #0001110D;
}

.skill-progress .progress {
    height: 10px;
    border-radius: 10px;
}

.skill-progress .progress-section {
    margin-bottom: 20px;
}

.skill-progress .progress-section:last-child {
    margin-bottom: 0px;
}

.skill-progress .meta-info p {
    font-weight: 600;
    color: var(--mainColor);
}

.fit-options .search-filtter {
    margin-right: 15px;
}

.fit-options form .search-field {
    height: 50px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 60px;
    padding: 2px 0 0 50px;
    background-color: var(--offWhiteColor);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 400;
}

.fit-options form .search-btn {
    top: 4px;
    left: 17px;
    padding: 0;
    border: none;
    border-radius: 4px;
    font-size: 22px;
    line-height: 44px;
    position: absolute;
    color: var(--paraColor);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: transparent;
}

/* ====================
  Video Section
=====================*/

.video-section {
    background-image: url(../img/banner/video-area.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 300px 0px;
}

.icon-yl-clr {
    background-color: #FFBC1F;
    box-shadow: 0px 5px 30px 0px #FFBC1F4D;
}

.icon-rd-clr {
    background-color: #FF7E84;
    box-shadow: 0px 5px 30px 0px #FF7E844D;
}

.icon-gr-clr {
    background-color: #30BEAD;
    box-shadow: 0px 5px 30px 0px #30BEAD4D;
}

.icon-pr-clr {
    background-color: #8861DB;
    box-shadow: 0px 5px 30px 0px #8861DB;
}

.counter-box {
    background-color: var(--whiteColor);
    -webkit-box-shadow: 0px 5px 30px 0px #0001110D;
    box-shadow: 0px 5px 30px 0px #0001110D;
    text-align: center;
    position: relative;
    padding: 90px 30px 40px;
    margin-bottom: 30px;
    border-radius: 30px;
}

.counter-box .icon {
    height: 80px;
    width: 80px;
    position: absolute;
    content: '';
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
    line-height: 80px;
    border-radius: 80px;
}

.counter-box .count {
    font-size: 50px;
    font-weight: 600;
    color: var(--mainColor);
    margin-bottom: 20px;
}

.counter-box .counter p {
    font-size: 15px;
}

.score-area {
    position: relative;
    top: -75px;
}

.single-blog-box {
    box-shadow: 0px 5px 30px 0px #0001110D;
    border-radius: 10px;
    margin-bottom: 25px;
}

.single-blog-box .cr-tag a {
    position: absolute;
    top: 25px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 16px;
    background-color: var(--whiteColor);
    color: var(--mainColor);
    font-weight: 600;
}

.single-blog-box .cr-tag a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.single-blog-box .content {
    padding: 45px 20px 15px;
}

.single-blog-box .content .list-unstyle {
    margin-bottom: 10px;
}

.single-blog-box .content .list-unstyle li i {
    margin-right: 5px;
}

.single-blog-box .author a {
    display: inline-block;
    padding: 6px 12px;
    position: absolute;
    bottom: -22px;
    right: 20px;
    background-color: var(--whiteColor);
    box-shadow: 3px 3px 0 1px var(--primaryColor);
    border-radius: 30px;
}

.single-blog-box.style-2 .content .author {
    margin-bottom: 20px;
    padding: 6px 12px;
    display: inline-block;
    background-color: var(--whiteColor);
    box-shadow: 3px 3px 0 1px var(--primaryColor);
    border-radius: 30px;
    transition: var(--transition);
}

.single-blog-box.style-2 .content .author:hover {
    color: var(--whiteColor);
    background-color: var(--primaryColor);
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

.single-blog-box.style-2 .content .author:hover span {
    color: var(--whiteColor);
}

.single-blog-box.style-2 .content {
    padding: 25px 0 0px;
}

.single-blog-box .author span {
    font-size: 16px;
    font-weight: 600;
    color: var(--mainColor);
    margin-left: 5px;
}

.single-blog-content h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.single-blog-content .btn {
    margin-top: 10px;
}

.single-blog-card {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/all-img/single-blog-card-1.jpg);
}

.single-blog-card::after {
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 10px;
    position: absolute;
    background-color: rgba(0, 4, 44, 0.5);
}

.single-blog-card .date {
    width: 80px;
    height: 80px;
    padding: 16px;
    padding-top: 14px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 90px;
    display: inline-block;
    transition: var(--transition);
    background-color: var(--mainColor);
}

.single-blog-card .date span {
    font-weight: 600;
    line-height: 1;
    color: var(--whiteColor);
}

.single-blog-card h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.single-blog-card h3 a {
    color: var(--whiteColor);
}

.single-blog-card h3 a:hover {
    color: var(--secondaryColor);
}

.single-blog-card p {
    color: rgba(255, 255, 255, 1);
}

.single-blog-card .cr-items {
    padding-top: 20px;
    border-top: 1px solid rgba(198, 201, 212, 1);
}

.single-blog-card .cr-items li {
    margin-right: 40px;
}

.single-blog-card .cr-items li:last-child {
    margin-right: 0;
}

.single-blog-card .cr-items li .btn {
    border-radius: 5px;
    padding: 9px 22px;
    color: var(--mainColor);
    background-color: rgba(246, 246, 246, 1);
}

.single-blog-card .cr-items li span {
    color: rgba(255, 255, 255, 1);
}

.single-blog-card:hover .date {
    background-color: var(--secondaryColor);
}

.single-blog-card:hover .cr-items li .btn {
    color: var(--whiteColor);
}

.single-blog-card:hover .cr-items li .btn:before {
    width: 120%;
    visibility: visible;
    opacity: 1;
}

.single-blog-card.style-3 {
    background-image: unset;
    transition: var(--transition);
    border: 1px solid var(--primaryColor);
    background-color: rgba(255, 255, 255, 1);
}

.single-blog-card.style-3::after {
    opacity: 0;
    visibility: hidden;
}

.single-blog-card.style-3 p {
    color: var(--paraColor);
}

.single-blog-card.style-3 h3 {
    line-height: 1.5;
}

.single-blog-card.style-3 h3 a {
    color: var(--mainColor);
}

.single-blog-card.style-3 .date {
    margin-bottom: 30px;
    transition: var(--transition);
    background-color: rgba(246, 246, 246, 1);
}

.single-blog-card.style-3 .date span {
    color: var(--mainColor);
    transition: var(--transition);
}

.single-blog-card.style-3:hover .date {
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-blog-card.style-3:hover .date span {
    color: var(--whiteColor);
}

.single-blog-card.style-3 .cr-items li .btn::before {
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-blog-card.style-3 .user-list {
    margin-bottom: 20px;
}

.single-blog-card.style-3 .user-list li {
    margin-right: 10px;
    padding-left: 25px;
    position: relative;
}

.single-blog-card.style-3 .user-list li:last-child {
    margin-right: 0;
}

.single-blog-card.style-3 .user-list li i {
    top: 0;
    left: 0;
    font-size: 20px;
    position: absolute;
}

.single-blog-card.style-3::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 11px;
    transition: var(--transition);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-blog-card.style-3:hover::before {
    opacity: 1;
    visibility: visible;
}

.single-blog-card.style-3:hover {
    border-color: rgba(198, 201, 212, 1);
}

/* ====================
  Subscribe Section
=====================*/

.subscribe-area::before {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    content: '';
    position: absolute;
    background-color: #012935;
}

.subscribe-info {
    padding: 50px;
    border-radius: 20px;
    background: var(--whiteColor);
    box-shadow: 0px -4px 0 0px var(--primaryColor);
}

.subscribe-area .content {
    padding-right: 100px;
}

.subscribe-area .content p {
    margin-bottom: 0;
}

.subscribe-area .subscribe-from {
    position: relative;
}

.subscribe-area .subscribe-from .from-control {
    padding: 25px 30px;
    border-radius: 45px;
    width: 100%;
    border: 1px solid #dfdfdf;
}

.subscribe-area .subscribe-from button {
    position: absolute;
    right: 20px;
}

/* ====================
  Page Title
=====================*/

.page-title-area {
    background-image: url(../img/banner/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
}

.page-title-content h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-title-content .page-breadcrumb {
    padding: 20px;
    background-color: var(--whiteColor);
    border-radius: 10px;
    display: inline-flex;
}

.page-title-content .page-breadcrumb .breadcrumb-item {
    color: var(--mainColor);
    font-weight: 600;
    margin-right: 10px;
}

.page-title-content .page-breadcrumb .primery-link {
    color: var(--primaryColor);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "-");
}

.page-title-area .shape-1 {
    position: absolute;
    top: 16%;
    left: 35%;
}

.page-title-area .shape-2 {
    position: absolute;
    bottom: 15%;
    left: 47%;
}

.page-title-area .shape-3 {
    position: absolute;
    top: 18%;
    right: 20%;
}

/* ====================
  Pagination CSS
=====================*/

ul.page-nav {
    padding: 0;
}

.page-nav li {
    margin: 0 4px;
    display: inline-block;
}

.page-nav li a {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    line-height: 35px;
    text-align: center;
    color: var(--paraColor);
    background-color: var(--whiteColor);
    transition: var(--transition);
    border: 1px solid var(--borderColor);
}

.page-nav li a i {
    font-size: 25px;
    font-weight: 300;
    line-height: 0.8;
    margin: 0 auto;
    transition: var(--transition);
}

.page-nav li a img {
    transition: var(--transition);
}

.page-nav li a:hover img {
    filter: brightness(0) invert(1);
}

.page-nav li a.active,
.page-nav li a:hover {
    opacity: 1;
    background-color: var(--primaryColor);
    border-color: transparent;
    color: var(--whiteColor);
}

.page-nav li:first-child,
.page-nav li:last-child {
    position: relative;
    top: 2px;
}

.page-nav li:first-child {
    transform: rotate(180deg);
}

/*================================================
Edu widgets Area CSS
=================================================*/

.widget {
    background-color: var(--whiteColor);
    padding: 30px 20px;
    margin-bottom: 30px;
    border: 1px solid var(--borderColor);
    border-radius: 5px;
}

.widget:last-child {
    margin-bottom: 0px;
}

.widget-search form {
    position: relative;
    margin-bottom: 30px;
}

.widget .accordion-button {
    padding: 0;
    border: none;
}

.widget .accordion-button:focus {
    box-shadow: none;
}

.widget .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}

.widget .accordion-item {
    border: none;
}

.widget-search form label {
    display: block;
    margin-bottom: 0;
}

.widget-search form .search-field {
    height: 60px;
    display: block;
    width: 100%;
    border: none;
    border-radius: 60px;
    padding: 2px 0 0 15px;
    border: 1px solid var(--borderColor);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 400;
}

.widget-search form .search-field::-webkit-input-placeholder {
    color: #999999;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-search form .search-field:-ms-input-placeholder {
    color: #999999;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-search form .search-field::-ms-input-placeholder {
    color: #999999;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-search form .search-field::placeholder {
    color: #999999;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-search form .search-field:focus::-webkit-input-placeholder {
    color: transparent;
}

.widget-search form .search-field:focus:-ms-input-placeholder {
    color: transparent;
}

.widget-search form .search-field:focus::-ms-input-placeholder {
    color: transparent;
}

.widget-search form .search-field:focus::placeholder {
    color: transparent;
}

.widget-search form .widget-search-btn {
    top: 8px;
    right: 20px;
    padding: 0;
    border: none;
    border-radius: 4px;
    font-size: 25px;
    line-height: 44px;
    position: absolute;
    color: var(--paraColor);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: transparent;
}

.widget-search form .widget-search-btn:hover {
    color: var(--primaryColor);
}

.widget-title {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    padding-bottom: 25px !important;
    color: var(--mainColor) !important;
    border-bottom: 1px solid var(--borderColor) !important;
}

.widget-catgory ul {
    list-style: none;
    padding: 0;
}

.widget-catgory ul li a {
    padding: 12px 20px;
    background-color: var(--offWhiteColor);
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--paraColor);
    margin-bottom: 18px;
}

.widget-catgory ul li p {
    margin-bottom: 0px;
}

.widget-catgory ul li a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.widget-catgory ul li i {
    font-size: 28px;
}

.filter-widget .widget-title {
    margin-bottom: 0px;
    font-weight: 600;
    padding-bottom: 0px !important;
    color: var(--mainColor) !important;
    border-bottom: none !important;
}

.widget.filter-widget .btn-filter {
    background: transparent;
    border: 1px solid var(--borderColor);
    padding: 3px 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

.widget.filter-widget .btn-filter:hover {
    background: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    color: var(--whiteColor);
}

.filter-info .filter-bar .price-range-slider {
    margin-top: 10px;
}

.filter-info .filter-bar .price-range-slider .range-value {
    position: relative;
}

.filter-info .filter-bar .price-range-slider .range-value input {
    width: 100%;
    border: none;
    font-size: 16px;
    box-shadow: none;
    font-weight: initial;
    background: none;
    color: var(--blackColor);
}

.filter-info .filter-bar .price-range-slider .range-bar {
    width: 100%;
    height: 7px;
    margin-bottom: 20px;
    margin-top: 20px;
    border: none;
    background-color: #e4e4e4;
    position: relative;
}

.filter-info .filter-bar .price-range-slider .range-bar .ui-slider-range {
    height: 7px;
    background-color: var(--primaryColor);
}

.filter-info .filter-bar .price-range-slider .range-bar .ui-slider-handle {
    display: inline-block;
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 12;
    height: 14px;
    width: 4px;
    border-radius: 5px;
    background: var(--primaryColor);
    content: '';
}

.filter-info .filter-bar .price-range-slider .range-bar .ui-slider-handle+span {
    background-color: var(--primaryColor);
}

.edu-check {
    margin-bottom: 20px;
}

.edu-check:last-child {
    margin-bottom: 0px;
}

.edu-check-input {
    border: none;
    background-color: var(--offWhiteColor);
    height: 30px;
    width: 30px;
    border-radius: 18px !important;
    margin-right: 20px;
    margin-top: 0;
    padding: 0;
    cursor: pointer;
    box-shadow: none !important;
}

.edu-check-input:checked {
    border: none;
    background-color: var(--primaryColor);
    --bs-form-check-bg-image: url(../img/all-img/check-icon.png) !important;
    box-shadow: none;
}

.edu-check-label {
    cursor: pointer;
    color: var(--paraColor);
    font-size: 15px;
}

.edu-check-label span i {
    color: var(--secondaryColor);
    margin-right: 5px;
}

.widget-rating .edu-check ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-rating .edu-check ul li {
    display: inline-block;
    margin-right: 2px;
}

.widget-rating .edu-check ul li i {
    color: #ffbc1f;
    font-size: 24px;
}

.widget-rating .edu-check ul li .desstar {
    color: #cfcfcf;
}

.widget-resent-course .item {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 1px solid #ececec;
    padding-left: 95px;
    padding-bottom: 20px;
}

.widget-resent-course .item:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

.widget-resent-course .thumb {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    border-radius: 4px;
}

.widget-resent-course .item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 2px;
}

.widget-resent-course .item ul li {
    display: inline-block;
    margin-right: 2px;
}

.widget-resent-course .item ul li i {
    color: #ffbc1f;
    font-size: 18px;
}

.widget-resent-course .item h4 {
    font-size: 20px;
    font-weight: 500;
}

.widget-resent-course .item span {
    color: var(--secounderyColor);
    font-weight: 500;
    font-size: 18px;
}

.widget-recent-blog .item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 115px;
}

.widget-recent-blog .item:last-child {
    margin-bottom: 0px;
    border-bottom: none;
    padding-bottom: 0px;
}

.widget-recent-blog .item .thumb {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100px;
    width: 100px;
    border-radius: 4px;
}

.widget-recent-blog .item h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    color: var(--mainColor);
}

.widget-recent-blog .item p {
    font-size: 16px;
    margin-bottom: 0px;
}

.widget-recent-blog .item p a {
    color: var(--mainColor);
    font-weight: 600;
}

.widget-tag-cloud .tagcloud a {
    display: inline-block;
    background-color: var(--offWhiteColor);
    color: var(--blackColor);
    padding: 6px 14px 6px;
    border: none;
    font-size: 15px !important;
    margin-bottom: 15px;
    margin-right: 5px;
    border-radius: 30px
}

.widget-tag-cloud .tagcloud a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

.widget-add {
    background-image: url(../img/all-img/add-image.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 50px;
    text-align: center;
    position: relative;
    border-radius: 10px;
}

.widget-add::after {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, rgba(0, 13, 33, 0.5) 0%, rgba(0, 13, 33, 0.5) 100%);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    border-radius: 10px;
}

.widget-add .content {
    position: relative;
    z-index: 2;
}

.widget-add .content p {
    color: var(--whiteColor);
    font-weight: 600;
    border-bottom: 1px solid var(--whiteColor);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.widget-add .content img {
    padding: 10px 20px;
    background: var(--whiteColor);
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
}

/*-------------------------------
  Blog Details  CSS
-------------------------------*/

.b-details-content .image {
    position: relative;
}

.b-details-content .image span {
    position: absolute;
    content: '';
    display: inline-block;
    padding: 6px 23px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    font-weight: 600;
    top: 30px;
    left: 30px;
    border-radius: 5px;
}

.b-details-content .meta-info {
    padding: 30px 0px 20px;
    border-bottom: 1px solid var(--borderColor);
    margin-bottom: 20px;
}

.b-details-content .meta-info .author-info {
    margin-right: 20px;
}

.b-details-content .meta-info .author-info img {
    margin-right: 10px;
}

.b-details-content .meta-info .item-info {
    margin-right: 20px;
}

.b-details-content .meta-info .item-info span {
    margin-right: 10px;
}

.b-details-content .content h2 {
    margin-bottom: 20px;
}

.b-details-content blockquote,
.blockquote {
    background-color: var(--offWhiteColor);
    padding: 40px 30px !important;
    margin-bottom: 40px;
    margin-top: 40px;
    border-radius: 6px;
    position: relative;
}

.b-details-content .wp-block-quote .icon {
    position: absolute;
    content: '';
    top: -15px;
    left: 30px;
}

.b-details-content .wp-block-quote span {
    position: absolute;
    content: '';
    bottom: -15px;
    left: 30px;
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.courses-area-3::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    content: '';
    z-index: -1;
    position: absolute;
    background-color: rgba(246, 246, 246, 1);
}

.single-courses-info {
    padding: 17px;
    padding-top: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
}

.single-courses-info::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 11px;
    transition: var(--transition);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-courses-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.single-courses-info .icon {
    margin-bottom: 25px;
}

.single-courses-info p {
    margin-bottom: 0;
}

.single-courses-info:hover::before {
    opacity: 1;
    visibility: visible;
}

.single-courses-box.style-3 {
    padding: 0;
    background-color: var(--whiteColor);
}

.single-courses-box.style-3::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 11px;
    transition: var(--transition);
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-courses-box.style-3:hover:before {
    opacity: 1;
    visibility: visible;
}

.single-courses-box.style-3 .image {
    margin-bottom: 30px;
}

.single-courses-box.style-3 .meta-info {
    padding: 20px;
    margin-bottom: 0;
}

.single-courses-box.style-3 .content {
    padding: 0 20px;
}

.single-courses-box.style-3 .cr-items {
    padding: 20px;
}

.single-courses-box.style-2 .cr-items li .btn::before {
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.single-courses-box.style-3 .cr-tag a {
    top: auto;
    left: auto;
    right: 20px;
    bottom: -20px;
    padding: 6px 20px;
    border-radius: 5px;
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.course-slider {
    position: relative;
}

.course-slider.owl-theme .owl-nav .owl-prev,
.owl-next {
    right: 70px;
    top: -120px;
    width: 60px;
    height: 60px;
    line-height: 0;
    font-size: 30px;
    text-align: center;
    border-radius: 100%;
    position: absolute;
    display: inline-block;
    background-color: transparent;
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.course-slider.owl-theme .owl-nav .owl-next {
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #573BFF 0%, rgba(255, 138, 122, 0.97) 100%);
}

.article-tags a {
    display: inline-block;
    background-color: var(--offWhiteColor);
    color: var(--blackColor);
    padding: 6px 14px 6px;
    border: none;
    font-size: 15px !important;
    margin-right: 5px;
    border-radius: 30px;
}

.article-tags a:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

.article-tags span {
    font-size: 20px;
    font-weight: 600;
    color: var(--mainColor);
    margin-right: 15px;
}

.article-share .social {
    padding: 8px 22px;
    background-color: var(--offWhiteColor);
    border-radius: 30px;
}

.article-share .social li {
    display: inline-block;
    margin-right: 6px;
}

.article-share .social li a {
    color: var(--mainColor);
    font-size: 18px;
}

.article-share .social li a:hover {
    color: var(--primaryColor);
}

.article-share span {
    font-size: 20px;
    font-weight: 600;
    color: var(--mainColor);
    margin-right: 15px;
}

.edu-post-navigation {
    margin-top: 30px;
}

.prev-link-wrapper {
    margin-right: 40px;
}

.info-prev-link-wrapper,
.info-next-link-wrapper {
    padding: 15px 15px;
    border: 1px solid var(--borderColor);
    border-radius: 6px;
    margin-bottom: 20px;
}

.prev-link-wrapper .image-prev {
    display: inline-block;
    min-width: 100px;
    width: 100px;
    border-radius: 5px;
    vertical-align: top;
    margin-right: 15px;
}

.prev-link-wrapper .prev-link-info-wrapper .post-nav-title {
    color: var(--primaryColor);
    font-size: 16px;
    display: block;
}

.prev-link-wrapper .prev-link-info-wrapper .prev-title {
    font-weight: 600;
    color: var(--mainColor);
}

.next-link-wrapper .prev-link-info-wrapper .post-nav-title {
    color: var(--primaryColor);
    font-size: 16px;
    display: block;
}

.next-link-wrapper .prev-link-info-wrapper .prev-title {
    font-weight: 600;
    color: var(--mainColor);
}

.next-link-wrapper .image-prev {
    display: inline-block;
    min-width: 100px;
    width: 100px;
    border-radius: 5px;
    vertical-align: top;
    margin-left: 15px;
}

.next-link-wrapper .prev-link-info-wrapper {
    text-align: end;
}

.comments-area {
    margin-top: 50px;
}

.comments-area .comments-title {
    line-height: initial;
    margin-bottom: 30px;
    font-size: 20px;
}

.comments-area ol,
.comments-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.comments-area .comment-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.comments-area .children {
    margin-left: 20px;
}

.comments-area .comment-slide {
    padding: 20px 30px;
    border: 1px solid var(--borderColor);
    margin-bottom: 20px;
    border-radius: 5px;
}

.comments-area .comment-body {
    padding-left: 110px;
    position: relative;
}

.comments-area .comment-content p {
    font-size: 15px;
    margin-bottom: 0;
}

.comments-area .comment-body .reply {
    margin-top: 15px;
}

.comments-area .comment-body .reply i {
    font-size: 20px
}

.comments-area .comment-body .reply a {
    color: var(--secondaryColor);
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}

.comments-area .comment-body .reply a:hover {
    color: var(--primaryColor);
}

.comments-area .comment-author {
    font-size: 16px;
    margin-bottom: 6px;
}

.comments-area .comment-author .avatar {
    height: 85px;
    left: 0;
    position: absolute;
    top: 0;
    width: 85px;
}

.comments-area .comment-author .reply {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
}

.comments-area .comment-content .reply {
    display: none;
}

.comments-area .comment-author .fn {
    font-weight: 600;
    font-size: 16px;
}

.comments-area .comment-author .says {
    display: none;
}

.comments-area .comment-metadata {
    margin-bottom: .7em;
    color: var(--primaryColor);
    letter-spacing: 0.01em;
    font-size: 15px;
}

.comments-area .comment-respond {
    margin-top: 30px;
}

.comments-area .comment-respond .icon li {
    margin-right: 2px;
    margin-bottom: 15px;
}

.comments-area .comment-respond .icon li i {
    color: #ff1409;
    font-size: 20px;
}

.comments-area .comment-respond .comment-reply-title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600;
}

.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
    display: inline-block;
}

.comments-area .comment-respond .comment-form {
    overflow: hidden;
}

.comments-area .comment-respond .comment-notes {
    margin-bottom: 20px;
    margin-top: 10px;
}

.comments-area .comment-respond .comment-notes .required {
    color: red;
}

.comments-area .comment-respond .comment-form-comment {
    float: left;
    width: 100%;
}

.comments-area .comment-respond label {
    display: none;
}

.comments-area .comment-respond input[type="date"],
.comments-area .comment-respond input[type="time"],
.comments-area .comment-respond input[type="datetime-local"],
.comments-area .comment-respond input[type="week"],
.comments-area .comment-respond input[type="month"],
.comments-area .comment-respond input[type="text"],
.comments-area .comment-respond input[type="email"],
.comments-area .comment-respond input[type="url"],
.comments-area .comment-respond input[type="password"],
.comments-area .comment-respond input[type="search"],
.comments-area .comment-respond input[type="tel"],
.comments-area .comment-respond input[type="number"],
.comments-area .comment-respond textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--borderColor);
    height: 60px;
    outline: 0;
    font-size: 15px;
    border-radius: 30px;
    color: var(--blackColor);
    padding: 1px 0 0 20px;
    background-color: var(--whiteColor);
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="time"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="week"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="month"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="text"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="email"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="url"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="password"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="search"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder,
.comments-area .comment-respond input[type="number"]::-webkit-input-placeholder,
.comments-area .comment-respond textarea::-webkit-input-placeholder {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="time"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="week"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="month"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="text"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="email"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="url"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="password"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="search"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="tel"]:-ms-input-placeholder,
.comments-area .comment-respond input[type="number"]:-ms-input-placeholder,
.comments-area .comment-respond textarea:-ms-input-placeholder {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="time"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="week"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="month"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="text"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="email"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="url"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="password"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="search"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="tel"]::-ms-input-placeholder,
.comments-area .comment-respond input[type="number"]::-ms-input-placeholder,
.comments-area .comment-respond textarea::-ms-input-placeholder {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]::placeholder,
.comments-area .comment-respond input[type="time"]::placeholder,
.comments-area .comment-respond input[type="datetime-local"]::placeholder,
.comments-area .comment-respond input[type="week"]::placeholder,
.comments-area .comment-respond input[type="month"]::placeholder,
.comments-area .comment-respond input[type="text"]::placeholder,
.comments-area .comment-respond input[type="email"]::placeholder,
.comments-area .comment-respond input[type="url"]::placeholder,
.comments-area .comment-respond input[type="password"]::placeholder,
.comments-area .comment-respond input[type="search"]::placeholder,
.comments-area .comment-respond input[type="tel"]::placeholder,
.comments-area .comment-respond input[type="number"]::placeholder,
.comments-area .comment-respond textarea::placeholder {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.comments-area .comment-respond input[type="date"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="time"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="week"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="month"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="text"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="email"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="url"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="password"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="search"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="tel"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond input[type="number"]:focus::-webkit-input-placeholder,
.comments-area .comment-respond textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="time"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="week"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="month"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="text"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="email"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="url"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="password"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="search"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="tel"]:focus:-ms-input-placeholder,
.comments-area .comment-respond input[type="number"]:focus:-ms-input-placeholder,
.comments-area .comment-respond textarea:focus:-ms-input-placeholder {
    color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="time"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="datetime-local"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="week"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="month"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="text"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="email"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="url"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="password"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="search"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="tel"]:focus::-ms-input-placeholder,
.comments-area .comment-respond input[type="number"]:focus::-ms-input-placeholder,
.comments-area .comment-respond textarea:focus::-ms-input-placeholder {
    color: transparent;
}

.comments-area .comment-respond input[type="date"]:focus::placeholder,
.comments-area .comment-respond input[type="time"]:focus::placeholder,
.comments-area .comment-respond input[type="datetime-local"]:focus::placeholder,
.comments-area .comment-respond input[type="week"]:focus::placeholder,
.comments-area .comment-respond input[type="month"]:focus::placeholder,
.comments-area .comment-respond input[type="text"]:focus::placeholder,
.comments-area .comment-respond input[type="email"]:focus::placeholder,
.comments-area .comment-respond input[type="url"]:focus::placeholder,
.comments-area .comment-respond input[type="password"]:focus::placeholder,
.comments-area .comment-respond input[type="search"]:focus::placeholder,
.comments-area .comment-respond input[type="tel"]:focus::placeholder,
.comments-area .comment-respond input[type="number"]:focus::placeholder,
.comments-area .comment-respond textarea:focus::placeholder {
    color: transparent;
}

.comments-area .comment-respond textarea {
    height: auto !important;
    padding-top: 15px;
    border-radius: 5px;
}

.comments-area .comment-respond .comment-form-author {
    float: left;
    width: 50%;
    padding-right: 10px;
    margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
    float: left;
    width: 50%;
    padding-left: 12px;
    margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
    width: 100%;
    float: left;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
    position: absolute;
    left: 0;
    top: 6px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
    display: inline-block;
    margin: 0;
    color: var(--paragraphColor);
    font-weight: normal;
    font-size: var(--fontSize);
}

.comments-area .comment-respond .form-submit {
    float: left;
    width: 100%;
    margin: 0;
}

.comments-area .comment-respond .form-submit .btn.style-one {
    border-radius: 5px;
}

.comments-area .comment-respond .form-submit input:hover,
.comments-area .comment-respond .form-submit input:focus {
    box-shadow: 0px 6px 30px 0px #573BFF4D;
}

/*================================================
Partner Area CSS
=================================================*/

.partner-area .partner-title {
    margin-bottom: 50px;
}

.partner-area .partner-title h4 {
    font-size: 20px;
}

.single-partner-card img {
    width: auto !important;
    margin: auto;
}

/*================================================
Popular Subject Area CSS
=================================================*/

.popular-subject-content {
    margin-bottom: 25px;
}

.popular-subject-content h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.popular-subject-content .btn {
    margin-top: 10px;
}

.single-popular-card {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: var(--transition);
    background-color: var(--whiteColor);
    box-shadow: 0px 5px 30px 0px hsla(238, 100%, 3%, 0.05);
}

.single-popular-card .icon {
    width: 70px;
    height: 70px;
    text-align: end;
    line-height: 70px;
    margin-bottom: 25px;
    display: inline-block;
}

.single-popular-card .icon .icon-bg {
    left: 0;
    bottom: 0;
    z-index: -1;
    position: absolute;
}

.single-popular-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.single-popular-card p {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(198, 201, 212, 1);
}

.single-popular-card .btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: var(--mainColor);
    transition: var(--transition);
    background-color: rgba(246, 246, 246, 1) !important;
}

.single-popular-card:hover .btn {
    color: var(--whiteColor);
}

.single-popular-card:hover .btn:before {
    width: 120%;
    visibility: visible;
    opacity: 1;
}

/*================================================
Register Area CSS
=================================================*/

.register-area {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/all-img/register-area-bg.jpg);
}

.register-area::after {
    left: 0;
    bottom: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 147px;
    z-index: -1;
    background-color: var(--whiteColor);
}

.register-content h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
}

.register-content {
    margin-bottom: 25px;
    margin-right: 20px;
}

.register-content .upcoming-timer {
    margin-top: 25px;
}

.register-content .upcoming-timer .coundown-container .big-text {
    font-size: 30px;
    margin-bottom: 0;
    color: var(--whiteColor);
}

.register-content .upcoming-timer .coundown-container .countdown-el {
    width: 80px;
    height: 80px;
    padding-top: 10px;
    text-align: center;
    margin-right: 30px;
    border-radius: 10px;
    background-color: var(--secondaryColor);
}

.register-content .upcoming-timer .coundown-container .countdown-el:last-child {
    margin-right: 0;
}

.register-content .upcoming-timer .coundown-container .countdown-el span {
    font-size: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.register-form {
    padding: 30px;
    margin-left: 29px;
    border-radius: 10px;
    background-color: var(--whiteColor);
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
}

.register-form h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.register-form form .form-group {
    margin-bottom: 20px;
}

.register-form form .form-group .form-select {
    border: 0;
    width: 100%;
    height: 50px;
    box-shadow: unset;
    border-radius: 5px;
    padding-left: 20px;
    color: rgba(81, 102, 108, 1);
    background-color: rgba(246, 246, 246, 1);
}

.register-form form .form-group .from-control {
    border: 0;
    width: 100%;
    height: 50px;
    box-shadow: unset;
    border-radius: 5px;
    padding-left: 20px;
    background-color: rgba(246, 246, 246, 1);
}

.register-form form .form-group .from-control.textarea {
    height: 129px;
    padding-top: 20px;
}

/*================================================
Top Header Area CSS
=================================================*/

.top-header-area {
    padding-top: 23px;
    padding-bottom: 23px;
    background-color: rgba(246, 246, 246, 1);
}

.top-header-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--mainColor);
}

.top-header-content h3 a {
    text-decoration: underline;
    color: rgba(255, 138, 122, 0.97);
}

.top-header-content h3 a:hover {
    color: var(--primaryColor);
}

/*================================================
Back to Top CSS
=================================================*/

#backtotop {
    opacity: 0;
    right: 40px;
    z-index: 99;
    width: 50px;
    bottom: 40px;
    height: 50px;
    font-size: 30px;
    transition: 0.5s;
    line-height: 50px;
    color: #ffffff;
    background-color: var(--primaryColor);
    animation: border-transform 10s linear infinite alternate forwards;
}

#backtotop:hover {
    background-color: #ea3118;
    color: #ffffff;
}

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

.bg-012935 {
    background-color: rgba(1, 41, 53, 0.9);
}

.bg-f6f6f6 {
    background-color: #f6f6f6;
}

.section-titles {
    margin-bottom: 50px;
}

.section-titles h2 {
    font-size: 35px;
}

.section-titles.style-two {
    max-width: 500px;
}

/** Header Area Style
============================================**/

.header-content {
    text-align: center;
    padding: 11px 0;
}

.header-content p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--whiteColor);
}

.header-content p a {
    color: var(--whiteColor);
    text-decoration: underline;
}

.header-content p a:hover {
    color: var(--primaryColor);
}

.header-content p i {
    margin-left: 5px;
}

.header-area-five {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #C6C9D4;
}

.header-content-left-right .header-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.header-content-left-right .header-info li span {
    font-size: 15px;
    color: var(--mainColor);
}

.header-content-left-right .header-info li i {
    margin-right: 3px;
    font-size: 15px;
    color: var(--mainColor);
}

.header-content-left-right .social-link {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.header-content-left-right .social-link li span {
    color: var(--mainColor);
    font-size: 16px;
    font-weight: 500;
}

.header-content-left-right .social-link li a {
    font-size: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #f6f6f6;
    display: inline-block;
    color: var(--mainColor);
}

.header-content-left-right .social-link li a:hover {
    background-color: var(--mainColor);
    color: var(--whiteColor);
}

/** Navbar Area Style
============================================**/

.navbar-area.style-four .navbar {
    padding: 26px 0;
}

.navbar-area.style-four .navbar-brand {
    background-color: var(--primaryColor);
    position: relative;
    z-index: 1;
}

.navbar-area.style-four .navbar-brand::before {
    content: "";
    position: absolute;
    top: -33px;
    left: -480px;
    width: 800px;
    height: 111px;
    z-index: -1;
    background-image: url(../../assets/img/logo/logo-bg-shape.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.navbar-area.style-four .navbar-brand::after {
    content: "";
    position: absolute;
    top: -33px;
    left: -1000px;
    width: 800px;
    height: 111px;
    z-index: -1;
    background-color: var(--primaryColor);
}

.navbar-area.style-four .option-item {
    margin-left: 100px;
}

.navbar-area.style-four .option-item .src-btn {
    border: none;
    background-color: transparent;
    padding: 0;
    font-size: 28px;
}

.navbar-area.style-four .option-item.style-5 {
    margin-left: 58px;
}

.navbar-area.style-four .option-item.style-5 .login {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    border: 1px solid #C6C9D4;
    background-color: var(--whiteColor);
}

.navbar-area.style-four .option-item.style-5 .dropdown {
    position: relative;
    top: 5px;
}

.navbar-area.style-four .option-item.style-5 .dropdown.categories {
    position: relative;
}

.navbar-area.style-four .option-item.style-5 .dropdown.categories::before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 50%;
    background-color: #C6C9D4;
    transform: rotate(0);
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
}

.navbar-area.style-four .option-item.style-5 .dropdown.categories .btn-secondary {
    background-color: var(--whiteColor);
    border: 1px solid #C6C9D4;
    height: 40px;
    color: var(--mainColor);
    padding: 7px 20px;
    font-weight: 400;
    font-size: 15px;
    border-radius: 0;
    border-right: none;
}

.navbar-area.style-four .option-item.style-5 .dropdown.categories .btn-secondary i {
    margin-right: 10px;
}

.navbar-area.style-four .option-item.style-5 .dropdown.categories .dropdown-menu {
    border-radius: 0;
    list-style: none;
}

.navbar-area.style-four .option-item.style-5 .dropdown.categories .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.navbar-area.style-four .option-item.style-5 .src-form .form-control {
    height: 40px;
    border-radius: 0;
    border-left: none;
    width: 140px;
    border-color: #C6C9D4;
}

.navbar-area.style-four .option-item.style-5 .src-form .src-btn {
    font-size: 15px;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.navbar-area.style-four .option-item.style-5 .menu-btn {
    width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    display: inline-block;
    font-size: 22px;
    border: 1px solid #C6C9D4;
    background-color: var(--whiteColor);
}

.navbar-area.style-four .navbar-nav .nav-item .dropdown-menu {
    top: 55px;
}

.navbar-area.style-five .navbar {
    padding: 13px 0;
}

.srarch-offcanvas .offcanvas-body {
    padding-top: 0;
}

.srarch-offcanvas .offcanvas-body .form-control {
    height: 50px;
}

.srarch-offcanvas .btn-close:focus {
    box-shadow: none;
}

/** Banner Area Style
============================================**/

.banner-content-four {
    max-width: 665px;
}

.banner-content-four .title {
    font-size: 20px;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--whiteColor);
    padding: 13px 30px;
    display: inline-block;
    margin-bottom: 30px;
}

.banner-content-four h2 {
    font-size: 50px;
    line-height: 1.5;
    color: var(--whiteColor);
    margin-bottom: 30px;
}

.banner-content-four p {
    margin-bottom: 50px;
    font-size: 600px;
    font-size: 16px;
    color: var(--whiteColor);
}

.banner-content-four p span {
    background-color: #F10F10;
    display: inline-block;
    margin-left: 20px;
    font-size: 600px;
    font-size: 16px;
    padding: 11px 30px;
}

.banner-content-four .btn {
    background-color: var(--whiteColor);
    color: var(--mainColor);
    border-radius: 0;
}

.banner-content-four .video-btns {
    border: 1px solid var(--whiteColor);
    display: inline-block;
    width: 56px;
    height: 56px;
    line-height: 56px;
    color: var(--whiteColor);
    text-align: center;
    font-size: 28px;
    margin-left: 20px;
}

.banner-content-four .video-btns:hover {
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
    border-color: var(--secondaryColor);
}

.banner-four-single-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
}

.banner-four-single-item.bg-1 {
    background-image: url(../../assets/img/banner/banner-bg-3.jpg);
}

.banner-four-single-item.bg-2 {
    background-image: url(../../assets/img/banner/banner-bg-4.jpg);
}

.banner-four-single-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 41, 53, 0.8);
    z-index: -1;
}

.banner-slide-four .owl-nav .owl-prev,
.banner-slide-four .owl-nav .owl-next {
    display: inline-block;
    width: auto;
    height: auto;
    position: absolute;
    top: 38%;
    transform: translateY(-38%);
    right: 400px;
}

.banner-slide-four .owl-nav .owl-prev::before,
.banner-slide-four .owl-nav .owl-next::before {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 120px;
    background-color: var(--whiteColor);
    transform: rotate(15deg);
    top: -41px;
    transition: var(--transition);
}

.banner-slide-four .owl-nav .owl-prev i,
.banner-slide-four .owl-nav .owl-next i {
    color: var(--whiteColor);
    font-size: 50px;
    margin-right: 20px;
    transition: var(--transition);
}

.banner-slide-four .owl-nav .owl-prev:hover,
.banner-slide-four .owl-nav .owl-next:hover {
    background-color: transparent;
}

.banner-slide-four .owl-nav .owl-prev:hover::before,
.banner-slide-four .owl-nav .owl-next:hover::before {
    background-color: var(--secondaryColor);
}

.banner-slide-four .owl-nav .owl-prev:hover i,
.banner-slide-four .owl-nav .owl-next:hover i {
    color: var(--secondaryColor);
}

.banner-slide-four .owl-nav .owl-next {
    top: auto;
    bottom: 38%;
    transform: translateY(-38%);
}

.banner-slide-four .owl-nav .owl-next i {
    margin-right: 0;
    margin-left: 20px;
}

.banner-slide-four .owl-nav .owl-next::before {
    right: auto;
    left: 0;
}

.banner-single-item {
    position: relative;
    z-index: 1;
}

.banner-single-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(0, 38, 49, 0) 0%, #012935 95%);
    opacity: 0;
    transition: var(--transition);
}

.banner-single-item h3 {
    font-size: 35px;
    padding: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    opacity: 0;
    transition: var(--transition);
}

.banner-single-item h3 a {
    color: var(--whiteColor);
}

.banner-single-item:hover::before {
    opacity: 1;
}

.banner-single-item:hover h3 {
    opacity: 1;
}

.banner-single-item:hover h3 a {
    color: var(--secondaryColor);
}

/** Category Area Style
============================================**/

.top-titles {
    font-size: 20px;
    font-weight: 600;
    color: var(--mainColor);
    margin-bottom: 20px;
    display: block;
}

.category-content-four h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.category-content-four p {
    margin-bottom: 50px;
}

.category-single-item {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    transition: var(--transition);
}

.category-single-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 41, 53, 0.5);
}

.category-single-item .category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.category-single-item .category-content h3 {
    font-size: 18px;
}

.category-single-item .category-content h3 a {
    color: var(--whiteColor);
}

.category-single-item .category-content .read-more {
    color: var(--whiteColor);
}

.category-single-item .category-content .read-more:hover {
    color: var(--secondaryColor);
}

.category-single-item:hover {
    transform: translateY(-5px);
}

/** About Style
============================================**/

.about-us-four-img {
    position: relative;
}

.about-us-four-img .about-us-user {
    background-color: var(--primaryColor);
    padding: 30px;
    max-width: 370px;
    margin-left: auto;
    margin-top: -230px;
    margin-right: -30px;
    position: relative;
}

.about-us-four-img .about-us-user h3 {
    color: var(--whiteColor);
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.5;
    border-bottom: 1px solid var(--whiteColor);
    padding-bottom: 10px;
}

.about-us-four-img .about-us-user .student-list {
    list-style-type: none;
    padding-left: 0;
}

.about-us-four-img .about-us-user .student-list li img {
    border: 2px solid var(--primaryColor);
    transition: var(--transition);
}

.about-us-four-img .about-us-user .student-list li:hover img {
    border-color: var(--secondaryColor);
    border-radius: 100px;
}

.about-us-four-img .about-us-user h4 {
    font-size: 16px;
    color: var(--whiteColor);
    margin-bottom: 10px;
}

.about-us-four-img .about-us-user h5 {
    font-weight: 400;
    font-size: 15px;
    color: var(--whiteColor);
}

.about-us-content {
    margin-left: 56px;
}

.about-us-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.about-us-content .awards-item {
    margin-top: 20px;
}

.about-us-content .awards-item p {
    margin-bottom: 0;
}

.about-us-content .awards-item h3 {
    font-size: 20px;
}

/** Courses Plan Style
============================================**/

.courses-plan-single-item {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    transition: var(--transition);
}

.courses-plan-single-item .courses-img {
    position: relative;
}

.courses-plan-single-item .courses-img .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #F10F10;
    display: inline-block;
    color: var(--whiteColor);
    padding: 6px 25px;
}

.courses-plan-single-item .courses-content {
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
    background-color: var(--whiteColor);
    padding: 20px;
}

.courses-plan-single-item .courses-content .mb-25 {
    margin-bottom: 25px;
}

.courses-plan-single-item .courses-content .tag {
    background-color: var(--primaryColor);
    display: inline-block;
    color: var(--whiteColor);
    padding: 6px 25px;
}

.courses-plan-single-item .courses-content .wish-btn {
    font-size: 25px;
    color: #F10F10;
}

.courses-plan-single-item .courses-content ul {
    padding-left: 0;
    margin-bottom: 10px;
    list-style-type: none;
}

.courses-plan-single-item .courses-content ul li {
    display: inline-block;
    margin-right: 20px;
}

.courses-plan-single-item .courses-content ul li:last-child {
    margin-right: 0;
}

.courses-plan-single-item .courses-content ul li i {
    color: var(--primaryColor);
    margin-right: 5px;
}

.courses-plan-single-item .courses-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.courses-plan-single-item .courses-content h3 a {
    color: var(--mainColor);
}

.courses-plan-single-item .courses-content .star {
    margin-bottom: 20px;
}

.courses-plan-single-item .courses-content .star i {
    color: #F10F10;
    font-size: 20px;
    position: relative;
    top: -1px;
    margin-right: 3px;
}

.courses-plan-single-item .courses-content .star span {
    font-size: 15px;
}

.courses-plan-single-item .courses-content .user img {
    border-radius: 100px;
}

.courses-plan-single-item .courses-content .user .name {
    font-size: 16px;
    font-weight: 600;
    color: var(--mainColor);
    margin-left: 14px;
}

.courses-plan-single-item .courses-content .user .free {
    font-size: 16px;
    font-weight: 600;
    color: #F10F10;
}

.courses-plan-single-item .courses-content .btn {
    margin-top: 20px;
}

.courses-plan-single-item .courses-content.style-two {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.courses-plan-single-item:hover {
    transform: translateY(-5px);
}

.courses-plan-single-item:hover .courses-content {
    box-shadow: none;
}

.courses-plan-single-item:hover .courses-content.style-two {
    background-color: #F6F6F6;
    opacity: 1;
    box-shadow: none;
}

.courses-plan-single-item.style-two .courses-img .tag {
    background-color: #012935;
}

.courses-plan-single-item.style-two:hover {
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
    background-color: var(--whiteColor);
}

.courses-plan-single-item.style-two:hover .courses-content h3 a {
    color: #F10F10;
}

.courses-plan-tabs {
    list-style: none;
    border: none;
    background-color: #F6F6F6;
    margin-bottom: 50px;
}

.courses-plan-tabs .nav-item {
    position: relative;
    z-index: 1;
}

.courses-plan-tabs .nav-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 1px;
    height: 50%;
    background-color: #C6C9D4;
    transform: translateY(-50%);
}

.courses-plan-tabs .nav-item:last-child::before {
    display: none;
}

.courses-plan-tabs .nav-item .nav-link {
    border: none;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--mainColor);
    padding: 16px 30px;
}

.courses-plan-tabs .nav-item .nav-link.active {
    border: none;
    color: var(--primaryColor);
    background-color: transparent;
    position: relative;
}

.courses-plan-tabs .nav-item .nav-link:hover {
    border: none;
    color: var(--primaryColor);
}

.courses-plan-tabs.style-two .nav-item::before {
    display: none;
}

.courses-plan-tabs.style-two .nav-item .nav-link {
    position: relative;
}

.courses-plan-tabs.style-two .nav-item .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #F10F10;
    transition: var(--transition);
}

.courses-plan-tabs.style-two .nav-item .nav-link.active {
    color: var(--mainColor);
}

.courses-plan-tabs.style-two .nav-item .nav-link.active::before {
    right: auto;
    left: 0;
    width: 100%;
}

.why-choose-us-content h2 {
    font-size: 35px;
    margin-bottom: 30px;
}

.why-choose-us-content .accordion .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
}

.why-choose-us-content .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.why-choose-us-content .accordion .accordion-item .accordion-header {
    border-radius: 0;
}

.why-choose-us-content .accordion .accordion-item .accordion-header .accordion-button {
    box-shadow: 0px 5px 30px 0px rgba(0, 1, 17, 0.05);
    background-color: var(--whiteColor);
    border-radius: 0;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
}

.why-choose-us-content .accordion .accordion-item .accordion-header .accordion-button::after {
    content: "\ea6c";
    font-family: remixicon !important;
    background-image: unset;
    font-size: 25px;
    top: -5px;
    position: relative;
}

.why-choose-us-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.why-choose-us-content .accordion .accordion-item.active .accordion-button {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.why-choose-us-content .accordion .accordion-item.active .accordion-body {
    background-color: var(--primaryColor);
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
}

.why-choose-us-content .accordion .accordion-item.active .accordion-body p {
    color: var(--whiteColor);
    padding-bottom: 0;
}

.faq-img {
    margin-left: 56px;
}

/** Video Plan Style
============================================**/

.video-area {
    position: relative;
    z-index: 1;
}

.video-area::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background-color: #F6F6F6;
}

.video-btn {
    text-align: center;
    text-decoration: none;
}

.video-btn i {
    font-size: 24px;
    color: var(--mainColor);
    width: 55px;
    height: 55px;
    line-height: 55px;
    display: inline-block;
    background-color: var(--whiteColor);
    border-radius: 50px;
}

.video-btn span {
    color: var(--whiteColor);
    margin-left: 12px;
}

.video-btn-animate {
    position: relative;
    z-index: 1;
}

.video-btn-animate::after {
    content: "";
    display: block;
    position: absolute;
    top: -20px;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 0;
    border-radius: 50%;
    transition: var(--transition);
    animation: ripple 1.6s ease-out infinite;
    background-color: rgba(253, 98, 25, 0.9);
}

.video-btn-animate.whites::before,
.video-btn-animate.whites::after {
    background-color: rgba(255, 255, 255, 0.9);
}

@keyframes ripple {
    0%,
    35% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

/** Trusted Style
============================================**/

.trusted-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--mainColor);
    display: block;
    margin-bottom: 50px;
}

.trusted-area {
    background-color: #F6F6F6;
}

/** Our Popular Style
============================================**/

.our-popular-single-item {
    background-color: #F6F6F6;
    padding: 30px;
    margin-bottom: 25px;
}

.our-popular-single-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 50px;
}

.our-popular-single-item h2 {
    font-size: 100px;
    margin-bottom: 20px;
}

.our-popular-single-item h2 .dolar {
    font-size: 35px;
}

.our-popular-single-item h2 .month {
    font-size: 16px;
    margin-left: -20px;
}

.our-popular-single-item .price-bg {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: -1;
}

.our-popular-single-item .popular-price-list {
    padding-left: 0;
    margin-bottom: 30px;
    list-style: none;
}

.our-popular-single-item .popular-price-list li {
    margin-bottom: 10px;
}

.our-popular-single-item .popular-price-list li:last-child {
    margin-bottom: 0;
}

.our-popular-single-item .popular-price-list li i {
    color: #51666C;
    font-size: 14px;
    margin-right: 5px;
}

.our-popular-single-item .popular-price-list li span {
    font-size: 15px;
}

.our-popular-single-item.white {
    background-color: #FF7510;
}

.our-popular-single-item.white .style-one {
    background-color: var(--whiteColor);
    color: var(--mainColor);
}

.our-popular-single-item.white .style-one:hover {
    background-color: var(--whiteColor);
}

.our-popular-single-item.white.active {
    background-color: #0D5EF5;
    border-radius: 50px 0 50px 0;
    position: relative;
}

.our-popular-single-item.white.active .style-one {
    background-color: #F10F10;
    color: var(--whiteColor);
}

.our-popular-single-item.white.active .poular {
    background-color: #F10F10;
    color: var(--whiteColor);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 21px;
    position: absolute;
    top: -30px;
    left: 30px;
}

.our-popular-single-item.white h3 {
    color: var(--whiteColor);
}

.our-popular-single-item.white h2 {
    color: var(--whiteColor);
}

.our-popular-single-item.white ul li i {
    color: var(--whiteColor);
}

.our-popular-single-item.white ul li span {
    color: var(--whiteColor);
}

.our-popular-area .switcher-box {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-bottom: 80px;
}

.our-popular-area .switcher-box span {
    color: #012935;
    font-size: 15px;
    margin-left: 10px;
}

.our-popular-area .switcher input[type=checkbox] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.our-popular-area .switcher input[type=checkbox]:focus {
    outline: 0;
}

.our-popular-area .switcher .toggle {
    width: 59px;
    height: 30px;
    display: inline-block;
    position: relative;
    margin: 0;
    border: 2px solid #0D5EF5;
    background-color: #0D5EF5;
    transition: all 0.2s ease;
    border-radius: 43px;
    -webkit-border-radius: 43px;
}

.our-popular-area .switcher .toggle:after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(263.86deg, #ffffff -0.33%, #ffffff 93.97%);
    transition: all 0.2s cubic-bezier(0.5, 0.1, 0.75, 1.35);
}

.our-popular-area .switcher .toggle:checked:after {
    transform: translatex(28px);
    -webkit-transform: translatex(28px);
    -moz-transform: translatex(28px);
    -ms-transform: translatex(28px);
    -o-transform: translatex(28px);
}

.our-popular-area .tab-content {
    display: none;
}

.our-popular-area .tab-content.show {
    display: block;
}

/** Blog Style
============================================**/

.blog-single-item {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.blog-single-item .blog-img {
    position: relative;
    z-index: 1;
}

.blog-single-item .blog-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 26, 34, 0) 0%, #012935 100%);
}

.blog-single-item .blog-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 30px;
}

.blog-single-item .blog-content .blog-info-list {
    list-style: none;
    margin-bottom: 10px;
}

.blog-single-item .blog-content .blog-info-list li {
    margin-right: 20px;
}

.blog-single-item .blog-content .blog-info-list li:last-child {
    margin-right: 0;
}

.blog-single-item .blog-content .blog-info-list li i {
    color: var(--whiteColor);
    margin-right: 5px;
    font-size: 15px;
}

.blog-single-item .blog-content .blog-info-list li a {
    color: var(--whiteColor);
    font-size: 15px;
}

.blog-single-item .blog-content h3 {
    margin-bottom: 0;
    font-size: 20px;
}

.blog-single-item .blog-content h3 a {
    color: var(--whiteColor);
}

.blog-list-single-item {
    margin-bottom: 25px;
}

.blog-list-single-item .blog-info-list {
    list-style: none;
    margin-bottom: 5px;
}

.blog-list-single-item .blog-info-list li {
    margin-right: 20px;
}

.blog-list-single-item .blog-info-list li:last-child {
    margin-right: 0;
}

.blog-list-single-item .blog-info-list li i {
    margin-right: 5px;
    font-size: 15px;
}

.blog-list-single-item .blog-info-list li a {
    font-size: 15px;
}

.blog-list-single-item h3 {
    margin-bottom: 10px;
}

.blog-list-single-item h3 a {
    font-size: 20px;
    color: var(--mainColor);
}

.blog-list-single-item:hover h3 a {
    color: var(--primaryColor);
}

/** Education Style
============================================**/

.education-single-item {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 25px;
    overflow: hidden;
}

.education-single-item::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 15, 19, 0) 0%, #001920 82.5%);
}

.education-single-item .education-content {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    padding: 30px;
    padding-bottom: 0;
    z-index: 2;
    transition: var(--transition);
}

.education-single-item .education-content h3 {
    color: var(--whiteColor);
    font-size: 20px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.education-single-item .education-content span {
    font-size: 15px;
    color: var(--whiteColor);
    display: block;
    margin-bottom: 20px;
}

.education-single-item .education-content i {
    font-size: 25px;
    color: var(--whiteColor);
}

.education-single-item:hover .education-content {
    bottom: 20px;
}

.education-single-item:hover .education-content h3 {
    color: var(--secondaryColor);
}

/** About Style
============================================**/

.about-us-content-five {
    margin-left: 25px;
}

.about-us-content-five h2 {
    font-size: 35px;
    margin-bottom: 30px;
}

.about-us-content-five .accordion {
    margin-bottom: 30px;
}

.about-us-content-five .accordion .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
}

.about-us-content-five .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.about-us-content-five .accordion .accordion-item .accordion-header {
    border-radius: 0;
}

.about-us-content-five .accordion .accordion-item .accordion-header .accordion-button {
    background-color: #F6F6F6;
    border-radius: 0;
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 600;
}

.about-us-content-five .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.about-us-content-five .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
}

.about-us-content-five .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.about-us-content-five .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.about-us-content-five .accordion .accordion-item.active .accordion-button {
    background-color: #F6F6F6;
    color: var(--mainColor);
}

.about-us-content-five .accordion .accordion-item.active .accordion-body {
    background-color: #F6F6F6;
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
}

.about-us-content-five .accordion .accordion-item.active .accordion-body p {
    padding-bottom: 0;
}

.about-tabs {
    padding-left: 0;
    margin-bottom: 25px;
    list-style: none;
    border: none;
}

.about-tabs .nav-item {
    margin-right: 10px;
}

.about-tabs .nav-item:last-child {
    margin-right: 0;
}

.about-tabs .nav-item .nav-link {
    padding: 0;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 0;
    color: var(--mainColor);
}

.about-tabs .nav-item .nav-link.active {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.about-us-img {
    position: relative;
}

.about-us-img .experience {
    background-color: #FF7510;
    text-align: left;
    padding: 25px;
    width: 250px;
    position: absolute;
    bottom: 30px;
    left: -30px;
}

.about-us-img .experience h2 {
    font-size: 50px;
    font-weight: 600;
    color: var(--whiteColor);
    margin-bottom: 0;
}

.about-us-img .experience span {
    font-size: 20px;
    font-weight: 600;
    color: var(--whiteColor);
}

.video-area-five {
    background-image: url(../../assets/img/all-img/video-bg-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.video-area-five::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 24, 31, 0) 0%, #012935 100%);
    z-index: -1;
}

.video-content-five {
    max-width: 695px;
    padding-top: 244px;
}

.video-content-five .top-titles {
    background-color: var(--whiteColor);
    font-size: 20px;
    font-weight: 600;
    padding: 5px 20px;
    display: inline-block;
    margin-bottom: 30px;
}

.video-content-five h2 {
    color: var(--whiteColor);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
}

.video-content-five h2 span {
    color: var(--secondaryColor);
}

.video-content-five .btn.active {
    background-color: var(--whiteColor);
    color: var(--mainColor);
}

.video-content-five .btn.active:hover {
    color: var(--whiteColor);
}

.video-five i {
    width: 140px;
    height: 140px;
    line-height: 140px;
    font-size: 50px;
    border-radius: 100px;
}

.video-five::after {
    width: 140px;
    height: 140px;
    line-height: 140px;
    top: -70px;
}

/** About Style
============================================**/

.why-choose-us-content-five {
    margin-left: -350px;
}

.why-choose-us-content-five .accordion {
    margin-bottom: 30px;
}

.why-choose-us-content-five .accordion .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 20px;
}

.why-choose-us-content-five .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.why-choose-us-content-five .accordion .accordion-item .accordion-header {
    border-radius: 0;
}

.why-choose-us-content-five .accordion .accordion-item .accordion-header .accordion-button {
    background-color: #F6F6F6;
    border-radius: 0;
    padding: 40px 30px;
    font-size: 16px;
    font-weight: 600;
}

.why-choose-us-content-five .accordion .accordion-item .accordion-header .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.why-choose-us-content-five .accordion .accordion-item .accordion-header .accordion-button::after {
    display: none;
}

.why-choose-us-content-five .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.why-choose-us-content-five .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    transform: rotate(90deg);
}

.why-choose-us-content-five .accordion .accordion-item.active .accordion-button {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

.why-choose-us-content-five .accordion .accordion-item.active .accordion-body {
    background-color: var(--primaryColor);
    padding-top: 0;
    padding-left: 30px;
    padding-right: 30px;
}

.why-choose-us-content-five .accordion .accordion-item.active .accordion-body p {
    padding-bottom: 0;
    color: var(--whiteColor);
    margin-bottom: 0;
}

.courses-plan-right-align {
    margin-right: -500px;
}

/** How It Work Item Style
============================================**/

.how-it-work-item-five-item {
    position: relative;
    margin-bottom: 30px;
}

.how-it-work-item-five-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 15, 19, 0) 0%, #001920 82.5%);
}

.how-it-work-item-five-item .how-it-work-item-content {
    position: absolute;
    bottom: -85px;
    left: 0;
    right: 0;
    padding: 30px;
    transition: var(--transition);
}

.how-it-work-item-five-item .how-it-work-item-content h3 {
    font-size: 20px;
    color: var(--whiteColor);
    margin-bottom: 30px;
    transition: var(--transition);
}

.how-it-work-item-five-item .how-it-work-item-content span {
    font-size: 50px;
    font-weight: 600;
}

.how-it-work-item-five-item .how-it-work-item-content p {
    color: var(--whiteColor);
    margin-bottom: 0;
}

.how-it-work-item-five-item:hover .how-it-work-item-content {
    bottom: 0;
}

.how-it-work-item-five-item:hover .how-it-work-item-content h3 {
    margin-bottom: 15px;
}

.classes-tabs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    border: none;
    position: relative;
}

.classes-tabs::before {
    content: "";
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: 100%;
    height: 8px;
    border-radius: 50px;
    background-color: #F6F6F6;
    z-index: -1;
}

.classes-tabs .nav-item .nav-link {
    width: 30px;
    height: 30px;
    background-color: var(--primaryColor);
    border-radius: 100px;
    display: inline-block;
    padding: 0;
    border: none;
}

.classes-tabs .nav-item .nav-link.active {
    border: none;
    box-shadow: 0 0 0px 9px rgba(13, 94, 245, 0.4);
}

.classes-tabs .nav-item:first-child {
    margin-left: 170px;
}

.classes-tabs .nav-item:last-child {
    margin-right: 170px;
}

/** Gallery Style
============================================**/

.single-gallery-item {
    position: relative;
}

.single-gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background: var(--mainColor);
    transition: var(--transition);
}

.single-gallery-item .popup-btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid var(--whiteColor);
    color: var(--whiteColor);
    display: inline-block;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
}

.single-gallery-item .popup-btn i {
    font-size: 18px;
}

.single-gallery-item .popup-btn:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: var(--primaryColor);
}

.single-gallery-item .popup-btn.active {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border-color: var(--primaryColor);
}

.single-gallery-item:hover .popup-btn {
    opacity: 1;
}

.single-gallery-item:hover::before {
    opacity: 0.6;
}

/** Testimonial Style
============================================**/

.testimonial-single-item {
    border: 1px solid #C6C9D4;
    padding: 57px 40px;
    position: relative;
    z-index: 1;
}

.testimonial-single-item .info {
    padding-left: 0;
    margin-bottom: 20px;
    list-style-type: none;
}

.testimonial-single-item .info li a i {
    margin-right: 3px;
}

.testimonial-single-item .info li a:hover {
    color: var(--primaryColor);
}

.testimonial-single-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-single-item p {
    margin-bottom: 20px;
}

.testimonial-single-item .quat {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: -1;
}

.testimonial-img-five {
    position: relative;
    z-index: 1;
}

.testimonial-img-five::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 32, 41, 0) 0%, #012935 100%);
}

.testimonial-img-five .testimonial-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}

.testimonial-img-five .testimonial-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--whiteColor);
    margin-bottom: 5px;
}

.testimonial-img-five .testimonial-info span {
    font-size: 15px;
    color: var(--whiteColor);
}

.testimonial-slider-thumb {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
}

.testimonial-slider-thumb .owl-thumb-item {
    width: 75px;
    border: 2px solid rgba(0, 32, 41, 0);
    cursor: pointer;
}

.testimonial-slider-thumb .owl-thumb-item.active {
    border-color: var(--secondaryColor);
}

.testimonial-slide-five.owl-theme .owl-nav {
    position: absolute;
    top: -140px;
    right: 0;
}

.testimonial-slide-five.owl-theme .owl-nav .owl-prev,
.testimonial-slide-five.owl-theme .owl-nav .owl-next {
    right: 0;
    position: unset;
}

.testimonial-slide-five.owl-theme .owl-nav [class*=owl-] {
    width: 80px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--mainColor) !important;
    font-size: 30px !important;
    color: var(--whiteColor) !important;
    transition: var(--transition);
}

.testimonial-slide-five.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--secondaryColor) !important;
}

.testimonial-cards .custom-nav .owl-carousel .owl-nav .owl-prev,
.custom-nav .owl-carousel .owl-nav .owl-next,
.custom-nav .owl-carousel .owl-dot {
    position: unset;
}

.navbar-area.style-four.style-2.sticky {
    top: -1px;
}



/* My Updates */

.contactRow {
    grid-gap: 8%;
    display: flex;
    align-items: center;
}

.logoNew {
    width: 90px;
    height: 50px;
}

.contact-section {
    margin-bottom: 160px;
}

.modal-dialog {
    width: 100vw;
    height: 70%;
    margin: 0;
    padding: 0;
    max-width: none;
}
.modal-content {
    height: 100vh;
    border: none;
    border-radius: 0;
}
.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70%;
    padding: 0;
}

.vid-btn {
    position: absolute!important;
    top: 10px!important;
    z-index: 1051!important;
    left: 50%!important;
    border: 1px solid white!important;
    border-radius: 50%!important;
    padding: 13px!important;
}

.imgTS {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* selectividad section */
.about-section .about-meta .info h5 {
    background: var(--greadintColor);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section .content {
    margin-right: 30px;
    border-bottom: 1px solid var(--borderColor);
}

.selectividad-wrapper {
    height: 400px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.selectividad-wrapper .card {
    width: 80px;
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    margin: 0 10px;
    display: flex;
    align-items: flex-end;
    transition: .6s cubic-bezier(.28, -0.03, 0, .99);
    background-color: var(--primaryColor);
    box-shadow: 0px 6px 30px 0px #0001110D;
}

.selectividad-wrapper .card .icon {
    background: var(--offWhiteColor);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    text-align: center;
    line-height: 80px;
}

.selectividad-wrapper .card .description {
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: .3s;
    transition: all .3s ease;
}


.selectividad-wrapper .card h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--whiteColor);
    position: relative;
    padding-left: 20px;
}

.selectividad-wrapper .card .heading {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--whiteColor);
    position: absolute;
    padding-left: 20px;
    bottom: 10px;
    left: 0px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.selectividad-wrapper input:checked+label .heading {
    opacity: 0 !important;
    transform: translateY(0) !important;
}

.selectividad-wrapper .description h4::after {
    position: absolute;
    content: '';
    top: 12px;
    left: 0;
    height: 2px;
    width: 10px;
    background-color: var(--whiteColor);
    border-radius: 15px;
}

.selectividad-wrapper .description p {
    color: var(--whiteColor);
    margin-bottom: 25px;
    font-size: 12px!important;
    line-height: 1.7rem!important;
}

.selectividad-wrapper input {
    display: none;
}


.selectividad-wrapper .about-card.active {
    width: 350px;
    display: inline-block;
    padding: 20px;
    border: none;
    font-size:12px!important;
}
.selectividad-wrapper .about-card.active p{
   
    font-size:12px!important;
}


.selectividad-wrapper .about-card.active .description {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.selectividad-wrapper .about-card.active .description p {
    color: var(--whiteColor);
    margin-bottom: 26px;
    font-size: 12px!important;
    line-height: 1.8rem!important;
}

.selectividad-wrapper .about-card.active .heading {
    opacity: 0;
}

.selectividad-wrapper .card .btn {
    background-color: var(--whiteColor);
    padding: 20px 30px;
    border-radius: 10px;
}

.selectividad-wrapper .card .btn:hover {
    background-color: var(--secondaryColor);
    color: var(--whiteColor);
}

.selectividad-wrapper .card .btn:hover img {
    filter: brightness(0) invert(1);
}


/* selectividad section */

.map {
    gap: 3%
}

.inMap {
    width: 29.2%;
}

.flag img {
    position: absolute;
    width: 100px;
    border-radius: 5px;
    right: -20px;
    top: -20px;
}

.categ {
    margin: 0;
}

.categ a {
    width: 210px;
    display: block;
    line-height: 1.6;
}

.city {
    height: 260px;
    width: 100%;
}

.ri-star-fill {
    color: #f0b53b !important ;
}


@media only screen and (max-width: 767px) {
    .pSmall { 
        font-size: 11px;
    }
    #contact {
        flex-direction: column!important;
    }
    .map-loc.pb-100.inMap{
        width: 90%!important;  
        margin: 0 auto ;
    }
   
}

.nemra a {
    display: block ;
}

.about-wrapper img {
    border-radius: 10px ;
}

.hero-image img {
    height: 560px ;
}

@media only screen and (max-width: 767px) {
#contact {
    text-align: center;
}}
