@font-face {
    font-family: TenezTest-Black;
    src: url(TenezTest-Black.otf);
    font-weight: normal;
}

@font-face {
    font-family: TenezTest-Bold;
    src: url(TenezTest-Bold.otf);
    font-weight: normal;
}

@font-face {
    font-family: TenezTest-Regular;
    src: url(TenezTest-Regular.otf);
    font-weight: normal;
}

@font-face {
    font-family: TenezTest-Light;
    src: url(TenezTest-Light.otf);
    font-weight: normal;
}

html {
    scroll-behavior: smooth;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.tab-content>.tab-pane {
    display: none;
    position: relative;
}

.tab-content>.active {
    display: block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/*****************************************/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.slick-slider {
    width: 100%;
    margin: 0;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}

/****************************************/


/**heder*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0px;
    box-sizing: border-box;
    background: transparent;
    height: 95px;

    /*  box-shadow: 0 0 10px rgb(0 0 0 / 20%);*/
    transition: 0.25s all linear;
}

.header.sticky {
    background: #99e3e3;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);

    transition: 0.25s all linear;
}

.header-main {
    padding: 0;
    border-radius: 4px;
    height: 76px;
    width: 100%;
}

.header .logo {
    padding: 6px 0px;
    width: 300px;
    float: left;
    margin-right: 40px;
}

.header .logo .white-logo {
    display: none;
}

.header.sticky .logo .white-logo {
    display: none;
}

.header.sticky .logo .normal-logo {
    display: block;
}

/*.header .logo img {*/
/*    width: 100%;*/
/*}*/

.header .logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
    display: block;
}

.header .nav-menu {
    padding: 0 15px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.header .menu>.menu-item {
    display: inline-block;
    position: relative;
    padding: 0;
}

.menu-active {
    color: #64326d !important;
}

.header .menu>.menu-item>a {
    display: block;
    padding: 25px 20px;
    color: #222;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 3px solid transparent;
    font-weight: 500;
}

.header .menu>.menu-item>a .plus {
    border: solid #222;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
}

/*.header .menu > .menu-item:hover > a .plus{
    border: solid #fff;
    border-width: 0 2px 2px 0;
}*/
.header .menu>.menu-item>a .plus:after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header.sticky .menu>.menu-item>a {
    color: #222;
}

.header.sticky .menu>.menu-item>a .plus {
    border-color: #222;
}

.header.sticky .menu>.menu-item:hover>a {
    color: #b08450;
}

.header .menu>.menu-item:hover>a {
    color: #64326d;
}

.header .menu>.menu-item>.sub-menu {
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {

    .header .menu>.menu-item-has-children:hover>.sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu>.menu-item-has-children:hover>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.header .menu>.menu-item>.sub-menu>.menu-item {
    display: block;
}

/*.header .menu > .menu-item > .sub-menu > .menu-item > a:last-child{
    border-bottom: none;
}*/
.header .menu>.menu-item>.sub-menu>.menu-item>a {
    display: block;
    margin: 12px 20px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;

    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:before {
    display: block !important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #4d8546;
}

.header .menu>.menu-item>.sub-menu>.menu-item:hover>a:before {
    width: 10px;
    margin-right: 5px;
}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children {
    position: relative;

}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children .sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 200px;
    display: none;
    background: #fff;
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children:hover .sub-menu {
    display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children .sub-menu .menu-item {
    display: block;
}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children .sub-menu .menu-item a {
    margin: 12px 20px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children .sub-menu .menu-item a:before {
    display: block !important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #4d8546;
}

.header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children .sub-menu .menu-item:hover a:before {
    width: 10px;
    margin-right: 5px;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;
    /* margin-right: 35px; */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #222;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span:after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-header-part {
    padding: 4px 5px 4px 20px;
    font-size: 16px;
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid #4d8546;
    border-radius: 30px;
    display: inline-block;
    text-align: right;
}

.right-header-part a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
    padding: 0px;
    color: #4d8546;

    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 12px;
    text-decoration: none;
}

.right-header-part a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.right-header-part a span {
    margin-left: 10px;
}

.right-header-part a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    margin-left: 5px;
    float: right;
    left: 0;
}

@media(max-width: 991px) {
    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .header .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    .right-header-part {
        margin-top: 20px;
        margin-left: 10px;
    }

    .header .nav-menu {
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0px;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }

    .header .menu>.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu>.menu-item>a {
        color: #ffffff;
        padding: 15px !important;
        border-bottom: 1px solid #333333;
    }

    .header .menu>.menu-item:first-child>a {
        border-top: 1px solid #333333;
    }

    .header .menu>.menu-item>a .plus:before,
    .header .menu>.menu-item>a .plus:after {
        background-color: #ffffff;
    }

    .header .menu>.menu-item-has-children.active>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .header .menu>.menu-item>.sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }

    .header .close-nav-menu,
    .header .open-nav-menu {
        display: flex;
    }
}

/**heder*/

/******************/
/* Keyframe animations */
@keyframes anim-rotate {
    0% {
        transform: rotate(-30deg);
    }

    50% {
        transform: rotate(-45deg);
    }

    100% {
        transform: rotate(-30deg);
    }
}

@keyframes anim-updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0);
    }
}

.elem-updown {
    animation: anim-updown 5s infinite;
}

@keyframes anim-move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(30px);
    }

    100% {
        transform: translateX(0);
    }
}

.elem-move {
    animation: anim-move 5s infinite;
}

@keyframes anim-rotate-full {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.elem-rotate-full {
    animation: anim-rotate-full 12s infinite;
}

@keyframes anim-zoom {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.8);
    }
}

.elem-zoom {
    animation: anim-zoom 5s infinite;
}

/******************/
.border-radius {
    border-radius: 15px;
}

.top-banner {
    overflow: hidden;
    position: relative;
    height: 100vh;
    background: url(../images/home-banner.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    z-index: 1;
}

.banner-content {
    position: absolute;
    width: 40%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin: 0 auto;
    text-align: center;
    right: 0;
}

.top-banner img {
    width: 100%;
    min-height: 780px;
    object-fit: cover;
    display: block;
}

.top-banner img.banner-text-up-down-img {
    width: unset;
    min-height: unset;
    object-fit: none;
    display: block;
    margin: 30px auto;
}

.top-banner-left {
    position: relative;
    height: 100vh;
}

.banner-text {
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0 auto;
}

.banner-text .client-name {
    width: 100%;
}

.banner-text .client-name img {
    width: 100%;
    min-height: unset;
}

.banner-text h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
    line-height: 34px;
    font-weight: 700;
}

.banner-text p {
    font-size: 24px;
    color: #2e4d6c;
    line-height: 35px;
    margin-top: 0px;
    text-transform: uppercase;
    text-align: center;
}

.banner-text p b {
    font-weight: 700;
}

.banner-text h1 {
    font-size: 95px;
    color: #2e4d6c;
    line-height: 98px;
    font-weight: 700;
    font-family: 'TenezTest-Light';
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.banner-text h1:after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    background: url(../images/banner-header-img.png);
    background-repeat: no-repeat;
    width: 132px;
    height: 172px;
}

.banner-text h1:before {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    background: url(../images/banner-header-img.png);
    background-repeat: no-repeat;
    width: 132px;
    height: 172px;
    transform: scaleX(-1);
}

a.common-btn {
    font-size: 16px;
    padding: 16px 22px;
    background: #64326d;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 50px;
    display: inline-block;
    cursor: pointer;
    transition: 0.2s all linear;
    text-decoration: none;
}

a.common-btn:hover {
    background: #bf2902;
    color: #fff;
    transition: 0.2s all linear;
}

button.common-btn {
    font-size: 20px;
    padding: 20px 40px;
    background: #64326d;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 50px;
    display: inline-block;
    cursor: pointer;
    transition: 0.2s all linear;
    text-decoration: none;
    border: none;
}

button.common-btn:hover {
    background: #bf2902;
    color: #fff;
    transition: 0.2s all linear;
}

.mar-top-0 {
    margin-top: 0 !important;
}

.top-banner-right {
    width: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.top-banner-right img {
    width: 80%;
    object-fit: cover;
    margin-left: auto;
    margin-right: 0;
    min-height: unset;
    position: relative;
    border-radius: 15px;
}

.top-banner-right:after {
    content: '';
    width: 612px;
    height: 328px;
    position: absolute;
    top: 120px;
    right: -48px;
    background: #2e4d6c;
    transform: rotate(-35deg);
    z-index: -1;
    animation: anim-rotate 8s infinite;
    border-radius: 10px;
}

.top-banner .de-hero-1 {
    left: 14%;
    top: 12%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-2 {
    right: 7%;
    top: 45%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-3 {
    right: 5%;
    bottom: 12%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-4 {
    left: 45%;
    bottom: 10%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-5 {
    left: 0%;
    bottom: 12%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-6 {
    left: 5%;
    bottom: 40%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-7 {
    right: 5%;
    top: 3%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-8 {
    left: 16%;
    bottom: 5%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.top-banner .de-hero-9 {
    right: 20%;
    top: 5%;
    position: absolute;
    width: unset;
    min-height: unset;
}

.elem-move {
    animation: anim-move 5s infinite;
}

.banner-slider-contant {
    position: relative;
}

.top-banner .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: -60px;
    z-index: 1;
    position: relative;
}

.top-banner .slick-dots li {
    margin-right: 10px !important;
}

.top-banner .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}

.top-banner .slick-dots li.slick-active button {
    background: #030aa4;
}

.slick-slider .slick-prev {
    display: none !important;
}

.slick-slider .slick-next {
    display: none !important;
}

.top-banner .slide-arrow.prev-arrow {
    left: 20px;
}

.top-banner .slide-arrow.next-arrow {
    right: 20px;
}

.top-banner .slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    background: transparent;
    z-index: 1;
    cursor: pointer;
    opacity: 0.5;
}

.top-banner .slide-arrow.prev-arrow:before {
    content: ' \276E';
}

.top-banner .slide-arrow.next-arrow:before {
    content: ' \276F';
}

.top-banner .slide-arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 27px;
    color: #ffffff;
}

/**************************************************/
.welcome-to-my-word-sec {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.welcome-to-my-word-sec .de-intro-1 {
    position: absolute;
    left: 5%;
    top: 10%;
}

.welcome-to-my-word-sec .elements-celestial-bodies-icon {}

.welcome-to-my-word-sec .elements-celestial-bodies-icon img {
    width: 192px;
    position: absolute;
    left: auto;
    right: 6%;
    top: 10%;
}

.welcome-to-my-word-sec .content-width-service-sec {
    width: 86%;
}

.common-header1 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 72px;
}

.common-header1 h4 {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #222;
    /* font-weight: 700; */
    font-family: TenezTest-Black;
}

.common-header1 p {
    position: relative;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    font-size: 1.25rem;
    font-weight: 300;
    color: #948daa;
}

.common-header1 h4:before,
.common-header1 h4:after {
    content: '';
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-bottom-color: #64326d;
    position: absolute;
    top: 2.5px;
}

.common-header1 h4:before {
    border-left-color: #64326d;
    right: -30px;
}

.common-header1 h4:after {
    border-right-color: #64326d;
    left: -30px;
}

.welcome-to-my-word-sec-box {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    background: #fff;
    transition: 0.3s;
    margin-bottom: 60px;
}

.welcome-to-my-word-sec a {
    text-decoration: none;
}

.welcome-to-my-word-sec-box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #2e4d6c;
    transition: 0.3s;
    z-index: -1;
    border-radius: 12px;
}

.welcome-to-my-word-sec-box:hover:after {
    transform: rotate(-10deg);
}

.welcome-to-my-word-sec-box:hover {
    box-shadow: 10px 10px 50px rgb(0 0 0 / 10%);
    border-color: #fff;
}

.welcome-to-my-word-sec-box img {
    width: 150px;
    height: 150px;
    margin-bottom: 25px;
}

.welcome-to-my-word-sec-box h4 {
    font-size: 27px;
    margin-bottom: 18px;
    color: #222;
    font-weight: 700;
    font-family: 'TenezTest-Black';
}

.welcome-to-my-word-sec-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
}

/**************************************************/
.home-about-us-sec {
    padding-bottom: 120px;
    padding-top: 120px;
    background: #f2f5fb;
    position: relative;
    overflow: hidden;
}

.home-about-us-sec .de-about-1 {
    position: absolute;
    right: 10%;
    top: 0%;
}

.home-about-us-sec .de-about-3 {
    position: absolute;
    right: auto;
    top: 6%;
    width: 149px;
    left: 9%;
    z-index: 2;
}

.home-about-us-sec .de-about-2 {
    position: absolute;
    left: 5%;
    bottom: 26%;
    z-index: 2;
    width: 149px
}

.home-about-us-sec-left {
    position: relative;
    text-align: center;
}

.home-about-us-sec .home-about-us-sec-left:before,
.home-about-us-sec .home-about-us-sec-left:after {
    position: absolute;
    content: '';
}

.home-about-us-sec .home-about-us-sec-left:before {
    width: 60px;
    height: 120px;
    border-radius: 7px;
    border: 5px solid #64326d;
    left: 30px;
    top: 190px;
    z-index: 8;
}

.home-about-us-sec .home-about-us-sec-left:after {
    width: 36px;
    height: 56px;
    background: #64326d;
    left: 332px;
    bottom: -40px;
    border-radius: 4px;
}

.home-about-us-sec .about-img-2 {
    position: absolute;
    left: 0;
    bottom: -200px;
}

.home-about-us-sec .home-about-us-sec-right {}

.home-about-us-sec .home-about-us-sec-right h5 {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #64326d;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-about-us-sec .home-about-us-sec-right h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'TenezTest-Black';
}

.home-about-us-sec .home-about-us-sec-right p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    margin-bottom: 1rem;
}

.home-about-us-sec .home-about-us-sec-right ul {
    margin-top: 36px;
    margin-bottom: 36px;
}

.home-about-us-sec .home-about-us-sec-right ul li {
    margin-bottom: 18px;
}

.home-about-us-sec .home-about-us-sec-right ul li h4 {
    font-size: 16px;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: #222;
    font-weight: 700;
}

.home-about-us-sec .home-about-us-sec-right ul li span {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #615978;
}

.home-about-us-sec .home-about-us-sec-right ul li span a {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    text-decoration: none;
}

/**************************************************/
.home-services-sec {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    background-color: #333;
    overflow: hidden;
}

.home-services-sec .de-intro-1 {
    position: absolute;
    right: 5%;
    top: 0%;
    z-index: 1;
}

.home-services-sec .de-intro-2 {
    position: absolute;
    left: 5%;
    top: 12%;
    z-index: 2;
}

.home-services-sec .de-intro-3 {
    position: absolute;
    right: 5%;
    top: 48%;
    z-index: 2;
}

.home-services-sec .de-intro-4 {
    position: absolute;
    left: 5%;
    bottom: 0%;
    z-index: 2;
}

.common-header1.colr-white h4 {
    color: #fff;
}

.common-header1.colr-white p {
    color: #bdb9cb;
}

.home-services-sec-box {
    border: 1px solid #474747;
    padding: 60px 48px;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
    margin-bottom: 60px;
}

.home-services-sec-box:hover {
    box-shadow: 10px 10px 50px rgb(0 0 0 / 10%);
    border-color: #fff;
    background: #fff;
}

.home-services-sec-box img {
    width: 48px;
    height: 48px;
    margin: 0 auto 30px;
    display: block;
}

.home-services-sec-box h4 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.home-services-sec-box:hover h4 {
    color: #222;
}

.home-services-sec-box:hover p {
    color: #615978;
}

.home-services-sec-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #bdb9cb;
    text-align: center;
}

/**************************************************/
.why-work-with-me-sec {
    padding-bottom: 120px;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.why-work-with-me-sec .de-about-1 {
    position: absolute;
    right: 10%;
    top: 0%;
}

.why-work-with-me-sec .de-about-3 {
    position: absolute;
    right: auto;
    top: 31%;
    width: 150px;
    left: 5%;
}

.why-work-with-me-sec .de-about-2 {
    position: absolute;
    left: 5%;
    bottom: 0%;
    z-index: 2;
}

.why-work-with-me-sec-left {
    position: relative;
    text-align: center;
}

.why-work-with-me-sec-left img {
    border-radius: 15px;
}

.why-work-with-me-sec .about-img-2 {
    position: absolute;
    left: 0;
    bottom: -200px;
}

.why-work-with-me-sec .why-work-with-me-sec-right {
    padding-right: 120px;
}

.why-work-with-me-sec .why-work-with-me-sec-right h5 {
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #64326d;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-work-with-me-sec .why-work-with-me-sec-right h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
    font-family: 'TenezTest-Black';
}

.why-work-with-me-sec .why-work-with-me-sec-right p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    margin-bottom: 1rem;
}

.why-work-with-me-sec .why-work-with-me-sec-right ul {
    margin-top: 36px;
    margin-bottom: 0;
}

.why-work-with-me-sec .why-work-with-me-sec-right ul li {
    margin-bottom: 36px;
    display: flex !important;
}

.why-work-with-me-sec .why-work-with-me-sec-right ul li img {
    width: 48px;
    height: 48px;
    margin-right: 25px;
}

.why-work-with-me-sec .why-work-with-me-sec-right ul li h4 {
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #222;
    font-weight: 700;
}

.why-work-with-me-sec .why-work-with-me-sec-right ul li p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
}

/**************************************************/
/***********************************/
.testimonial {
    background-color: #333;
    background: url(../images/testimonial-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 107px;
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

.testimonial .shap-icon img {
    position: absolute;
    top: 12%;
    right: 5%;
    width: 150px;
}

.testimonial-slider {
    margin-top: 60px;
}

.testimonial .customers-container {}

.testimonial-slider .slick-track {
    display: flex !important;
}

/*
.testimonial-slider .slick-track .slick-slide {
    display: flex !important;
    height: inherit !important;
}*/

.testimonial-slider-box-area {
    margin: 0;
    position: relative;
}

.testimonial-slider-box {
    flex-direction: column;
    padding: 15px;
    margin: 0px 10px 35px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 40px;
}

.testimonial-slider-box-left {
    padding: 40px 30px 29px 40px;
    box-shadow: 0px 8px 0px 0px rgb(40 120 235 / 10%);
    background: #fff;
    border-radius: 10px;
}

.testimonial-slider-box-left.equal-min-box {
    min-height: 400px;
}

.testimonial-slider-box-left h2 {
    font-size: 42px;
    color: #fff;
    text-align: center;
    background: #fe754f;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    line-height: 90px;
    margin-right: 20px;
}

.testimonial-slider-box-left h4 {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.testimonial-slider-box-left h5 {
    font-size: 16px;
    color: rgba(0, 0, 0, .5);
    font-weight: 400;
    margin-top: 10px;
}

.testimonial-slider-box-left p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 26px;
    color: #615978;
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-slider-box-left p strong {
    font-weight: 700;
}

.testimonial-slider-box-left p:last-child {
    margin-bottom: 0;
}

.testimonial-comma-imgs {
    margin-bottom: 20px;
    width: 75px;
    height: 75px;
    margin: -80px auto 40px;
    background: #64326d;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 50%;
}

.testimonial-sec-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    display: none;
}

.testimonial-sec-img img {
    width: 100%;
}

.lient-details {
    display: block;

    margin-top: 40px;
    text-align: center;
}

.testimonial-slider-img {
    min-height: 173px;
    width: 100%;
}

.testimonial-slider-box img {
    padding: 0;
    width: 100%;
}

.testimonial-slider-cont {
    padding: 20px;
    position: relative;
    text-align: left;
}

.testimonial-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 0px;
}

.testimonial-slider .slick-dots li {
    margin-right: 10px !important;
}

.testimonial-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}

.testimonial-slider .slick-dots li.slick-active button {
    background: #9a62a5;
}

.testimonial-slider-box a:hover {
    color: #ff0000;
    transition: all 0.3s ease;
}

.testimonial-slider .slide-arrow.prev-arrow {
    right: 11%;
}

.testimonial-slider .slide-arrow.next-arrow {
    right: 3%;
}

.testimonial-slider .slide-arrow:hover {
    background: #fff;
    border: 4px solid #fff;
}

.testimonial-slider .slide-arrow:hover::before {
    color: #1d70ab;
}

.testimonial-slider .slide-arrow {
    position: absolute;
    top: -20%;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    border: 2px solid #fff;
    opacity: 1;
    transition: all 0.3s linear;
    border-radius: 50%;
    background: transparent;
    display: none !important;
}

.slide-arrow.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.testimonial-slider .slide-arrow.prev-arrow:before {
    content: ' \279C';
    transform: translateY(-50%) scale(-1);
    top: 52%;
}

.testimonial-slider .slide-arrow.next-arrow:before {
    content: ' \279C';
}

.testimonial-slider .slide-arrow:before {
    position: absolute;
    top: 47%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 22px;
    color: #fff;
}

.testimonial .common-header1 h4,
.get-in-touch-sec .common-header1 h4 {
    color: #2e4d6c;
}

.testimonial .common-header1 h4:before,
.get-in-touch-sec .common-header1 h4:before {
    border-left-color: #2e4d6c;
    border-bottom-color: #2e4d6c;
}

.testimonial .common-header1 h4:after,
.get-in-touch-sec .common-header1 h4:after {
    border-right-color: #2e4d6c;
    border-bottom-color: #2e4d6c;
}

.testimonial .common-header1 p,
.get-in-touch-sec .common-header1 p {
    color: #2e4d6c;
}

.testimonial .testimonial-comma-imgs {
    background: #2e4d6c;
}

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left .lient-details {
    display: block;
    text-align: center;
}*/

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left .lient-details h2 {
    margin: auto;
}*/

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left h4 {
    margin-top: 27px;
}
*/

/*.testimonial .testimonial-slider-box .testimonial-slider-box-left .lient-details {
    margin-bottom: 56px;
}*/
/***********************************/
.from-my-blog-sec {
    padding-bottom: 36px;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.from-my-blog-sec .de-blog-1 {
    position: absolute;
    left: 5%;
    top: 15%;
}

.from-my-blog-sec .blogs-section-part .slider .row {
    justify-content: center;
}

.from-my-blog-sec .de-blog-2 {
    position: absolute;
    right: 10%;
    bottom: 10%;
}

.from-my-blog-sec-cont-area {}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big {
    position: relative;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont {
    position: absolute;
    left: 48px;
    bottom: 48px;
    right: 48px;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul {
    margin-bottom: 10px;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul li {
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
    color: #fff;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul li svg {
    vertical-align: bottom;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont ul li span {}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    line-height: 40px
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img img {
    display: block;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big:hover .from-my-blog-sec-cont-area-big-img:after {
    background: rgba(0, 0, 0, 0.5);
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: 0.3s all linear;
    margin-bottom: 20px;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-img {
    opacity: 1;
    transition: 0.3s all linear;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-cont ul li {
    color: #fff;
    transition: 0.3s all linear;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-cont h2 {
    color: #fff;
    transition: 0.3s all linear;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    top: 30px;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul {
    margin-bottom: 10px;
    position: absolute;
    height: 100%;
    bottom: 0;
    margin-bottom: 0;
    width: 100%;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li {
    display: inline-block;
    margin-right: 12px;
    font-size: 16px;
    color: #948daa;
    transition: 0.3s all linear;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li.from-my-blog-sec-cont-area-small-cont-top {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li.from-my-blog-sec-cont-area-small-cont-bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li svg {

    vertical-align: bottom;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont ul li span {}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont h2 {
    font-size: 22px;
    color: #222;
    font-weight: 700;
    line-height: 33px;
    margin-top: 30px;
    transition: 0.3s all linear;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s all linear;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-img img {
    display: block;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small:hover .from-my-blog-sec-cont-area-small-img:after {
    background: rgba(0, 0, 0, 0.5);
}

/**************************************************/
.get-in-touch-sec {
    background-color: #333;
    background: url(../images/get-in-touch-sec-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 107px;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    overflow: hidden;
}

.get-in-touch-sec-info-box {
    display: flex;
    align-items: center;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon {
    width: 60px;
    height: 60px;
    background: #64326d;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #fff;
    width: 22px;
    height: 22px;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text {
    width: 71%;
    margin-left: 30px;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text h4 {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2e4d6c;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text p {
    font-size: 16px;
    color: #2e4d6c;
    font-weight: 400;
    margin-top: 10px;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text p a {
    font-size: 16px;
    color: #2e4d6c;
    font-weight: 700;
    margin-top: 10px;
    text-decoration: none;
}

.get-in-touch-sec-info-box .get-in-touch-sec-info-box-text p a.highlight-color {
    color: #4d8546;
    font-weight: 900;
}

.get-in-touch-sec-map-form {
    margin-top: 80px;
}

.get-in-touch-sec .common-header1 {
    width: 74%;
}

.fgroup.used label,
.fgroup input:focus~label,
.fgroup input.used~label,
.fgroup input.used~label,
.fgroup input.inused~label,
.fgroup textarea:focus~label,
.fgroup textarea.used~label,
.fgroup textarea.inused,
.fgroup select:focus~label,
.fgroup select.used~label,
.fgroup select.inused~label {
    top: 0;
    left: 10px;
    font-size: 12px;
    background: transparent;
    color: #222;
    padding: 3px;
}

.fgroup label {
    position: absolute;
    top: 24px;
    left: 15px;
    transition: all 0.3s;
    pointer-events: none;
    padding: 0px;
    font-weight: 400;
    font-size: 16px;
    color: #222;
    display: revert;
}

.fgroup {
    position: relative;
    text-align: left;
    /*  margin-bottom: 20px;*/
}

.get-in-touch-sec-map {
    overflow: hidden;
    border-radius: 10px;
}

.get-in-touch-sec-form {
    padding-left: 80px;
}

.get-in-touch-sec-map-form .form-cont input,
.get-in-touch-sec-map-form .form-cont textarea {
    width: 100%;
    padding: 21px 14px;
    margin: 0px 0 20px;
    color: #222;
    font-weight: 400;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
    outline: none;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.get-in-touch-sec-map-form .form-cont input::placeholder,
.get-in-touch-sec-map-form .form-cont textarea::placeholder {
    color: #222;
}

.get-in-touch-sec-map-form .form-cont textarea {
    min-height: 110px;
    resize: none;
}

.get-in-touch-sec-map-form .form-cont input:focus {
    top: -5px;
}

.get-in-touch-sec-map-form .form-cont select {
    width: 100%;
    padding: 20px;
    margin: 15px 0;
    color: #000;
    border: none;
    font-weight: 400;
    font-size: 15px;
    box-sizing: border-box;
    border-radius: 5px;
    background-position: 0 0;
    outline: -webkit-focus-ring-color auto 0px;
    /* -webkit-appearance: none;
       -moz-appearance: none; */
    background: #fff;
}

.get-in-touch-sec-map-form .form-cont input::placeholder,
.get-in-touch-sec-map-form .form-cont textarea::placeholder {
    color: #222;
}

/**************************************************/




/***********************************/

footer {
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 110px 0 30px 0;
    overflow: hidden;
}

footer .box ul {
    list-style-type: none;
    padding-left: 0;
}

footer .box ul li {
    text-decoration: none;
    font-size: 16px;
    color: #6d6d6d;
    width: 100%;
}

footer .box ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #6d6d6d;
    width: 100%;
    padding-bottom: 2px;
}

footer .box ul li a svg {
    vertical-align: middle;
    margin-right: 10px;
}

footer .box ul li a img {
    margin-right: 16px;
}

footer .box ul li a:hover {
    border-bottom: 1px solid #fff;
}

footer .box h3 {
    margin: 18px 0;
    font-size: 22px;
    color: #64326d;
    position: relative;
    height: 25px;
    font-weight: 600;
}

footer .box p {
    margin-top: 12px;
    text-align: left;
    line-height: 24px;

    font-size: 16px;
    color: #6d6d6d;
    margin-bottom: 20px;
}

footer .box ul li {
    margin-bottom: 0.5rem;
    line-height: 28px;
}

footer .underline_text ul li {
    margin-bottom: 15px;
    line-height: 25px;
    position: relative;
}

footer .underline_text ul li:after {
    content: "";
    border-bottom: 1px solid #6d6d6d;
    width: 120px;
    position: absolute;
    left: 0;
    bottom: -4px;
}

.location_img {
    float: left;
    margin-top: 3px;
}

.location_text {
    float: left;
    width: 84%;
    margin-left: 14px;
}

.clear {
    clear: both;
}

.link_over {
    cursor: pointer;
    font-weight: 700 !important;
}

.link_over:hover {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.copyright-area {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #dadada;
    padding-top: 30px;
    margin: 93px auto 0;
}

.copyright-area a {
    margin-left: 10px;
    background: #64326d;
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    position: relative;
}

.copyright-area a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #fff;
}

.copyright-text {
    text-align: center;
    line-height: 24px;

    font-size: 16px;
    color: #6d6d6d;
}

.copyright-text a {
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    color: #64326d;
    margin-left: 0;
}

.color-header {
    background: #99e3e3;
}

.header.color-header .menu>.menu-item>a {
    color: #222;

}

.header.color-header .menu>.menu-item>a .plus {
    border-color: #222;
}

.header-top {
    margin-top: 95px;
}

.home-about-us-sec.the-higherself-healing-section {
    background: #fff;
}

.home-about-us-sec.the-higherself-healing-section .home-about-us-sec-left:after {
    width: 68px;
    height: 107px;
    border-radius: 15px;
    left: auto;
    bottom: -69px;
    right: 45%;
}

.home-about-us-sec.the-higherself-healing-section .home-about-us-sec-right h2 {
    font-size: 30px;
    margin-bottom: 11px;
}

.banner-heading-part-section {
    background: url(../images/home-banner.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.banner-heading-part-section h5 {
    text-align: center;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #64326d;
    font-weight: 700;
    margin-bottom: 10px;
}

.heading2 {
    font-size: 48px;
    color: #222;
    font-weight: 700;

    font-family: 'TenezTest-Black';
}

.banner-heading-part-section .heading2 {
    text-align: center;
    margin-top: 20px;
    text-transform: capitalize;
}

.tarot-card-reading-section {
    padding: 100px 0;
    background: #fff;
    overflow: visible;
}

.home-about-us-sec.tarot-card-reading-section .home-about-us-sec-left:before {
    display: none;
}

.home-about-us-sec.the-higherself-healing-section .home-about-us-sec-left:after {
    background: #2e4d6c;
}

.heading-top {
    margin-top: 95px;
}

.banner-img-section {
    position: relative;
    overflow: hidden;
}

.banner-img-section:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.banner-img-section .banner-img img {
    display: block;
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.banner-img-section.about-binita-rege-sec .banner-img img {
    object-position: 0 72%;
}

.banner-img-section .content-part {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-50%);
}

.banner-img-section .content-part .heading2 {
    color: #fff;
    text-transform: capitalize;
}

.banner-img-section .content-part h5 {
    text-align: center;
    display: block;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    margin-bottom: 17px;
}

.banner-img-section .content-part p {
    color: #fff;
    margin-top: 20px;
}

.short-decripction {
    margin-top: -61px;
    z-index: 8;
    position: relative;
}

.short-decripction .center-part {
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0.6875rem 3.125rem 0 rgba(0, 0, 0, .1);
    background: #fff;

}

.short-decripction .center-part h2 {
    font-size: 22px;
    color: #222;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    line-height: 45px;
}

.main-content-part {
    padding: 100px 0;
}

.main-content-part p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    margin-bottom: 30px;

}

.main-content-part p a {
    color: #64326d;
}

.main-content-part h3 {
    font-size: 24px;
    color: #222;
    font-weight: 700;
    font-family: 'TenezTest-Black';
    margin-bottom: 30px;
}

.main-content-part h4 {
    font-size: 24px;
    color: #222;
    font-weight: 700;
    font-family: 'TenezTest-Black';
    margin-bottom: 30px;
    margin-top: 50px;
}

.main-content-part .main-listing-poinit-part {
    padding: 60px 87px;
    background: #f2f5fb;
    border-radius: 15px;
}

.main-content-part .main-listing-poinit-part ul li {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-size: 18px;
    line-height: 29px;
    margin-bottom: 15px;
    font-weight: 500;
}

.main-content-part .main-listing-poinit-part ul li:before {
    content: "\2714";
    font-size: 20px;
    color: #262626;
    position: absolute;
    top: 0;
    left: -28px;
    display: block;
}

.main-content-part .main-listing-poinit-part ul li:last-child {
    margin-bottom: 0;
}

.main-content-part .main-listing-poinit-part {
    margin-bottom: 40px;
}

.get-in-touch-sec.contact-use-section-page {
    background: none;
    padding: 100px 0;
}

.get-in-touch-sec.contact-use-section-page .get-in-touch-sec-map-form {
    margin-top: 0;
}

.get-in-touch-sec.contact-use-section-page .get-in-touch-sec-info-box {
    margin-bottom: 20px;
}

.get-in-touch-sec.contact-use-section-page .get-in-touch-sec-info-box:last-child {
    margin-bottom: 0;
}

.get-in-touch-sec.contact-use-section-page .form-cont .fgroup input,
.get-in-touch-sec.contact-use-section-page .form-cont .fgroup textarea {
    background: #f8f8f8;
    color: #606060;
}

.get-in-touch-sec.contact-use-section-page .get-in-touch-sec-map-form p {

    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 17px;
    font-weight: 300;
    color: #948daa;
}

.main-content-part.about-us-section-my-story h3 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'TenezTest-Black';
}

.about-me-section {
    padding: 100px 0;
}

.the-meditation-circle-section {
    background: url("../images/the-meditation-circle-banner.jpg") no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90vh;
    position: relative;
}

.the-meditation-circle-section .content-part-div {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 40%;
    background: #fff;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 15px;
    transform: translateY(-50%);
}

.the-meditation-circle-section .content-part-div .heading2 {
    margin-bottom: 20px;
}

.the-meditation-circle-section .content-part-div p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #615978;
    margin-bottom: 1rem;
}

.about-us-section-my-story .sub-part-content .img-left-side {

    float: left;
    padding-right: 50px;
    width: 19%;
}

.about-us-section-my-story .sub-part-content .img-left-side img {
    border-radius: 15px;
}

.about-us-section-my-story .sub-part-content {
    margin-bottom: 80px;
}

.about-us-section-my-story .sub-part-content:last-child {
    margin-bottom: 0;
}

.about-us-section-my-story .sub-part-content h5 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'TenezTest-Black';
}

.about-us-section-my-story .sub-part-content .left-side-part-img img {
    border-radius: 15px;
}

.about-us-section-my-story .sub-part-content.illuminating-paths-with-divine-section .left-side-part-img {
    text-align: right;
}

.about-us-section-my-story .sub-part-content.illuminating-paths-with-divine-section .left-side-part-img img {
    border-radius: 15px;
}

.get-in-touch-sec.contact-use-section-page.contact-us-home-page-part {
    background: url(../images/get-in-touch-sec-bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 107px;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    overflow: hidden;
}

.get-in-touch-sec.contact-use-section-page.contact-us-home-page-part .get-in-touch-sec-map-form p {
    color: #2e4d6c;
}

.news-letter {
    background: #f2f5fb;
    padding: 60px 0;
}

.news-letter .format-part {
    text-align: center;
}

.news-letter .format-part p {
    position: relative;
    display: inline-block;
    line-height: 1;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #222;
    font-family: TenezTest-Black;
}

.news-letter .format-part .form-format-part .common-btn {
    margin-top: 0;
    padding: 13px 40px;

}

.news-letter .format-part .form-format-part input {
    width: 300px;
    padding: 15px 14px;
    color: #222;
    font-weight: 400;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 6px;
    outline: none;
    border: none;
}

.testimonial.testimonial-details-pages {
    background: none;
}

.testimonial.testimonial-details-pages .testimonial-slider-box-left {
    border: 1px solid #ddd;
}

.testimonial.testimonial-details-pages .testimonial-slider-box {
    margin-bottom: 0;
}

.testimonial.testimonial-details-pages .magic-shadow-sm {
    margin-bottom: 30px;
}

.testimonial-slider-related {
    background: none;
    background: url(../images/get-in-touch-sec-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 20px 0 70px;
}

.testimonial-slider-related .testimonial-slider-box-left {
    border: 1px solid #ddd;
}

.testimonial-slider-related.the-meditation-testimoials .testimonial-slider-box-left {
    min-height: 333px;
}

.blogs-section-part .blog-thumb {
    border: 1px solid #ddd;
    border-radius: 15px;
}

.blogs-section-part .blog-thumb .blog-thumb-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    transition: .25s all linear;
}

.blogs-section-part .blog-thumb .blog-thumb-img img {
    border-radius: 10px 10px 0 0;
    display: block;
    width: 100%;
}

.blogs-section-part .blog-thumb .content-part {
    padding: 30px;
    min-height: auto;
}

.blogs-section-part .blog-thumb .content-part h2 {
    font-size: 19px;
    color: #000b33;
    line-height: 24px;
    margin-bottom: 13px;
    font-weight: 700;
    font-family: 'TenezTest-Black';
}

.blogs-section-part .blog-thumb .content-part p {
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 22px;
    color: #615978;
    margin-bottom: 0;
}

.blogs-section-part .blog-thumb .content-part .read-more {
    display: inline-block;
    color: #fd4c5c;
    font-size: 16px;
    text-decoration: none;
    text-transform: capitalize;
    border-bottom: 1px solid #fd4c5c;
    margin-top: 25px;
}

.blogs-section-part .blog-thumb .content-part .common-btn {
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
}

.blog-details-section {
    padding: 60px 0 100px;
}

.home-about-us-sec.blog-details-section .home-about-us-sec-right p strong {
    font-weight: 600;
}

.home-about-us-sec.blog-details-section .home-about-us-sec-right p span {
    font-style: italic;
    font-weight: 500;
}

.home-about-us-sec.blog-details-section .home-about-us-sec-right .author {
    text-align: right;
}

.home-about-us-sec.blog-details-section .home-about-us-sec-right .author p {
    font-style: italic;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;

}

.testimonial.testimonial-details-pages .testimonial-slider-box-left.equal-min-box {
    min-height: 355px;
}

.the-semminaars-section {
    padding: 100px 0;
}

.meditation-sessions {
    padding-top: 0;
}

.the-semminaars-section .semminaars ul li {
    width: 31%;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
}

.the-semminaars-section .semminaars ul li img {
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    object-position: center;
}

.the-semminaars-section .headingpart {
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-slider-services-box {
    flex-direction: column;
    padding: 15px;
    margin: 0px 10px 35px;
    position: relative;
    border-radius: 10px;
    padding-top: 40px;
}

.testimonial-slider-services-box .content-part {
    min-height: 173px;
}

.whats-up-icon {
    border-radius: 6px 6px 0 0;
    position: fixed;
    bottom: 4px;
    right: 4px;
    cursor: pointer;
    z-index: 100;
}

.whats-up-icon img {
    width: 50px;
    height: 50px;
}

.contact-us-home-page-part .get-in-touch-sec-form .common-header1 h4:before {
    content: none;
}

.contact-us-home-page-part .get-in-touch-sec-form .common-header1 h4:after {
    content: none;
}

.contact-us-home-page-part .get-in-touch-sec-form .common-header1 {
    margin-right: auto;
    text-align: start;
    margin-left: unset;
    margin-bottom: 0%;
}

.contact-us-home-page-part .common-header1 {
    width: 100%;
}

/* Video-testmonial by sukesh */
.video-testmonial {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f000;
}

.video-textmonial-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    background: #ffffff00;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.video-textmonial-left-box {
    width: 30%;
    background-color: #64326d00;
    color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 300px;
}

.video-textmonial-left-box h2 {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: TenezTest-Black;
}

.video-textmonial-left-box p {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 15px;
}

.video-textmonial-controls {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.video-texmonial-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}

.video-texmonial-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.video-testmonial-right-box {
    width: 70%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 25%;
    padding: 10px;
}

/* 👇 NEW FIX – Video ka size control */
video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

iframe {
    width: 100%;
    height: 250px;
    border: none;
}

@media (max-width: 768px) {
    .video-textmonial-container {
        flex-direction: column;
        align-items: center;
    }

    .video-textmonial-left-box {
        width: 100%;
        text-align: center;
    }

    .video-testmonial-right-box {
        width: 100%;
    }

    .slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 100%;
    }
}

/* Video-testmonial by sukesh */

/* podcast section by sukehs */
/* MAIN PODCAST SECTION */
.podX-section {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
    color: white;
    text-align: center;
}

.podX-heading {
    font-size: 32px;
    font-family: TenezTest-Black;
    margin-bottom: 20px;
    font-weight: 700;
    color: #000;
}

/* SLIDER WRAPPER - ARROWS हमेशा दिखें */
.podX-slider-wrapper {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: hidden;
    padding: 0 60px;
    /* arrow space so they never disappear */
}

/* SLIDER MOVEMENT */
.podX-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* VIDEO CARD */
.podX-video-card {
    min-width: 23%;
    background: #1b1b1b;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px #000;
}

.podX-video-card iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* ARROWS - FIXED, NEVER HIDE */
.podX-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: #000;
    border: none;
    font-size: 32px;
    color: white;
    padding: 12px 17px;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: 0.2s;
}

.podX-nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.podX-prev-btn {
    left: 10px;
}

.podX-next-btn {
    right: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .podX-video-card {
        min-width: 90%;
    }

    .podX-slider-wrapper {
        padding: 0 45px;
    }

    .podX-video-card iframe {
        height: 220px;
    }

    .podX-nav-btn {
        font-size: 28px;
        padding: 10px 14px;
    }
}

/* podcast section close by sukehs */


/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/
/***********************************/

@media screen and (max-width: 1600px) {
    .top-banner-right img {
        width: 68%;
    }

    .the-meditation-circle-section .content-part-div {
        right: 8%;
        width: 53%;
    }

    .welcome-to-my-word-sec .elements-celestial-bodies-icon img {
        position: absolute;
        right: 3%;
    }

    .home-about-us-sec .de-about-3 {
        position: absolute;
        left: 3%;
    }

    .home-about-us-sec .de-about-2 {
        position: absolute;
        left: 4%;
    }

    .why-work-with-me-sec .de-about-3 {
        position: absolute;
        top: -24px;
    }
}

@media(max-width: 1366px) {
    .banner-text {
        left: 0%;
    }

    .banner-text h1 {
        font-size: 80px;
        line-height: 90px;
    }

    .header .menu>.menu-item>a {
        padding: 25px 7px;
    }

    .the-meditation-circle-section .content-part-div {
        right: 7%;
        width: 64%
    }

    .why-work-with-me-sec .de-about-3 {
        top: -4%;
    }
}

@media(max-width: 1280px) {
    .the-meditation-circle-section .content-part-div {
        right: 4%;
        width: 64%;
    }
}

@media(max-width: 1024px) {
    .header .logo {
        margin-right: 20px;
    }

    .header .menu>.menu-item>a {
        padding: 25px 10px;
        font-size: 16px;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont {
        left: 15px;
        bottom: 15px;
        right: 15px;
        top: 15px;
    }

    .from-my-blog-sec .de-blog-2 {
        position: absolute;
        right: 3%;
        bottom: 3%;
    }

    .get-in-touch-sec-form {
        padding-left: 30px;
    }

    .the-meditation-circle-section .content-part-div {
        right: 4%;
        width: 64%;
    }

    .the-semminaars-section .semminaars ul li {
        width: 30%;
    }
}

@media(max-width: 768px) {

    .top-banner .slide-arrow {
        display: none !important;
    }

    .home-services-sec-box {
        padding: 20px 20px;
    }

    .home-services-sec-box h4 {
        font-size: 24px;
    }

    .why-work-with-me-sec .why-work-with-me-sec-right {
        padding-right: 0;
        margin-top: 50px;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-small .from-my-blog-sec-cont-area-small-cont {
        left: 30px;
        bottom: 30px;
        right: 30px;
        top: 30px;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-img img {
        display: block;
        width: 100%;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big {
        margin-bottom: 50px;
    }

    .get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon {
        width: 50px;
        height: 50px;
    }

    .get-in-touch-sec-info-box .get-in-touch-sec-info-box-text {
        width: 72%;
        margin-left: 12px;
    }

    .get-in-touch-sec-info-box .get-in-touch-sec-info-box-icon svg {
        width: 25px;
        height: 25px;
    }

    .banner-text {
        width: 100%;
    }

    .top-banner {
        height: auto;
    }

    .top-banner .row {
        flex-direction: column-reverse;
    }

    .top-banner-left {
        height: 60vh;
    }

    .top-banner-right {
        width: 100%;
        position: relative;
        top: unset;
        transform: unset;
    }

    .top-banner-right img {
        width: 80%;
        object-fit: cover;
        margin: 130px auto;
        min-height: unset;
        position: relative;
    }

    .banner-text {
        left: unset;
        top: unset;
        transform: unset;
        text-align: center;
    }

    .home-about-us-sec .about-img-2 {
        bottom: 60px;
    }

    .home-about-us-sec .home-about-us-sec-left:after {
        bottom: -20px;
    }

    .home-about-us-sec .home-about-us-sec-right {
        margin-top: 100px;
    }
}

@media(max-width: 575px) {

    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        width: 93%;
    }

    .common-header1 {
        width: 90%;
    }

    .get-in-touch-sec-info-box {
        margin-bottom: 40px;
    }

    .get-in-touch-sec-form {
        padding-left: 0;
        margin-top: 50px;
    }

    .copyright-text {
        margin-bottom: 20px;
    }

    .why-work-with-me-sec {
        padding-bottom: 60px;
    }

    .copyright-area {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 !important;
    }

    footer {
        padding: 110px 20px 30px;
    }

    .logo-nav {
        padding: 0 20px;
    }

    .banner-text h1 br {
        display: none;
    }

    .home-about-us-sec .home-about-us-sec-right h2 {
        font-size: 40px;
    }

    .why-work-with-me-sec .why-work-with-me-sec-right h2 {
        font-size: 40px;
    }

    .banner-text h1 {
        font-size: 50px;
        line-height: 55px;
    }

    .banner-text {
        width: 90%;
        left: 20px;
    }

    .banner-text a {
        font-size: 18px;
        padding: 20px 20px;
    }
}

@media(max-width:460px) {}

@media(max-width:420px) {}

@media(max-width:400px) {
    .top-banner .de-hero-5 {
        bottom: 2%;
    }

    .home-about-us-sec .home-about-us-sec-right h2 {
        font-size: 36px;
    }

    .why-work-with-me-sec .why-work-with-me-sec-right h2 {
        font-size: 36px;
    }

    .home-about-us-sec .home-about-us-sec-right ul {
        margin-top: 28px;
        margin-bottom: 0;
    }

    .home-services-sec .de-intro-3 {
        right: -12%;
    }

    .from-my-blog-sec .de-blog-1 {
        left: -6%;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont {
        position: absolute;
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .from-my-blog-sec-cont-area .from-my-blog-sec-cont-area-big .from-my-blog-sec-cont-area-big-cont h2 {
        font-size: 26px;
        line-height: 30px;
    }
}

@media(max-width:320px) {}

@media only screen and (min-width:0) and (max-width:1023px) {
    .home-about-us-sec.the-higherself-healing-section {
        padding: 60px 0;
    }

    .banner-heading-part-section {
        padding: 50px 0;
    }

    .banner-heading-part-section .heading2 {
        font-size: 32px;
    }

    .short-decripction .center-part {
        padding: 24px;
    }

    .short-decripction .center-part h2 {
        font-size: 20px;
        line-height: 33px;
    }

    .main-content-part {
        padding: 60px 0;
    }

    .main-content-part .main-listing-poinit-part {
        padding: 33px 40px;
    }

    .main-content-part .main-listing-poinit-part ul li:last-child {
        margin-bottom: 15px;
    }

    .get-in-touch-sec.contact-use-section-page {
        padding: 60px 0;
    }

    .get-in-touch-sec.contact-use-section-page .get-in-touch-sec-info-box {
        align-items: start;
    }

    .home-about-us-sec.about-me-section .home-about-us-sec-right {
        margin-top: 0;
    }

    .about-me-section {
        padding: 60px 0;
    }

    .main-content-part.about-us-section-my-story h3 {
        font-size: 36px;
    }

    .the-meditation-circle-section {
        height: 230vh;
    }

    .the-meditation-circle-section .content-part-div {
        right: 0;
        width: 92%;
        left: 0;
        margin: 0 auto;
    }

    .the-meditation-circle-section .content-part-div .heading2 {
        font-size: 34px;
    }

    .about-us-section-my-story .sub-part-content .img-left-side {
        padding-right: 20px;
        width: 41%;
    }

    .news-letter {
        padding: 47px 0;
    }

    .news-letter .format-part p {
        font-size: 19px;
    }

    .news-letter .format-part .form-format-part input {
        width: 227px;
    }

    .news-letter .format-part .form-format-part .common-btn {
        padding: 13px 21px;
    }

    .tarot-card-reading-section {
        overflow: hidden;
    }

    .banner-img-section .content-part .heading2 {
        font-size: 38px;
    }

    .top-banner-right:after {
        width: 319px;
        height: 183px;
        top: 89px;
    }

    .top-banner-left {
        height: 79vh;
    }

    .top-banner .de-hero-2,
    .top-banner .de-hero-3,
    .top-banner .de-hero-4,
    .top-banner .de-hero-5,
    .top-banner .de-hero-6 {
        display: none;
    }

    .banner-text h1:before,
    .banner-text h1:after {
        content: none;
    }

    .top-banner-right img {
        margin-bottom: 50px;
    }

    .banner-text p {
        font-size: 18px;
        line-height: 30px;

    }

    .welcome-to-my-word-sec .de-intro-1 {
        top: 1%;
        width: 46px;
    }

    .welcome-to-my-word-sec .elements-celestial-bodies-icon img {
        top: auto;
        bottom: 0;
    }

    .home-about-us-sec .de-about-3 {
        top: 3%;
    }

    .home-about-us-sec .home-about-us-sec-left:after {
        left: 0;
        right: 0;
        margin: auto;
    }

    .home-about-us-sec .de-about-2 {
        position: absolute;
        left: auto;
        bottom: 4%;
        z-index: 2;
        width: 149px;
        right: 3%;
    }

    .testimonial .shap-icon img {
        position: absolute;
        top: 0;
        right: 0;
        width: 118px;
        left: 0;
        margin: auto;
    }

    .testimonial.testimonial-details-pages .testimonial-slider-box-left {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonial.testimonial-details-pages .testimonial-slider-box {
        padding-left: 0;
        padding-right: 0;
    }

    .testimonial.testimonial-details-pages {
        padding: 60px 0 40px;
    }

    .testimonial-slider-related .testimonial-slider-box {
        padding-left: 0;
        padding-right: 0;
    }

    .testimonial-slider-related.the-meditation-testimoials .testimonial-slider-box-left {
        min-height: auto;
    }

    .from-my-blog-sec .blogs-section-part .slider .magic-shadow-sm {
        margin-bottom: 30px;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item.menu-item-has-children .sub-menu {
        position: static;
        width: 100%;
    }

    .the-semminaars-section .semminaars ul li {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }

    .the-semminaars-section .semminaars ul li img {
        height: auto;
    }

    .header.color-header .menu>.menu-item>a {
        color: #fff;
    }

    .header.color-header .menu>.menu-item>a .plus {
        border-color: #fff;
    }
}