@charset "UTF-8";
/*-----------------------------------------------------------------------------------
    Template Name: Wellco
    Description: Multipurpose UpSkills HTML Template
    Author: WebTend 
    Version: 1.0

-----------------------------------------------------------------------------------
    
    >>> TABLE OF CONTENTS:
    =======================

    01. Common/Reusable CSS
        1.1 - Animations
        1.2 - General
        1.3 - Section Title
        1.4 - Video Button
        1.5 - Slick Arrows
        1.6 - Slick Dots
        1.7 - Typography
        1.8 - Tables
        1.9 - Forms
        1.10 - Forms
        1.11 - Buttons
        1.12 - Pagination
        1.13 - Colors
        1.14 - Accordion
        1.15 - Tabs
    02. Homepage
        2.1 - Preloader
        2.2 - Topbar
        2.3 - Header
        2.4 - Banner
        2.5 - Features
        2.6 - About Us
        2.7 - Team
        2.8 - Cta
        2.9 - Video Box
        2.10 - Testimonials
        2.11 - Course Grid
        2.12 - Sponsors
        2.13 - Newsletter
        2.14 - Why-Us-List
        2.15 - Plane_box
        2.16 - Skills
        2.17 - Counter
        2.18 - Quote Form
        2.19 - Progress Bar
        2.20 - Footer
        2.21 - Back To Top
    03. Subheader
    04. Blog Grid
    05. Blog List
    06. Blog Details
    07. Portfolio Box
    08. Event Box
    09. Service Box
    10. Contact Us
    
-----------------------------------------------------------------------------------*/
/*Google Fonts*/
@import url('../../../../../../https@fonts.googleapis.com/css2@family=Raleway_3Awght_40100;200;300;400;500;600;700;800;900&display=swap');
@import url('../../../../../../https@fonts.googleapis.com/css2@family=Nunito+Sans_3Awght_40200;300;400;600;700;800;900&display=swap');

:root {
    --thm-font: 'Raleway', sans-serif;
    /* Headings */
    --thm-b-font: 'Nunito Sans', sans-serif;
    /* Body font */
    --thm-color-one: #1b2336;
    --thm-color-two: #4b83fb;
    --thm-color-three: #65cfa9;
    --thm-color-four: #ffbd3f;
    --thm-color-five: #0c1634;
    --thm-color-six: #ff0030;
    --thm-color-light: #dadada;
    /*RGB Colors*/
    --thm-color-one-rgb: 27, 35, 54;
    --thm-color-two-rgb: 75, 131, 251;
    --thm-color-three-rgb: 101, 207, 169;
    --thm-color-four-rgb: 255, 189, 63;
    --thm-color-six-rgb: 255, 0, 48;
    --thm-border-rgb: 241, 241, 241;
    /*Theme Colors*/
    --thm-body-color: #415674;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #f1f1f1;
    /*Border Color*/
}

/*Animations*/
@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.9);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(2px);
    }

    20% {
        opacity: 1;
        transform: translateX(4px);
    }

    40% {
        opacity: 1;
        transform: translateX(6px);
    }

    60% {
        opacity: 1;
        transform: translateX(6px);
    }

    80% {
        opacity: 1;
        transform: translateX(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(2px);
    }
}

@keyframes slideTop {
    0% {
        opacity: 1;
        transform: translateY(2px);
    }

    20% {
        opacity: 1;
        transform: translateY(4px);
    }

    40% {
        opacity: 1;
        transform: translateY(6px);
    }

    60% {
        opacity: 1;
        transform: translateY(6px);
    }

    80% {
        opacity: 1;
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(2px);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.slideRight .arrow {
    animation: slideRight 1s linear infinite;
}

.slideRightTwo {
    animation: slideRight 1s linear infinite;
}

.slideTop .arrow {
    animation: slideTop 1s linear infinite;
}

.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.rotate_elem {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.arrows {
    display: flex;
    align-items: center;
}

.arrows .arrow {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--thm-white);
}

.arrows .arrow+.arrow {
    margin-left: 10px;
}

.arrows.to_up {
    display: inline-block;
}

.arrows.to_up .arrow {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid #c9ee46;
}

.arrows.to_up .arrow+.arrow {
    margin-left: 0;
    margin-top: 0px;
}

.pulse-animated {
    position: relative;
    z-index: 1;
}

.pulse-animated:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: rgb(var(--thm-color-three-rgb), 10%);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--thm-b-font);
    overflow-x: hidden;
    color: var(--thm-body-color);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}

.section {
    position: relative;
    padding: 20px 0;
    /* margin-bottom: 120px; */
}

.section-padding {
    position: relative;
    padding: 113px 0 56px;
}

.section_counter {
    counter-reset: count;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.image-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

img {
    max-width: 100%;
}

select {
    appearance: none;
}

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

.container-wide .row {
    flex-wrap: unset;
}

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

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


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/*Close*/

.close_trigger span {
    position: absolute;
    width: 24px;
    height: 2px;
    opacity: .5;
    transition: .3s;
    background-color: var(--thm-color-two);
}

.close_trigger span:first-child {
    transform: rotate(45deg);
}

.close_trigger span:last-child {
    transform: rotate(135deg);
}

.close_trigger:hover span:first-child {
    transform: rotate(0deg);
}

.close_trigger:hover span:last-child {
    transform: rotate(180deg);
}

/*section-title*/
.section-title {
    max-width: 870px;
    padding-bottom: 0px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-title .subtitle {
    font-size: 14px;
    color: var(--thm-color-two);
    font-weight: bold;
    margin-bottom: 10px;
    justify-content: center;
    text-transform: uppercase;
}
.mr-20 {
    margin-right: 20px;
}
.mt-70 {
    margin-top: 73px;
}
.mt-20 {
    margin-top: 20px;
}
.section-title .subtitle i {
    margin-right: 10px;
    font-weight: 500;
}

.section-title .title {
    font-weight: 600;
    text-transform: none;
}

.section-title p {
    font-weight: 600;
}

.section-title.left-align {
    text-align: left;
    margin: 0;
}

.section-title.left-align .subtitle {
    justify-content: flex-start;
}

.section-title.white .subtitle,
.section-title.white .title {
    color: #000000;
    font-weight: bold;
}

.bg-thm-color-one .section-title.white .subtitle {
    color: var(--thm-color-two);
}

.mx-width-100 {
    max-width: 100%;
}

.mx-width-50 {
    max-width: 50%;
}

/*video*/
.video_btn.video_text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video_t{
	position: absolute;
    bottom: 20px;
    left: 345px;
    width: calc(100% - 60px);
    z-index: 1;
}

.video_btn .video_icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--thm-white)
}

.video_btn.video_text span {
    font-size: 14px;
    font-weight: bold;
    color: var(--thm-color-one);
    text-transform: uppercase;
    margin-left: 15px;
}

/*style 2*/

.video_btn.style_2 .video_icon {
    width: 80px;
    height: 80px;
}

.video_btn.big .video_icon {
    width: 120px;
    height: 120px;
}

.video_btn.style_2.big .video_icon:after {
    width: 180px;
    height: 180px;
}

/*Slick Arrows*/
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    z-index: 5;
    font-size: 0;
    border-radius: 6px;
    transition: 0.5s all;
}

.slick-arrow:before {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}

.slick-arrow.slick-prev {
    right: auto;
    left: 0;
}

.slick-arrow.slick-next {
    left: auto;
    right: 0;
}

.slick-arrow:hover {
    background-color: var(--thm-color-two);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
    color: var(--thm-white);
}

.arrows_none .slick-arrow {
    display: none !important;
}



/*Slick Dots*/
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    display: flex;
    margin: 0 3px;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--thm-border);
    transition: 0.3s all;
    background-color: var(--thm-white);
}

.slick-dots li.slick-active button {
    background-color: #c9ee46;
    border-color: #c9ee46;
}

/*style 2*/
.slick-dots.style_2 {
    margin-top: 9px;
}

.slick-dots.style_2 li button {
    border-color: rgba(29, 39, 69, 30%);
}

.slick-dots.style_2 li.slick-active button {
    border-color: var(--thm-color-two);
    background-color: var(--thm-white);
}

.shadow_1 {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: bold;
    color: var(--thm-color-one);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-family: var(--thm-font);
    color: var(--thm-color-one);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
}

h1 {
    font-size: 85px;
}

h2 {
    font-size: 72px;
}

h3 {
    font-size: 42px;
    line-height: 1.2;
}

h4 {
    font-size: 31px;
    line-height: 1.4;
}

h5 {
    font-size: 24px;
    line-height: 1.3;
}

h6 {
    font-size: 18px;
    line-height: 1.7;
}

p {
    margin-bottom: 30px;
}

a {
    color: #000000;
    transition: .3s;
    display: inline-block;
}

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

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-two);
    text-decoration: none;
}

/*Tables*/
table {
    margin-bottom: 30px;
}

table th,
table td {
    padding: 15px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-one);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
    margin-bottom: 30px;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

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

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

.mb-xl-60 {
    margin-bottom: 60px;
}

/*Forms*/
.form-control-custom {
    border: none;
    border-radius: 0;
    border-bottom: 3px solid var(--thm-border);
    background-color: transparent;
    padding: 15px 0;
    height: auto;
    padding-right: 30px;
    transition: 0.3s all;
}

.form-control-custom,
.form-control-custom:focus,
.form-control-custom::placeholder {
    font-size: 15px;
    font-weight: bold;
    color: var(--thm-color-one);
}

.form-control-custom:focus {
    box-shadow: none;
    background-color: transparent;
    border-color: var(--thm-color-two);
    padding-left: 30px;
}

.form-control-custom+i {
    position: absolute;
    top: 50%;
    right: 3px;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    pointer-events: none;
}

textarea.form-control-custom+i {
    top: 23px;
    transform: none;
}

.form-control-custom.style_2 {
    border: 3px solid rgb(var(--thm-border-rgb), 10%);
    border-radius: 8px;
    padding: 20px 30px;
}

.form-control-custom.style_2,
.form-control-custom.style_2::placeholder {
    color: var(--thm-color-light);
    font-weight: 600;
}

.form-control-custom.style_2+i {
    right: 30px;
}

.form-control-custom.style_2:focus {
    border-color: var(--thm-color-two);
}

/*Checkbox*/
.custom-checkbox {
    display: flex;
    align-items: center;
    padding-left: 24px;
    min-height: auto;
}

.custom-checkbox .custom-control-input {
    display: none;
}

.custom-checkbox .custom-control-label {
    padding-left: 15px;
}

.custom-checkbox .custom-control-label::after,
.custom-checkbox .custom-control-label::before {
    top: 50%;
    transform: translateY(-50%);
}

.custom-checkbox .custom-control-label::before {
    border: 2px solid var(--thm-color-two);
    width: 26px;
    height: 26px;
    border-radius: 0;
    background-color: transparent;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    border-color: var(--thm-color-two);
    background-color: transparent;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    width: 26px;
    height: 26px;
    background-image: url(../images/icons/check.png);
    background-size: auto;
}

/*Buttons*/
.thm-btn {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 13px 21px;
    text-transform: uppercase;
    transition: 0.5s all;
}

.thm-btn1 {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 4px 21px;
    text-transform: uppercase;
    transition: 0.5s all;
}

.thm-btn i {
    font-size: 12px;
    font-weight: 600;
    line-height: 2;
}

.thm-btn.thm-color-one-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-one-rgb), 50%);
}

.thm-btn.thm-color-two-shadow {
    box-shadow: 0px 5px 20px 0px #c9ee4670;
}

.thm-btn.thm-color-three-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-three-rgb), 50%);
}

.thm-btn.thm-color-four-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-four-rgb), 50%);
}
.thm-btn.thm-color-six-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-four-rgb), 50%);
}

.thm-btn.btn-rounded {
    border-radius: 50px;
    width: 100%;
    display: block;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn1.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 12px 21px;
}

.thm-btn.btn-rectangle.btn-small {
    border-radius: 6px;
}

.thm-btn.btn-border {
    border: 2px solid var(--thm-border);
}

.thm-btn.btn-circle {
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thm-btn.bg-thm-color-one:hover,
.thm-btn.bg-thm-color-one:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
    box-shadow: none;
}

.bg-thm-color-two-light,
.thm-btn.bg-thm-color-two-light {
    background-color: rgb(var(--thm-color-two-rgb), 7%);
}

.pt-img{
	width: 245px;
    height: 185px;
    margin-right: 20px;
}

.thm-btn.bg-thm-color-two:hover,
.thm-btn.bg-thm-color-two:focus,
.thm-btn.bg-thm-color-three:hover,
.thm-btn.bg-thm-color-three:focus,
.thm-btn.bg-thm-color-four:hover,
.thm-btn.bg-thm-color-four:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    box-shadow: none;
}

.thm-btn.bg-thm-color-two-light:hover,
.thm-btn.bg-thm-color-two-light:focus,
.thm-btn.bg-thm-color-white:hover,
.thm-btn.bg-thm-color-white:focus {
    background-color: var(--thm-color-two);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
    color: var(--thm-white);
    border-color: var(--thm-color-two);
	cursor: pointer;
}

/*Pagination*/
.pagination {
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination .page-item .page-link {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    border: 2px solid var(--thm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-color-one);
    background-color: transparent;
    font-family: var(--thm-font);
    margin-bottom: 30px;
}

.pagination .page-item .page-link i {
    font-weight: 600;
    font-size: 14px;
    color: var(--thm-color-two);
}

.pagination .page-item:hover .page-link i,
.pagination .page-item:hover .page-link,
.pagination .page-item.active .page-link {
    color: var(--thm-white);
    background-color: var(--thm-color-three);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-three-rgb), 50%);
    border-color: var(--thm-color-three);
}

blockquote {
    background-image: url(../images/blog/blockquote_bg.png);
    padding: 50px;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    margin-bottom: 30px;
}

blockquote .quote_title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 15px;
}

blockquote .quote_author {
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    color: var(--thm-color-one);
    display: flex;
    align-items: center;
}

blockquote .quote_author:before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--thm-color-two);
    margin-right: 20px;
    display: inline-flex;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
/*Colors*/
.thm-color-one {
    color: var(--thm-color-one);
}

.thm-color-two {
    color: var(--thm-color-two);
}

.thm-color-three {
    color: var(--thm-color-three);
}

.thm-color-light {
    color: var(--thm-color-light);
}

.thm-color-four {
    color: var(--thm-color-four);
}

.thm-color-six {
    color: var(--thm-color-six);
}

.thm-color-white {
    color: var(--thm-white);
}

.bg-thm-color-one {
    background-color: #1b2336;
}

.bg-thm-color-two {
    background-color: #c9ee46;
}

.bg-thm-color-two-blue {
    background-color: #4b83fb;
    color: #fff;
}

.bg-thm-color-two1 {
    background-color:#c9ee46fc;
}

.bg-thm-color-three {
    background-color: #c9ee46;
}

.bg-thm-color-four {
    background-color: var(--thm-color-four);
}

.bg-thm-color-six {
    background-color: var(--thm-color-six);
}

.bg-thm-color-white {
    background-color: var(--thm-white);
}

.bg-thm-color-one-rgb {
    background-color: rgba(var(--thm-color-one-rgb));
}

.bg-thm-color-two-rgb {
    background-color: rgba(var(--thm-color-two-rgb));
}

.bg-thm-color-three-rgb {
    background-color: rgba(var(--thm-color-three-rgb));
}

.bg-thm-color-four-rgb {
    background-color: rgba(var(--thm-color-four-rgb));
}

.bg-thm-color-six-rgb {
    background-color: rgba(var(--thm-color-six-rgb));
}

.bg-thm-color-two-gradient {
    background-color: #ad88d429;
    position: relative;
    overflow: hidden;
}

.bg-thm-color-two-gradient .element_1 {
    position: absolute;
    top: -40%;
    left: 0;
    z-index: -1;
}

.bg-thm-color-two-gradient .element_2 {
    position: absolute;
    bottom: -40%;
    right: 0;
    z-index: -1;
}

.bg-thm-color-two-gradient.style_2 .element_1 {
    top: 0;
}

.bg-thm-color-two-gradient.style_2 .element_2 {
    bottom: 0;
}

/*Preloder*/
.preloader {
    background-color: var(--thm-color-two);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/*topbar*/
.topbar {
    padding-bottom: 5px;
    padding-top: 5px;
    margin-bottom: 17px;
}

.topbar .right-side,
.topbar .left-side {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.topbar .right-side p {
    margin-bottom: 5px;
    color: #000000;
    margin-right: 15px;
    font-weight: bold;
}

.topbar .right-side .countdown-timer {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: bold;
    background-color: var(--thm-white);
    border-radius: 6px;
    padding: 6px 15px;
    line-height: 1;
    color: #000;
}

.topbar .right-side {
    justify-content: flex-end;
}

.topbar .right-side li {
    margin-right: 35px;
    margin-bottom: 6px;
}

.topbar .right-side li:last-child {
    margin-right: 0;
}

.topbar .right-side li a {
    color: var(--thm-white);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.topbar .right-side li a i {
    margin-right: 10px;
}

.topbar .right-side li:hover a {
    color: var(--thm-color-four);
}

/*header*/
.header-absolute {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
}

.header.can-sticky {
    position: fixed;
}

.header.sticky {
    background-color: var(--thm-white);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    animation-name: fadeHeaderInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    z-index: 100;
    /* padding-top: 20px; */
    padding-bottom: 20px;
}

.header {
    /* padding-top: 40px; */
    padding-bottom: 40px;
}

.header .nav_warp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header .nav_warp nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header .nav_warp nav .logo {
    margin-right: 45px;
}

.header .nav_warp nav .logo img {
    max-width: 180px;
}

.header .nav_warp .main-menu {
    display: flex;
    flex-wrap: wrap;
}

.header .nav_warp .main-menu>.menu-item {
    margin: 0 5px;
}

.header .nav_warp .main-menu>.menu-item>a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--thm-color-one);
    padding: 12.5px 8px;
}

.header .head_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .head_actions .search_bar input {
    height: 50px;
    padding: 5px 30px;
    border-radius: 50px;
    border: none;
    background-color: rgba(var(--thm-color-two-rgb), 7%);
    max-width: 215px;
}

.header .head_actions .search_bar input,
.header .head_actions .search_bar input::placeholder {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--thm-color-one);
}

.header .head_actions .search_bar input+i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    font-weight: 400;
    pointer-events: none;
}

.header .head_actions .head_trigger {
    width: 45px;
    height: 32px;
    margin-left: 30px;
    position: relative;
}

.header .head_actions .head_trigger span {
    width: 100%;
    height: 5px;
    background-color: var(--thm-color-one);
    display: block;
    margin-bottom: 8px;
    transition: 0.3s all;
    position: relative;
}

.header .head_actions .head_trigger span:nth-child(2) {
    width: calc(100% - 20%);
    left: 20%;
}

.header .head_actions .head_trigger:hover span:nth-child(2) {
    width: 100%;
    left: 0%;
}

.header .head_actions .head_trigger span:last-child {
    margin-bottom: 0;
}

.mobile_trigger {
    display: none;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children>a:after {
    display: inline-block;
    margin-left: .55em;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}

.bg-new{
	 background-color: #fdf0d0;
    border-radius: 100px;
    padding: 0px 15px 0px 15px;
}

.w-inline-block{
	margin-right: 10px;
}

.footer-sub-block-one-social{
	margin-left: 30px;
	margin-right: 15px;
	margin-top: 5px;
}

.fw-thin{
	
font-size: 40px;
}

.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 20px;
    box-shadow: 0px 10px 19px -5px rgb(0 0 0 / 12%);
    background: var(--thm-white);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    width: 343px;
    border-radius: 8px;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 999;
    transition: 0.3s all;
}

.menu-item-has-children>.sub-menu>li.menu-item>a {
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    white-space: nowrap;
    color: var(--thm-color-one);
}

.menu-item-has-children>.sub-menu>li.menu-item:hover>a {
    padding-left: 25px;
    transition: 0.5s;
    background-color: #c9ee46;
    color: #000000;
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>a:after {
    display: inline-block;
    margin-left: 0;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    right: 12px;
    transform: rotate(-90deg);
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0%;
}

/*style 2*/
.header.header-2 {
    /* padding-top: 20px; */
    /* padding-bottom: 20px; */
}

.header.header-2 .head_actions .search_bar input {
    background-color: var(--thm-white);
}

/*style 3*/

.header.header-3 {
    padding: 0;
}

.header.header-3 .nav_warp {
    width: 100%;
    display: block;
}

.header.header-3 .nav_sec {
    padding-top: 20px;
    padding-bottom: 20px;
}

.header.header-3 .nav_warp nav {
    justify-content: space-between;
}

.header.header-3 .nav_warp .main-menu>.search_trigger>a {
    color: var(--thm-color-two);
}

.header.header-3 .nav_warp .main-menu>.search_trigger:hover>a {
    color: var(--thm-color-one);
}

/*Search*/
.search-form-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, .8);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.search-form-wrapper.open {
    opacity: 1;
    visibility: visible;
}

.close_trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.search-form-wrapper .close_trigger {
    position: absolute;
    top: 60px;
    right: 60px;
    border-color: var(--thm-white);
}

.search-form-wrapper .close_trigger span {
    background-color: var(--thm-white);
}

.search-form-wrapper form {
    position: relative;
    max-width: 950px;
    width: 100%;
    transition-duration: .3s;
    transition-delay: .3s;
    transform: scale(.5);
    opacity: 0;
    visibility: hidden;
}

.search-form-wrapper.open form {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.search-form-wrapper form input {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid var(--thm-white);
    font-size: 40px;
    height: 80px;
    width: 100%;
    outline: none;
    color: var(--thm-white);
    font-weight: 400;
}

.search-form-wrapper form input::placeholder {
    color: var(--thm-white);
}

.search-form-wrapper .search-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: transparent;
    border: 0;
    color: var(--thm-white);
    font-size: 30px;
    outline: none;
    transition: .3s;
    cursor: pointer;
    padding: 0;
}

/*Aside bar*/
.aside_bar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--thm-white);
    z-index: 999;
    transition: .5s cubic-bezier(.77, 0, .175, 1);
    overflow: auto;
    padding: 30px;
}

.aside_bar.aside_bar_right {
    left: auto;
    right: -400px;
    width: 400px;
}

.aside_bar.aside_bar_left {
    right: auto;
    left: -400px;
    width: 400px;
}

.aside_bar.aside_bar_left.aside_mobile {
    right: auto;
    left: -300px;
    width: 300px;
}

.aside_bar.aside_bar_right.open {
    left: auto;
    right: 0;
}

.aside_bar.aside_bar_left.open {
    right: auto;
    left: 0;
}

.aside-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background-color: rgba(0, 0, 0, .7);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.aside_bar.open+.aside-overlay {
    opacity: 1;
    visibility: visible;
}

.aside_bar.aside_mobile {
    padding: 0;
}

.aside_bar .logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.aside_bar .logo img {
    max-width: 180px;
}

.aside_bar.aside_mobile ul .menu-item a {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    color: var(--thm-color-one);
    font-weight: 800;
    border-bottom: 2px solid var(--thm-border);
    text-transform: uppercase;
    font-size: 14px;
}

.aside_bar.aside_mobile .menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu,
.aside_bar.aside_mobile .menu-item-has-children>.sub-menu {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    box-shadow: none;
    left: 0;
}

.aside_bar.aside_mobile .menu-item-has-children>.sub-menu>li.menu-item-has-children>a:after {
    position: relative;
    transform: none;
    right: 0;
}

.aside_bar .sidebar .sidebar_widget {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/*banner*/
.banner {
    background-color: var(--thm-white);
    height: 950px;
    width: 100%;
    position: relative;
}

.banner .element_1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.banner .element_line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}

.banner .image_box .circle_element {
    width: 100%;
    display: flex;
    max-width: 483px;
    min-height: 483px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 0px;
    z-index: -1;
    left: -18px;
    right: 0;
    box-shadow: 50px 5px 60px 130px rgb(var(--thm-color-three-rgb), 15%);
}

.banner .image_box .circle_element1 {
	width: 100%;
    display: flex;
    max-width: 549px;
    min-height: 549px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 18px;
    z-index: -1;
    left: -143px;
    right: 0;
    box-shadow: 50px 5px 60px 130px rgb(var(--thm-color-three-rgb), 15%);
	}
	

.banner .text_box .title span {
    font-weight: 100;
}

.banner .text_box p {
    font-size: 18px;
    font-weight: 600;
}

.banner .bottom-line {
    border-bottom: 2px solid var(--thm-border);
    position: absolute;
    bottom: -47px;
    left: 15px;
    width: calc(100% - 30px);
    right: 0;
    z-index: -1;
}

/*style 2*/
.header+.single_banner {
    margin-top: 130px;
}

.single_banner {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 100%;
    max-width: 100%;
    overflow: visible;
}

.single_banner .element_1 {
    top: 0;
}

.single_banner .element_2 {
    bottom: auto;
    top: 13px;
    left: -78px;
    right: auto;
}

.single_banner .element_3 {
    position: absolute;
    left: -120px;
    bottom: -120px;
    z-index: -1;
}

.single_banner .element_4 {
    z-index: 1;
    position: absolute;
    right: 165px;
    top: -8px;
}

.single_banner .element_5 {
    z-index: 1;
    position: absolute;
    right: -3px;
    bottom: 28px;
}

.single_banner .shape_img {
    margin-top: -100px;
    z-index: -1;
    margin-right: 70px;
    margin-bottom: 180px;
}

.single_banner .banner_text .title {
    margin-top: 0px;
    font-size: 65px;
}

.single_banner .banner_text p {
    font-size: 15px;
    font-weight: 600;
}

.single_banner .shape_img .progress_box {
    position: absolute;
    bottom: 80px;
    left: -80px;
}

/*style 3*/
.bg-banner {
    padding: 206px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-banner:before {
    content: '';
    background-image: linear-gradient(to right, #040c25, transparent);
    opacity: 0.9;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.bg-banner .banner_text .title {
    font-size: 85px;
    font-weight: 600;
}

.input-group {
    padding: 15px;
    border-radius: 8px;
    background-color: var(--thm-white);
    margin-bottom: 40px;
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    align-items: center;
}


.bg-banner .input-group .input-group-preappend {
    padding-left: 25px;
    font-size: 18px;
}

.form-control {
    padding: 12px 15px;
    height: auto;
    border: none;
    padding-right: 0;
    background-color: transparent;
}

.bg-banner .input-group .form-control,
.bg-banner .input-group .form-control::placeholder {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-color-one);
}

.bg-banner .input-group .form-control:focus {
    box-shadow: none;
}

.bg-banner .form-check-inline {
    margin-right: 20px;
}

.bg-banner .form-check-inline .form-check-label {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--thm-font);
    color: var(--thm-white);
}

.bg-banner .form-check-inline .form-check-input {
    margin-right: 10px;
}

.bg-banner .element_1 {
    position: absolute;
    z-index: -1;
    top: -50px;
    left: -160px;
}

.bg-banner .element_2 {
    position: absolute;
    z-index: -1;
    bottom: -140px;
    left: -140px;
}

.bg-banner .element_3 {
    position: absolute;
    z-index: -1;
    top: -120px;
    right: 15%;
}

.bg-banner .element_4 {
    position: absolute;
    z-index: -1;
    bottom: -140px;
    right: 25%;
}



/*Features*/
.features_box {
    padding: 40px;
    margin-bottom: 30px;
    transition: 0.3s all;
    background-color: var(--thm-white);
    min-height: 400px;
}

.features_box .icon {
    margin-bottom: 30px;
}

.features_box p,
.features_box h5 {
    margin-bottom: 10px;
}

.features_box a {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}

.features_box a span {
    transition: 0.3s all;
    margin-right: 7px;
    font-size: 0;
}

.features_box a i {
    font-weight: 500;
    font-size: 13px;
}

.features_box:hover {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
}

.features_box:hover a span {
    font-size: 14px;
}

/*style 2*/
.features_box.style_2 {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
}

/*style 3*/
.features_box.style_3 {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    position: relative;
    padding: 50px 40px;
}

.features_box.style_3:before {
    content: '';
    transition: 0.3s all;
    height: 5px;
    width: 0;
    background-color: #b9ee2b;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
}

.features_box.style_3:hover:before {
    width: 100%;
    left: 0;
    right: 0;
}

/*about*/
.about .section-title {
    max-width: 1920px;
}

.about .image_box {
    height: 100%;
    border-radius: 50%;
    position: relative;
    margin-bottom: 80px;
}

.about .image_box .image_1 {
    width: 90%;
    height: 90%;
    box-shadow: 0px 5px 90px 185px rgb(var(--thm-color-three-rgb), 5%);
}

.about .image_box .image_2 {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 215px;
    width: 215px;
}

.about_list li {
    display: flex;
    margin-bottom: 30px;
    max-width: 80%;
}

.about_list.row li {
    max-width: 100%;
}

.about_list li .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
}

.about_list li .icon img {
    object-fit: contain;
}

.about_list li .text {
    width: calc(100% - 90px);
}

/*style 2*/
.about_bg {
    background-color: rgba(var(--thm-color-two-rgb), 7%);
}

.about.style_2 .image_boxes .big_img {
    position: absolute;
    left: 70px;
    top: 13px;
    z-index: -1;
    width: 100%;
}
.about.style_2 .image_boxes .big_img3 {
    position: absolute;
    left: -3px;
    top: -33px;
    z-index: -1;
    width: 100%;
}

.about.style_2 .image_boxes .element_1 {
    position: absolute;
    z-index: -2;
    bottom: 4px;
    left: 35px;
    transform: rotate(-10deg);
}

.about.style_2 .image_boxes .element_2 {
    position: absolute;
    z-index: -2;
    right: -113px;
    top: -27px;
}

.about.style_2 .image_boxes .element_3 {
    position: absolute;
    z-index: -2;
    bottom: -50px;
    right: -70px;
}

.about_list.style_2 li {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 11px;
    position: relative;
    line-height: 2;
    max-width: 100%;
}

.about_list.style_2 li:before {
    content: '';
    width: 26px;
    height: 26px;
    background-color: var(--thm-white);
    border-radius: 50%;
    top: 2px;
    position: relative;
    margin-right: 15px;
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-three-rgb), 40%);
}

.about_list.style_2 li:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #c9ee46;
    border-radius: 50%;
    top: 10px;
    position: absolute;
    left: 8px;
    right: 0;
}

.about_inner .image_box {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-right: 90px;
}

/*Team*/
.team_block {
    padding: 40px 30px;
    background-color: var(--thm-white);
    transition: 0.3s all;
    text-align: center;
    margin-bottom: 30px;
}

.team_block .team_img {
    position: relative;
    margin: 0 auto 30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.team_block .team_img img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
}

.team_block .team_img .link {
    width: 36px;
    height: 36px;
    position: absolute;
    right: 15px;
    bottom: 0;
}

.team_block:hover {
    background-color: var(--thm-color-three);
    box-shadow: 0px 1px 30px 1px #aae2d4;
}

.team_block:hover .team_img .link {
    background-color: var(--thm-white);
    color: var(--thm-color-three);
}

.team_block:hover h6 a,
.team_block:hover p {
    color: var(--thm-white);
}

/*styl2*/
.team_block.style_2 {
    background-color: rgba(var(--thm-color-two-rgb), 7%);
    border-radius: 10px;
}

.team_block.style_2:hover {
    background-color: #c9ee46;
}

/*style 3*/
.team_block.add_team {
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team_block.style_3 {
    background-color: var(--thm-white);
}

.team_block.style_3:hover {
    background-image: url(../images/elements/element_33.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*Cta*/
.cta_box .cta_box_inner {
    padding: 0 50px 0 50px;
    position: relative;
}

.cta_box .text_block {
    padding: 50px 0;
}

.cta_box .section-title {
    max-width: 100%;
    padding-bottom: 0;
}

.cta_box .cta_box_inner .shape_1 {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: -1;
}

.cta_box .cta_box_inner .shape_2 {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: -1;
}

.cta_box .cta_box_inner .arrows {
    z-index: -1;
    position: absolute;
    top: 123px;
    left: -94px;
}

.cta_box .arrows.to_up {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
}

.cta_box.style_2 .cta_box_inner {
    border-radius: 16px;
}

.team_main_wrap.pb-extra {
    padding-bottom: 102px;
}

.cta_box .cta_box_inner.mt-negative {
    margin-top: -200px;
    border-radius: 20px;
}

.cta_box .cta_box_inner.mb-negative {
    margin-bottom: -190px;
}

/*filter btns*/
.filter-btns ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btns ul li {
    margin-right: 15px;
    margin-bottom: 15px;
}

.filter-btns ul li:last-child {
    margin-right: 0;
}

.filter-btns ul li a {
    border-radius: 50px;
    padding: 2px 11px;
    font-weight: bold;
    color: var(--thm-color-one);
    background-color: var(--thm-white);
    text-transform: uppercase;
}

.filter-btns ul li:hover a,
.filter-btns ul li.active a {
    color: var(--thm-white);
    background-color: var(--thm-color-three);
    box-shadow: none;
}

/*Video box*/
.tag_badge {
    font-weight: 800;
    color: var(--thm-white);
    border-radius: 50px;
    display: inline-flex;
    padding: 6px 13px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.tag_badge+.tag_badge {
    margin-left: 10px;
}

/*style 2*/
.tag_badge.style_2 {
    color: #000000;
    text-transform: uppercase;
    padding: 9px 21px;
    box-shadow: 0px 1px 30px 1px #fdc4eb73;
    margin-bottom: 30px;
    line-height: 26px;
    /* margin-top: 67px; */
}

.tag_badge.style_3 {
    border-radius: 8px;
}

.video_box {
    position: relative;
    z-index: 1;
    height: calc(100% - 30px);
    min-height: 320px;
    margin-bottom: 22px;
}

.coach_block .coach_badges,
.video_box .video_badges {
    position: absolute;
    top: 20px;
    right: 20px;
}

.video_box:before {
    content: '';
    background-image: linear-gradient(to top, var(--thm-color-five), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video_box .video_btn {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    border: 2px solid var(--thm-white);
    background-color: transparent;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
}

.video_box .video_text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 1;
}

/*testimonials*/
.testimonial_item {
    padding: 40px;
    background-color: white;
    transition: 0.3s all;
    margin-bottom: 30px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0px 1px 30px 1px #d1e2e9c9;
}

.testimonial_item.normal {
    margin-bottom: 30px;
    margin-top: 0;
}

.testimonial_item .author {
    display: flex;
    align-items: center;
}

.testimonial_item .author .image {
    width: 67px;
    height: 67px;
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 20px;
}

.testimonial_item .author .image img {
    border-radius: 50%;
    width: 90%;
    height: 93%;
}

.testimonial_item .author .text {
    margin-bottom: 20px;
}

.testimonial_item .author .text h6 {
    line-height: normal;
}

.testimonial_item .comment {
    margin-top: 12px;
    margin-bottom: 20px;
}

.ratings {
    display: flex;
}

.ratings i {
    font-size: 14px;
    color: var(--thm-color-four);
}

.ratings i+i {
    margin-left: 5px;
}

.ratings i.active {
    font-weight: bold;
}

.testimonial_item.normal:hover,
.testimonial_slider .slick-current .testimonial_item {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    background-color: var(--thm-white);
    border-color: transparent;

}

.testimonial_slider .slick-dots {
    position: absolute;
    right: 15px;
    top: -60px;
}

.circle_wave {
    box-shadow: -3px 5px 90px 185px rgb(var(--thm-color-two-rgb), 5%);
    max-width: 30%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: rgb(var(--thm-color-two-rgb), 5%);
    z-index: -1;
    border-radius: 50%;
}

.testimonial_slider.style_2 .slick-arrow {
    background-color: var(--thm-white);
    top: -90px;
    transform: none;
}

.testimonial_slider.style_2 .slick-arrow.slick-prev {
    right: 65px;
    left: auto;
}

.testimonial_slider.style_2 .slick-arrow:hover {
    background-color: var(--thm-color-two);
}

.testimonial_slider.style_2 .slick-dots {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 50px;
}

.testimonial_slider.style_2 .slick-dots li button {
    background-color: transparent;
}

.testimonial_slider.style_2 .slick-dots li.slick-active button {
    background-color: var(--thm-color-three);
}

.testimonial_item.style_dark {
    border: none;
    border-radius: 8px;
    background-color: #253051;
}

.testimonial_item.style_dark .author .text h6 {
    color: var(--thm-white);
}

.testimonial_item.style_dark .comment {
    color: #a5b8d3;
}

.testimonial_slider .slick-current .testimonial_item.style_dark {
    box-shadow: none;
}

.testimonial_slider .slick-current .testimonial_item.style_dark .author .text h6 {
    color: var(--thm-color-one);
}

.testimonial_slider .slick-current .testimonial_item.style_dark .comment {
    color: var(--thm-body-color);
}

.testimonial_item.style_4 {
    border-radius: 8px;
    border: none;
    background-color: var(--thm-white);
}

/*style 2*/
.testi_bg {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
}

.testimonial_item.style_2 {
    padding: 19px;
    border: none;
    margin: 0;
    line-height: 2;
    margin-top: 10px;
}

.testimonial_item.style_2 .author,
.testimonial_item.style_2 .comment {
    position: relative;
    padding-left: 10px;
    font-size: 13px;
}

.testimonial_item.style_2 .comment:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Pro";
    font-size: 40px;
    font-weight: 100;
    color: var(--thm-color-three);
    position: absolute;
    left: 54px;
    line-height: 1;
    top: -44px;
    font-size: 170px;
    position: absolute;
    bottom: -27px;
    right: -15px;
    -webkit-transform: rotate(-9deg);
    transform: rotate(-9deg);
    color: var(--theme-color);
    opacity: 0.05;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.testimonial_item.style_2 .author .image {
    width: 90px;
    height: 90px;
}

.testimonial_item.style_2 .author .image img {
    width: 100%;
    height: 100%;
}

.testimonial_item.style_2 .author .text h6 {
    font-size: 18px;
}

.testimonial_slider_single .slick-dots {
    justify-content: center;
    margin-top: 34px;
}

/*style 3*/
.testimonial_item.style_3 {
    padding: 0 15px;
    border: none;
    margin: 0 auto;
}

.testimonial_item.style_3 .comment {
    font-size: 20px;
    font-weight: 500;
}

.testimonial_item_img {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: 0.3s all;
    margin: 10px;
}

.testimonial_item_img img {
    cursor: pointer;
}

.testimonial_slider_nav .slick-current .testimonial_item_img {
    transform: scale(1.15);
    border: 7px solid var(--thm-color-two);
}

.testimonial_slider_nav .slick-list {
    max-width: 250px;
}

.testimonial_slider_nav .slick-dots {
    justify-content: flex-start;
    margin-top: 60px;
}

/*Coach grid*/
.coach_block {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    margin-bottom: 30px;
}

.coach_block .coach_img {
   
    z-index: 1;
    position: relative;
}

.coach_block .coach_img .link {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 30px;
    bottom: -20px;
}

.coach_block .coach_caption {
    padding: 20px;
    background-color: var(--thm-white);
}

.coach_block .coach_caption .coach_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.coach_block .coach_caption .coach_meta .coach_cat {
    padding: 7px 20px;
    line-height: 1;
    margin-bottom: 20px;
    margin-right: 15px;
    width: 26%;
}

.coach_block .coach_caption .coach_meta .ratings {
    margin-bottom: 20px;
}

.coach_block .coach_caption .author {
    display: flex;
    align-items: center;
}

.coach_block .coach_caption .author img {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 15px;
}

.coach_block .coach_caption .author a {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--thm-font);
}

.coach_block:hover .coach_img .link {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
}

/*sponsors*/
.sponsors_img {
    max-width: 200px;
    margin: 0 auto 30px;
}

.sponsors_img img {
    opacity: 20%;
    filter: grayscale(1);
    transition: 0.3s all;
}

.sponsors_img:hover img {
    opacity: 100%;
    filter: none;
}

/*Newsletter*/
.newsletter_form .input-group {
    padding: 15px;
    background-color: var(--thm-white);
    border-radius: 50px;
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    align-items: center;
    margin-bottom: 30px;
}

.newsletter_form .input-group .form-control {
    padding: 5px 30px;
    height: 50px;
    border-radius: 0;
    border: none;
}

.newsletter_form .input-group .form-control,
.newsletter_form .input-group .form-control::placeholder {
    font-size: 18px;
    font-weight: 500;
    color: var(--thm-color-one);
    font-family: var(--thm-b-font);
}

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

.newsletter_form .custom-checkbox {
    justify-content: center;
}

.newsletter_form_sec .arrows {
    position: absolute;
    z-index: -1;
}

.newsletter_form_sec .arrows.to_up {
    right: -120px;
    bottom: 0;
}

.newsletter_form_sec .arrows.to_right {
    left: -130px;
    top: 0;
}

.newsletter_form_sec .arrows.to_right .arrow {
    border-left-color: var(--thm-color-two);
}

/*why-us-list*/
.why-us-list li {
    box-shadow: 0px 1px 30px 1px #aae2d43d;
    background-color: var(--thm-white);
    padding: 20px;
    border-left: 5px solid transparent;
    transition: 0.3s all;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
    border-radius: 8px;
}



.why-us-list li .icon {
    width: 23px;
    height: 23px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: #c9ee46;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* top: 8px; */
}

.why-us-list li .text {
    /* width: calc(100% - 40px); */
}

.text-tr-un {
   color: var(--thm-color-two);
}

.why_us_box .circle_element {
    width: 100%;
    display: flex;
    max-width: 550px;
    min-height: 550px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 5px;
    z-index: -1;
    left: 220px;
    right: 0;
    box-shadow: 50px 5px 60px 130px rgb(var(--thm-color-three-rgb), 15%);
}

.bg-one{
	    width: 55px;
	    height: 55px;
	    border-radius: 100px;
	    background-color: #edf3ff;
	    border: 2px solid #fff;
	    margin-left: -13px;
}

.image_li{
	    width: 49px !important;
	    z-index: 1 !important;
	    top: 22% !important;
	    left: 8.5% !important;
}

.image_li1{
	    width: 49px !important;
	    z-index: 1 !important;
	    top: 25% !important;
	    left: 1.7% !important;
}

.image_l2{
	    width: 49px !important;
	    z-index: 1 !important;
	    top: 24% !important;
	    left: 14.8% !important;
}

.image_l4{
	    width: 38px !important;
    z-index: 1 !important;
    top: 29% !important;
    left: 22.6% !important;
}



.image_l3{
	    width: 49px !important;
	    z-index: 1 !important;
	    top: 26% !important;
	    left: 2.3% !important;
}

.why_us_box .element_1 {
    position: absolute;
    right: 40px;
    bottom: -40px;
    z-index: -1;
}

.why_us_box .element_2 {
    position: absolute;
    right: 0;
    top: 100px;
    z-index: -1;
}

.why_us_box .element_3 {
    position: absolute;
    left: 200px;
    top: 150px;
    z-index: -1;
}

/*style 2*/
.why-us-list.style_2 li {
    padding-left: 22px;
    padding-right: 50px;
    max-width: 642px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}

.why-us-list.style_2 li img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
    width: 0%;
    transition: 0.5s all;
}



.why-us-list.style_2 li .icon {
    margin-right: 25px;
}

.why-us-list.style_2 li .text {
    /* width: calc(100% - 50px); */
}

.why-us-list.style_2 li:first-child {
}

.why-us-list.style_2 li:nth-child(2) {
    margin-left: 150px;
}

.why-us-list.style_2 li:nth-child(4) {
    margin-left: 100px;
}

.why-us-list.style_2 li:hover img,
.why-us-list.style_2 li:hover:before {
    width: 100%;
}



/*style 3*/
.why-us-list.style_2.style_3 li {
    border-radius: 16px;
}

/*plane_box*/
.plane_box {
    text-align: center;
    padding: 80px 0 50px;
}

.plane_box h2 {
    font-size: 42px;
    font-weight: 500;
}

.plane_box .element_1 {
    position: absolute;
    left: -40px;
    top: -40px;
    z-index: -1;
}

.plane_box .element_2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

/*Footer*/
.footer .footer_top {
    border-bottom: 2px solid var(--thm-border);
}

.footer .ft_widget {
    margin-bottom: 30px;
}

.footer .ft_about .logo {
    max-width: 190px;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
}

.footer .ft_menu ul li,
.footer .ft_about .info li {
    margin-bottom: 15px;
}

.footer .ft_menu ul li:last-child,
.footer .ft_about .info li:last-child {
    margin-bottom: 0;
}

.footer .ft_menu ul li a,
.footer .ft_about .social li a,
.footer .ft_about .info li a {
    color: var(--thm-body-color);
}

.footer .ft_menu ul li:hover a,
.footer .ft_about .social li:hover a,
.footer .ft_about .info li:hover a {
    color: var(--thm-color-two);
}

.footer .ft_about .social {
    display: flex;
    margin-top: 20px;
}

.footer .ft_about .social li+li {
    margin-left: 20px;
}

.footer .ft_menu ul li:hover a {
    text-decoration: underline;
}

.footer .ft_apps .app_img {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer .ft_apps .app_img:last-child {
    margin-right: 0;
}

.footer .footer_bottom {
    padding: 40px 0;
    text-align: center;
}

.footer .ft_newsletter input {
    border: none;
    background-color: var(--thm-white);
    border-radius: 50px;
    padding: 15px 30px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0px 5px 10px 0px rgb(var(--thm-color-two-rgb), 5%);
}

.footer .ft_newsletter input,
.footer .ft_newsletter input::placeholder {
    font-size: 15px;
    font-weight: bold;
    color: var(--thm-color-one);
}

/*style 2*/
.footer.style_2 {
    background-repeat: no-repeat;
    background-size: contain;
}

.footer.style_2 .element_3 {
    position: absolute;
    right: -80px;
    top: 120px;
    z-index: -1;
}

.footer.style_2 .arrows {
    position: absolute;
    right: -200px;
    bottom: 150px;
    z-index: -1;
}

.footer.style_2 .arrows.to_up .arrow {
    border-bottom-color: #ffffff;
}

/*style 3*/
.cta_box.style_2+.footer {
    padding-top: 190px;
}

.footer.style_3 {
    background-position: bottom left;
}

.footer.style_3 .ft_widget .ft-title {
    color: var(--thm-white);
}

.footer.style_3 .ft_newsletter input {
    border-radius: 8px;
}

.footer.style_3 .ft_newsletter .thm-btn:hover {
    background-color: var(--thm-color-two);
}

.footer.style_3 .footer_bottom p,
.footer.style_3 .ft_newsletter p,
.footer.style_3 .ft_menu ul li a,
.footer.style_3 .ft_about .social li a,
.footer.style_3 .ft_about .info li a {
    color: var(--thm-color-light);
}

.footer.style_3 .footer_bottom p a,
.footer.style_3 .ft_menu ul li:hover a,
.footer.style_3 .ft_about .social li:hover a,
.footer.style_3 .ft_about .info li:hover a {
    color: var(--thm-color-three);
}

.footer.style_3 .footer_top {
    border-bottom: none;
}

.footer.style_3 .arrows {
    left: -200px;
    right: auto;
}

/*back to top*/
.back-to-top {
    width: 60px;
    height: 60px;
    border: 2px solid var(--thm-color-two);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--thm-white);
    font-size: 22px;
    position: fixed;
    bottom: 96px;
    left: 100px;
    background-color: var(--thm-color-two);
    transition: 0.3s all;
    z-index: 100;
}

.back-to-top:hover {
    color: var(--thm-white);
}

/*COunter*/
.counter_box {
    /* box-shadow: 0px 1px 30px 1px #ecf2ff; */
    
    display: flex;
    align-items: center;
    background-color: var(--thm-white);
    padding: 28px 6px 0px 6px;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    justify-content: center;
    border-radius: 8px;
    min-height: 152px;
    margin-bottom: 30px;
}

.counter_box .icon {
    width: 65px;
    margin-right: 25px;
}

.counter_box .icon img {
    object-fit: contain;
}

.counter_box .text .counter>b {
    font-size: 48px;
    line-height: 1;
}

.counter_box .text .counter>b:after {
    display: none;
}

.counter_box .text p {
    font-weight: 600;
}

/*quote_sec*/
.quote_sec {
    max-width: 706px;
    margin: 0 auto;
    padding: 40px 0;
}

.video_quote .arrows {
    position: absolute;
    z-index: 1;
    top: 0;
    left: -65px;
}

.video_quote .arrows .arrow {
    border-left-color: #ffffff;
}

.video_quote .element_4 {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.quote_sec .element_5 {
    position: absolute;
    z-index: -1;
    top: -10px;
    right: -80px;
}

/*progress box*/
.progress_box {
    background-color: var(--thm-white);
    width: fit-content;
    padding: 25px 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 15px 1px #0000000d;
}

.progress_box .circle_bar {
    margin-right: 20px;
    position: relative;
    display: flex;
}

.progress_box .circle_bar .counter>b {
    font-size: 22px;
    font-family: var(--thm-font);
    font-weight: 800;
    line-height: 1;
}

.counter>b:after {
    content: '%';
    font-size: 15px;
}

.progress_box .text h5 {
    font-size: 22px;
    line-height: normal;
}

/*grid*/
.progress_box.grid {
    display: block;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
}

.progress_box.grid .circle_bar {
    margin-right: 0;
    margin-bottom: 20px;
    justify-content: center;
}

/*style 2*/
.multi_progress_bar {
    padding: 25px 40px 0px;
    box-shadow: 0px 0px 15px 1px #0000000d;
    background-color: var(--thm-white);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: fit-content;
}

.multi_progress_bar .progress_box {
    box-shadow: none;
    padding: 0;
    margin-right: 60px;
    margin-bottom: 30px;
}

.multi_progress_bar .progress_box:last-child {
    margin-right: 0;
}

/*Accordion*/
.accordion-style>.card>.card-header {
    margin-bottom: 0;
}

.accordion-style>.card {
    border: none;
    border-radius: 0;
    background-color: transparent;
    margin-bottom: 20px;
}

.accordion-style>.card>.card-header {
    border: none;
    background-color: transparent;
    padding: 0;
}

.accordion-style>.card>.card-header>.btn-link {
    width: 100%;
    text-align: left;
    background-color: transparent;
    font-family: var(--thm-font);
    color: var(--thm-color-one);
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 40px;
    padding-right: 70px;
    border-radius: 50px;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0px 5px 10px 0px rgb(var(--thm-color-two-rgb), 5%);
}

.accordion-style>.card>.card-header>.btn-link1 {
    width: 100%;
    text-align: left;
    background-color: transparent;
    font-family: var(--thm-font);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px 14px 17px;
    padding-right: 89px;
    border-radius: 50px;
    position: relative;
   
}

.accordion-style>.card>.card-header>.btn-link:hover,
.accordion-style>.card>.card-header>.btn-link:focus {
    outline: none;
    text-decoration: none;
}

.accordion-style>.card>.card-header>.btn-link1:hover,
.accordion-style>.card>.card-header>.btn-link1:focus {
    outline: none;
    text-decoration: none;
}

.card_new {
     background-color: #1b2336 !important;
    color: #fff;
    margin-left: 30px;
    line-height: 37px;
}

.card_new a {
    color: #fff;
  
}

.accordion-style>.card>.card-header>.btn-link:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: var(--thm-white);
    transition: 0.3s all;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgb(var(--thm-color-two-rgb));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-style>.card>.card-header>.btn-link1:after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    color: #fff;
    transition: 0.3s all;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-style>.card .card-body {
    background-color: var(--thm-white);
    padding: 20px 40px;
    border-radius: 10px;
}

.accordion-style>.card>.card-header>.btn-link.collapsed {
    box-shadow: none;
    border-color: #e9e9f4;
}

.accordion-style>.card>.card-header>.btn-link.collapsed:after {
    background-color: rgb(var(--thm-color-two-rgb), 10%);
    color: var(--thm-color-two);
}

.accordion-style>.card:last-child,
.accordion-style>.card>.card-header>.btn-link.collapsed {
    margin-bottom: 0;
}

/*style 2*/
.accordion-style.style_2>.card>.card-header>.btn-link {
    border-radius: 8px;
    padding: 15px 105px;
}

.accordion-style.style_2>.card>.card-header>.btn-link:after {
    color: var(--thm-color-two);
    right: 30px;
    width: auto;
    height: auto;
    background-color: transparent;
    transform: translateY(-50%)rotate(90deg);
}

.accordion-style.style_2>.card>.card-header>.btn-link.collapsed:after {
    background-color: transparent;
    transform: translateY(-50%)rotate(0deg);
}

.accordion-style.style_2>.card .card-body {
    padding: 0 30px;
}

/*Blog*/
.post {
    padding: 22px;
    background-color: var(--thm-white);
    box-shadow: 0px 5px 10px 0px rgb(var(--thm-color-two-rgb), 5%);
    margin-bottom: 30px;
}

.post .post_img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 228px;
}

.post .post_caption {
    padding: 0 0px;
}

.post .post_caption .post_meta {
    display: flex;
    flex-wrap: wrap;
}

.post .post_caption .post_meta li {
    margin-right: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}

.post .post_caption .post_meta li:last-child {
    margin-right: 0;
}

.post .post_caption .post_meta li i {
    margin-right: 5px;
}

.post .post_caption .post_title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 30px;
    min-height: 60px;
}

.post .post_caption .post_text {
    margin-bottom: 20px;
}

/*style2*/
.post.style_2 {
    padding: 0;
    box-shadow: none;
    transition: 0.3s all;
    border-radius: 8px;
    position: relative;
}

.post.style_2 .post_img {
    border-radius: 0;
    height: 100%;
    margin-bottom: -2px;
}

.post.style_2 .post_caption {
    padding: 30px;
    border: 2px solid var(--thm-border);
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: none;
}

.post.style_2 .thm-btn {
    background-color: rgb(var(--thm-color-two-rgb), 7%);
}

.post.style_2 .thm-btn:focus,
.post.style_2 .thm-btn:hover {
    background-color: var(--thm-color-two);
}

.post.style_2.no-thumb .post_caption {
    border-color: transparent;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
}

.post.style_2.no-thumb .post_caption .thm-btn {
    background-color: var(--thm-white);
}

.post.style_2.no-thumb:hover .post_caption .thm-btn {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

.post.style_2.post_video .post_img:before {
    content: '';
    background-color: rgb(var(--thm-color-one-rgb), 55%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.post.style_2.post_audio .embed-responsive {
    height: 135px;
}

.post.style_2:hover {
    background-color: var(--thm-white);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
}

.post.style_2.no-thumb:hover .post_caption,
.post.style_2:hover .post_caption {
    border-color: transparent;
    background-color: var(--thm-white);
}

/*list style*/
.post.post_list .post_img {
    height: 500px;
    border-radius: 8px;
}

.post.post_list .post_caption {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    border: none;
}

.post.post_list .post_caption .post_title {
    font-size: 30px;
}

.post.post_list .post_caption .post_meta li {
    font-weight: 600;
}

.post.post_list.style_2.post_video .post_img:before {
    background-color: rgb(var(--thm-color-one-rgb), 30%);
}

.post.post_list.with_bg .post_caption,
.post.post_list.no-thumb .post_caption {
    padding: 32px 40px 30px;
}

.post.post_list.no-thumb:hover {
    box-shadow: 0px 1px 30px 1px #ecf2ff;
}

.post.post_list.with_bg {
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.post.post_list.with_bg:hover .post_caption,
.post.post_list.with_bg:hover {
    background-color: transparent;
}

.post.post_list.with_bg:before {
    content: '';
    background-color: rgb(var(--thm-color-one-rgb), 90%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}

.post.post_list.with_bg .post_caption .post_title a,
.post.post_list.with_bg .post_caption .post_meta li {
    color: var(--thm-white);
}

.post.post_list.with_bg .thm-btn {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
}

.post.post_list:hover {
    box-shadow: none;
}

/*subheader*/
.subheader {
    padding: 180px 0 130px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 130px;
}

.subheader:before {
    content: '';
    background-image: rgba(var(--thm-color-two-rgb), 7%);
    opacity: 0.9;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: -1;
}

.subheader .page_title {
    font-size: 85px;
    font-weight: 600;
    color: var(--thm-white);
    line-height: 1;
}

.subheader .page_breadcrumb {
    margin-bottom: 50px;
}

.subheader .page_breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    border-radius: 0;
}

.subheader .page_breadcrumb .breadcrumb .breadcrumb-item.active,
.subheader .page_breadcrumb .breadcrumb .breadcrumb-item a {
    font-size: 20px;
    font-weight: 600;
    color: var(--thm-white);
    font-family: var(--thm-font);
}

.subheader .page_breadcrumb .breadcrumb .breadcrumb-item:hover a {
    color: var(--thm-color-two);
}

.subheader .breadcrumb-item+.breadcrumb-item {
    padding-left: 15px;
}

.subheader .breadcrumb-item+.breadcrumb-item::before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    color: var(--thm-white);
    font-weight: 500;
    font-size: 16px;
    padding-right: 15px;
    float: none;
    ;
}

.subheader .element_1 {
    position: absolute;
    z-index: -1;

    top: -80px;
    left: -160px;

}

.subheader .element_2 {
    position: absolute;
    z-index: -1;
    bottom: -40px;
    left: -80px;
}

.subheader .element_3 {
    position: absolute;
    z-index: -1;
    bottom: -40px;
    right: 20%;
}

.subheader .element_4 {
    position: absolute;
    z-index: -1;
    top: -120px;
    right: 10%;
}

/*Skills*/
.skills-sec {
    height: 900px;
}

.skills-sec .section-bg {
    background-size: contain;
    background-position: left center;
}

.skills-sec .container-fluid .row>div:first-child {
    max-width: 45%;
    flex: 0 0 45%;
}

.skills-sec .container-fluid .row>div:last-child {
    max-width: 55%;
    flex: 0 0 55%;
}

/*Tabs*/
.nav-tabs.style_1 .nav-item {
    margin-right: 15px;
    margin-bottom: 15px;
}

.nav-tabs.style_1 .nav-item:last-child {
    margin-right: 0;
}

.nav-tabs.style_1 .nav-item:hover .nav-link,
.nav-tabs.style_1 .nav-item .nav-link.active {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-three-rgb), 50%);
    background-color: #c9ee46;
    color: #000;
}

/*style 2*/
.nav-tabs.style_2 {
    border-bottom: 3px solid var(--thm-border);
    margin-bottom: 30px;
}

.lh70 {
    line-height: 70px;
}

.nav-tabs.style_2 .nav-item {
    margin-right: 40px;
}

.nav-tabs.style_2 .nav-item:last-child {
    margin-right: 0;
}

.nav-tabs.style_2 .nav-item .nav-link {
    border: none;
    border-radius: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--thm-font);
    padding: 15px 0px;
    border-bottom: 3px solid var(--thm-border);
    margin-bottom: -3px;
    color: var(--thm-color-one);
}

.nav-tabs.style_2 .nav-item:hover .nav-link,
.nav-tabs.style_2 .nav-item .nav-link.active {
    color: var(--thm-color-two);
    border-color: var(--thm-color-two);
}

/*style 3*/
.nav-tabs.style_3 {
    border-bottom: 0;
    margin-bottom: 15px;
}

.nav-tabs.style_3 .nav-item {
    margin-right: 15px;
    margin-bottom: 15px;
}

.nav-tabs.style_3 .nav-item:last-child {
    margin-right: 0;
}

.nav-tabs.style_3 .nav-item .nav-link {
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 21px;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    color: var(--thm-color-one);
}

.nav-tabs.style_3 .nav-item:hover .nav-link,
.nav-tabs.style_3 .nav-item .nav-link.active {
    background-color: rgb(var(--thm-color-two-rgb), 100%);
    color: var(--thm-white);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
}

/*style 4*/
.nav-tabs.style_4 {
    border-bottom: 3px solid var(--thm-border);
    margin-bottom: 30px;
}

.nav-tabs.style_4 .nav-item {
    margin-right: 20px;
}

.nav-tabs.style_4 .nav-item .nav-link {
    border: none;
    border-radius: 0;
    font-size: 22px;
    font-weight: 600;
    font-family: var(--thm-font);
    padding: 15px 0px;
    border-bottom: 3px solid var(--thm-border);
    margin-bottom: -3px;
    color: var(--thm-color-one);
    padding-right: 40px;
}

.nav-tabs.style_4 .nav-item:hover .nav-link,
.nav-tabs.style_4 .nav-item .nav-link.active {
    color: var(--thm-color-one);
    border-color: var(--thm-color-two);
    font-weight: 700;
}

/*Plans*/
.plan_box {
    padding: 40px;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    margin-bottom: 0px;
    position: relative;
}

.plan_box:before {
    content: '';
    background-color: #e2e9f9;
    height: calc(100% - 160px);
    width: 3px;
    display: block;
    position: absolute;
    right: 0;
}

.no-gutters>.col,
.no-gutters>[class*=col-]:last-child .plan_box:before {
    display: none;
}

.plan_box .plan_title {
    border-bottom: 5px solid #c9ee46;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 23px;
    position: absolute;
    margin-bottom: 68px;
}

.mh150 {
    min-height: 143px;
}

.plan_box .plan_subtext {
    margin-bottom: 20px;
    margin-top: 68px;
}

.plan_box .plan_price {
    font-size: 45px;
}

.plan_box.active {
    background-color: var(--thm-white);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
}

.plan_box.active .thm-btn {
    background-color: var(--thm-color-two);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
    color: var(--thm-white);
}

.video_warp.style_2 {
    border-radius: 16px;
    overflow: hidden;
}
.video_warp.style_3 {
    border-radius: 16px;
    overflow: hidden;
}

.video_warp.style_2:before {
    content: '';
    background-color: rgb(var(--thm-color-one-rgb), 65%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video_warp.style_3:before {
    content: '';
    background-color: rgb(var(--thm-color-one-rgb), 65%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video_box_elements .element_1 {
    position: absolute;
    z-index: -1;
    top: -80px;
    right: -60px;
}

.video_box_elements .element_2 {
    position: absolute;
    z-index: -1;
    left: 0px;
    bottom: -22px;
}

.min_h_350 {
    min-height:350px;
}

.video_box_elements .element_3 {
    position: absolute;
    z-index: -1;
    bottom: -70px;
    right: -60px;
}

.video_box_elements .arrows.one {
    position: absolute;
    z-index: -1;
    top: -120px;
    left: -120px;
}

.video_box_elements .arrows.two {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    right: -80px;
}

.video_box_elements .arrows.two .arrow {
    border-bottom-color: var(--thm-color-two);
}

/*portfolio_box*/
.portfolio_box {
    position: relative;
    box-shadow: 0px 1px 22px 1px #ecf2ffb5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 622px;
}

.portfolio_box .portfolio_img {
    height: 375px;
}

.portfolio_box .portfolio_caption {
    background-color: var(--thm-white);
    padding: 30px 20px 0;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

.portfolio_box .portfolio_caption .text_box {
    /* margin-right: 20px; */
}

.portfolio_box .portfolio_caption .text_box .title {
    font-size: 24px;
    font-weight: 600;
}

.portfolio_box .portfolio_caption .text_box p {
    font-weight: normal;
}

/*type gallery*/
.portfolio_box.type_gallery .portfolio_img {
    height: 400px;
    position: relative;
    z-index: 1;
}

.portfolio_box.type_gallery .portfolio_img:before {
    content: '';
    background-color: var(--thm-color-one);
    opacity: 65%;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    display: flex;
    transition: 0.3s all;
}

.portfolio_box.type_gallery .link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--thm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: var(--thm-white);
    z-index: 1;
    transition: 0.3s all;
}

.portfolio_box.type_gallery:hover .portfolio_img:before {
    width: 100%;
}

.portfolio_box.type_gallery:hover .link {
    left: 50%;
}

.portfolio_box.type_masonry .link {
    width: auto;
    height: auto;
    border: none;
        display: block;
    text-align: center;
}
.portfolio_box.type_masonry .link i{
        font-size: 50px;
    line-height: 1;
    margin-bottom: 20px;
}
.portfolio_box.type_masonry .link .title{
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 0px;
}
.portfolio_box.type_masonry .link p,
.portfolio_box.type_masonry .link .title a{
    color: var(--thm-white);
    margin-bottom: 0;
}
/*About me*/
.about_me .circle_element {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 540px;
    width: 540px;
    border-radius: 50%;
    z-index: -1;
    margin: 0 auto;
    box-shadow: 50px 5px 60px 130px rgb(var(--thm-color-two-rgb), 5%);
}

.about_me .progress_box {
    padding: 25px;
    position: absolute;
    left: -40px;
    top: 100px;
}

.about_me .element_1 {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
}

.about_me .element_2 {
    position: absolute;
    z-index: -1;
    top: 45%;
    transform: translateY(-55%);
}

.features_sec.pb-extra {
    padding-bottom: 398px;
}

.video_box_elements.mt-negative {
    margin-top: -308px;
}

.video_box_elements.mt-negative .video_warp.style_2 {
    height: 616px;
}

.what_we_know .about_me .circle_element {
    left: -100px;
}

/*page_bar*/
.page_bar p {
    font-weight: 500;
}
.page_bar select {
    font-weight: bold;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px 25px;
    text-align: left;
    max-width: 230px;
    width: 100%;
    border-radius: 6px;
    border: 2px solid var(--thm-color-two);
}

.page_bar select+i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    right: 25px;
    pointer-events: none;
}

/*event_block*/
.event_block {
    padding: 20px;
    padding-bottom: 0;
    background-color: var(--thm-white);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.event_block .event_img img {
    border-radius: 12px;
}

.event_block .event_caption {
    padding: 23px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.event_block .event_img .tag_badge {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-four-rgb), 50%);
    position: absolute;
    bottom: -13px;
    right: 20px;
}

.event_block .event_caption .event_text {
    margin-right: 20px;
}

.event_block .event_caption .event_text .event_title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}

.event_block .event_caption .event_text p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.event_block .event_caption .event_btn {
    margin-bottom: 20px;
}

/*service_block*/
.service_block {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block1 {

    margin-bottom: 30px;
    background-color: var(--thm-white);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block .icon {
    margin-bottom: 20px;
    width: 120px;
    margin-right: 30px;
}

.service_block .text {
    margin-bottom: 20px;
    width: calc(100% - 150px);
}

.service_block1 .text {
    margin-bottom: 20px;
   
}

.service_block .text .title {
    font-weight: 600;
    margin-bottom: 10px;
}

.service_block:before {
    counter-increment: count;
    content: "0"counter(count);
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_1 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_1:before {
    counter-increment: count;
    content: "01";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_2 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_2:before {
    counter-increment: count;
    content: "02";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_3 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_3:before {
    counter-increment: count;
    content: "03";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_4 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_4:before {
    counter-increment: count;
    content: "04";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_5 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_5:before {
    counter-increment: count;
    content: "05";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_6 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_6:before {
    counter-increment: count;
    content: "06";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_7 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_7:before {
    counter-increment: count;
    content: "07";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_8 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_8:before {
    counter-increment: count;
    content: "08";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_9 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_9:before {
    counter-increment: count;
    content: "09";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block_new_10 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_10:before {
    counter-increment: count;
    content: "10";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}



.service_block_new_11 {
    padding: 50px 50px 30px;
    margin-bottom: 30px;
    background-color: var(--thm-white);
    border-left: 5px solid #c9ee46;
    display: flex;
    align-items: center;
    border-radius: 8px;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block_new_11:before {
    counter-increment: count;
    content: "11";
    font-size: 150px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: 40%;
    transform: translateY(-60%);
    right: 60px;
    pointer-events: none;
}

.service_block1:before {
    counter-increment: count;
    content: "0"counter(count);
    font-size: 72px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: -1;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    top: -2%;
    transform: translateY(-60%);
    right: 86px;
    pointer-events: none;
}

/*Team Pgae*/
.side_bg {
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto;
}

.feature-masonry>div:nth-child(2) {
    margin-top: 30px;
}

.team_page_bg {
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
}

/*team_details*/
.team_details .team_img {
    border-radius: 16px;
    position: relative;
}

.team_details .team_img>img {
    width: calc(100% - 40px);
    margin-bottom: 40px;
}

.team_details .team_img .video_warp {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}

.team_details .team_img .video_warp:before {
    content: '';
    background-color: rgba(var(--thm-color-one-rgb), 65%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    border-radius: 100px;
}

.team_details .team_text .name {
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 0;
}

.team_details .team_text .desi {
    font-weight: 600;
    margin-bottom: 20px;
}

.team_details .team_text .text {
    max-width: 410px;
}

.team_details .team_text .social li a {
    color: var(--thm-body-color);
}

.team_details .team_text .social li:hover a {
    color: var(--thm-color-three);
}

.team_details .team_text .social {
    display: flex;
}

.team_details .team_text .social li+li {
    margin-left: 20px;
}

.team_details .team_text {
    margin-bottom: 40px;
}

.team_details .team_text .info li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.team_details .team_text .info li .icon {
    width: 56px;
    height: 56px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    color: var(--thm-color-two);
    font-size: 17px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team_details .team_text .info li .text {
    margin-bottom: 20px;
}

.team_details .team_text .info li:last-child .icon,
.team_details .team_text .info li:last-child .text {
    margin-bottom: 0;
}

.skill_box .title {
    font-weight: 600;
}

.skills_sec .image_box .element_1 {
    position: absolute;
    z-index: -1;
    left: -50px;
    top: -40px;
}

.skills_sec .image_box .element_2 {
    position: absolute;
    z-index: -1;
    bottom: -70px;
    right: -70px;
}

.progress_bar_block .progress_block {
    margin-bottom: 30px;
}

.progress_bar_block .progress_block:last-child {
    margin-bottom: 0;
}

.progress_bar_block .progress_block .title {
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
}

.progress_bar_block .progress_block .title b {
    font-weight: bold;
    position: absolute;
}

.progress_bar_block .progress_block .progress {
    align-items: center;
    border: 2px solid;
    border-radius: 25px;
    padding: 7px 8px;
    height: auto;
    background-color: transparent;
    border-color: inherit;
}

.progress_bar_block .progress_block .progress .progress-bar {
    height: 4px;
    border-radius: 4px;
}

.progress_bar_block .progress_block .progress.bg-thm-color-two {
    border-color: rgba(var(--thm-color-two-rgb), 10%);
}

.progress_bar_block .progress_block .progress.bg-thm-color-three {
    border-color: rgba(var(--thm-color-three-rgb), 10%);
}

.progress_bar_block .progress_block .progress.bg-thm-color-four {
    border-color: rgba(var(--thm-color-four-rgb), 10%);
}

.progress_bar_block .progress_block .progress.bg-thm-color-six {
    border-color: rgba(var(--thm-color-six-rgb), 10%);
}

.faqs_elements .element_1 {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -120px;
}

.faqs_elements .element_2 {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: -180px;
}

.faqs_elements .element_3 {
    position: absolute;
    z-index: -1;
    right: -180px;
    bottom: 80px;
}

.faqs_elements .element_4 {
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
}

.faqs_elements .element_5 {
    position: absolute;
    z-index: -1;
    right: -120px;
    top: 40px;
}

/*quote_form_sec*/
.quote_form_sec:before {
    content: '';
    background-color: var(--thm-color-one);
    opacity: 95%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
}

.quote_box {
    margin-bottom: 120px;
}

.quote_form_sec.elements .element_1 {
    position: absolute;
    z-index: -1;
    left: -180px;
    top: 120px;
}

.quote_form_sec.elements .element_2 {
    position: absolute;
    z-index: -1;
    left: -150px;
    bottom: 80px;
}

.quote_form_sec.elements .element_3 {
    position: absolute;
    z-index: -1;
    right: -80px;
    top: 110px;
}

.quote_form_sec.elements .element_4 {
    position: absolute;
    z-index: -1;
    right: -180px;
    bottom: 120px;
}

/*Contact*/
.contact_faq_box {
    margin-bottom: 30px;
    background-color: var(--thm-white);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    padding: 60px;
    align-items: flex-start;
}

.contact_faq_box .icon {
    width: 100px;
    margin-right: 30px;
    position: relative;
    top: 10px;
}

.contact_faq_box .text {
    width: calc(100% - 130px);
}

.contact_faq_box .text h4 {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 28px;
    white-space: nowrap;
}

.contact_faq_box .text p {
    margin-bottom: 20px;
}

.contact_info ul li {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact_info ul li .icon {
    font-size: 36px;
    line-height: 1.5;
    color: var(--thm-color-three);
    width: 50px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 30px;
}

.contact_info ul li .text {
    margin-bottom: 30px;
}

.contact_info ul li .text h6 {
    font-weight: 600;
    margin-bottom: 0;
}

.contact_info ul li .text p,
.contact_info ul li .text p:last-child {
    margin-bottom: 0;
}

.contact_map {
    height: 600px;
    border-radius: 12px;
}

.form_style {
    display: flex;
    border: 3px solid var(--thm-border);
    border-radius: 8px;
    padding: 15px 30px;
    white-space: nowrap;
}

.form_style label {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--thm-font);
    position: relative;
    top: 8px;
}

.form_style .form-control {
    border: none;
    padding: 0;
    border-radius: 0;
    padding-left: 20px;
}

.form_style .form-control,
.form_style .form-control::placeholder {
    font-family: var(--thm-font);
    font-size: 16px;
    font-weight: 400;
}

.form_style textarea.form-control {
    padding-top: 8px;
}

.form_style .form-control::placeholder {
    font-size: 0;
}

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

/*course_details*/
.course_details .desc_box .title {
    font-size: 44px;
    font-weight: 600;
}

.course_details .author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.course_details .author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 15px;
}

.course_details .author a {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--thm-font);
}

.sidebar .sidebar_widget {
    background-color: #f2f6ff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    margin-bottom: 30px;
    background-image: url(../images/bg/sidebar_shape.png);
    background-repeat: no-repeat;
    background-position: right center;
}

.sidebar .sidebar_widget .widget_title {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--thm-border);
}

.sidebar .sidebar_widget:last-child {
    margin-bottom: 0;
}

.sidebar .sidebar_widget hr {
    padding-top: 30px;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid var(--thm-border);
}

.sidebar .sidebar_widget cite {
    font-size: 18px;
    font-family: var(--thm-font);
    font-weight: 600;
    color: var(--thm-color-one);
    display: flex;
}

.sidebar .recent_widgets ul li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.sidebar .recent_widgets ul li:last-child {
    margin-bottom: 0;
}

.sidebar .recent_widgets ul li .image {
    width: 304px;
    height: 225px;
    margin-right: 30px;
}

.sidebar .recent_widgets ul li .text {
    width: calc(100% - 100px);
}

.sidebar .recent_widgets ul li .text h6 {
    font-size: 14px;
}

.sidebar .recent_widgets ul li .text p a {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-body-color);
}

.sidebar .recent_widgets ul li .text p:hover a {
    color: var(--thm-color-two);
}

.sidebar .recent_widgets ul li .text p strong {
    font-weight: 700;
}

.sidebar .info_widgets ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sidebar .info_widgets ul li:last-child {
    margin-bottom: 0;
}

.sidebar .info_widgets ul li .left-side {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.sidebar .info_widgets ul li .left-side i {
    margin-right: 8px;
    color: var(--thm-color-two);
    font-weight: 500;
}

.sidebar .info_widgets ul li .left-side h6 {
    font-size: 18px;
    line-height: normal;
}

.sidebar .info_widgets ul li .right-side {
    font-size: 18px;
}

.sidebar .info_widgets ul li.active .left-side h6 {
    color: var(--thm-color-two);
}

.sidebar .info_widgets ul li.active .right-side {
    color: var(--thm-color-three);
    font-size: 22px;
    font-weight: bold;
}

.post_tags_share .post_tags .tags a,
.sidebar .tags a {
    color: #1b2336;
    font-weight: 600;
    display: inline-flex;
    line-height: normal;
    background-color: #c9ee46;
    border-radius: 25px;
    padding: 11px 12px;
    margin-right: 5px;
    margin-bottom: 19px;
}

.tags1 a {
       color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    line-height: normal;
    background-color: #4b83fb;
    border-radius: 25px;
    padding: 11px 12px;
    margin-right: 5px;
    margin-bottom: 19px;
    font-size: 12px;
}


.tags1 a:hover {
    color: var(--thm-white);
    background-color: #c9ee46;
}

.post_tags_share .post_tags .tags a:hover,
.sidebar .tags a:hover {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
}

.sidebar .category_widgets li {
    margin-bottom: 10px;
}

.sidebar .category_widgets li a {
    font-size: 18px;
    color: var(--thm-body-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar .category_widgets li a:after {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 14px;
    font-weight: 600;
}

.sidebar .category_widgets li:last-child {
    margin-bottom: 0;
}

.sidebar .category_widgets li:hover a {
    color: var(--thm-color-two);
}

.sidebar .search_widget {
    align-items: center;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    padding: 10px;
    border-radius: 8px;
}

.sidebar .search_widget .form-control {
    height: 50px;
    border: none;
    background-color: transparent;
    border-radius: 0;
}

.sidebar .search_widget .form-control,
.sidebar .search_widget .form-control::placeholder {
    color: var(--thm-color-one);
    font-weight: 600;
    font-size: 18px;
    font-family: var(--thm-font);
}

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

/*style 2*/
.sidebar.style_2 .sidebar_widget {
    padding: 0;
    box-shadow: none;
    background: no-repeat;
}

.sidebar.style_2 .sidebar_widget .widget_title {
    font-size: 24px;
    font-weight: bold;
}

.sidebar.style_2 .recent_widgets ul li .image {
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

.sidebar.style_2 .recent_widgets ul li .text h6 {
    font-size: 16px;
}

/*Post details*/
.post_tags_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.post_tags_share h6 {
    margin-bottom: 10px;
    font-size: 18px;
    display: inline-flex;
    flex-wrap: wrap;
    margin-right: 15px;
}

.post_author .social,
.post_tags_share .post_tags .tags,
.post_tags_share .post_share .social {
    display: inline-flex;
    flex-wrap: wrap;
}

.post_author .social li+li,
.post_tags_share .post_share .social li+li {
    margin-left: 15px;
}

.post_author .social li a,
.post_tags_share .post_share .social li a {
    color: var(--thm-color-one);
}

.post_author .social li:hover a,
.post_tags_share .post_share .social li:hover a {
    color: var(--thm-color-two);
}

.post_author {
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    padding: 40px;
    position: relative;
    padding-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.post_author img {
    width: 160px;
    height: 160px;
    margin-right: 40px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.post_author .text {
 
    margin-bottom: 20px;
}

.post_navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.post_navigation li {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 41px;
    max-width: 608px;
}

.post_navigation li .image {
    width: 180px;
    height: 180px;
    margin-right: 20px;
}

.post_navigation li .text {
    /* width: calc(100% - 90px); */
}

.post_navigation li .text h6 {
    font-size: 16px;
}

.post_navigation li .text p strong {
    font-weight: 700
}

.post_navigation li .text p a {
    font-size: 14px;
    font-weight: 600;
    color: var(--thm-body-color);
}

/*comments*/
.comments .comment {
    display: inline-flex;
    flex-wrap: wrap;
}

.comments .comment .comment_img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
    margin-bottom: 30px;
}

.comments .comment .comment_text {
    width: calc(100% - 120px);
    margin-bottom: 30px;
    position: relative;
}

.comments .comment .comment_text h6 {
    font-weight: 600;
}

.comments .comment .comment_text .comment_date {
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.comments .comment .comment_text .comment_link {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--thm-color-one);
    font-size: 18px;
}

.comments .comment .comment_text .comment_link:hover {
    color: var(--thm-color-two);
}

.comments .children {
    padding-left: 70px;
}

.comment_form {
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    padding: 40px;
    border-radius: 8px;
}

.comment_form .form-control-custom.style_2 {
    border-color: var(--thm-white);
    background-color: var(--thm-white);
}

.comment_form .form-control-custom.style_2,
.comment_form .form-control-custom.style_2::placeholder {
    color: var(--thm-color-one);
}
/*portfolio*/
.portfolio_details .detail_img{
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 40px;
}
.dropcap{
    background-color: var(--thm-color-two);
    border-radius: 6px;
    color: var(--thm-white);
    display: inline-flex;
    border: none;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--thm-font);
    width: 51px;
    height: 51px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
    position: relative;
    float: left;
    margin-right: 10px;
}
.check_list li{
        margin-bottom: 15px;
    font-weight: 600;
    font-size: 15px;
}
.check_list li:last-child{
    margin-bottom: 0;
}
.check_list li i{
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--thm-color-three);
    color: var(--thm-white);
    border-radius: 50%;
    margin-right: 15px;
}
.sidebar.style_3 .sidebar_widget{
    padding: 0;
    background: none;
}
.sidebar.style_3 .sidebar_widget .widget_title{
    background-image: url(../images/bg/widget_header.png);
    background-color: var(--thm-color-three);
    padding: 15px 30px;
    color: var(--thm-white);
    font-weight: 500;
    margin-bottom: 0;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}
.sidebar.style_3 .sidebar_widget_inner{
    padding: 30px;
}
.sidebar.style_3 .info_widget>li{
    font-size: 16px;
    font-weight: 600;
    font-family: var(--thm-font);
    margin-bottom: 10px;
    color: var(--thm-color-one);
}
.sidebar.style_3 .info_widget>li:last-child{
    margin-bottom: 0;
}
.sidebar.style_3 .info_widget>li span{
    color: var(--thm-body-color);
    max-width: 120px;
    width: 100%;
    display: inline-flex;
    position: relative;
}
.sidebar.style_3 .info_widget>li span:after{
    content: ':';
    position: absolute;
    right: 20px;
}

.font-b{
	font-weight: bold;
	font-size: 52px;
}

.coach_badges1{
	position: absolute;
    top: 20px;
    left: 10px;
}

.pb-m{
	margin-top: -178px;
}

.pos_bot{
	position: absolute;
    bottom: 20px;
    left: 20px;
}

.mtl{
	margin-top: 12px;
    margin-left: 20px;
}

.mtl-text{
	font-weight: bold;
    margin-top: 12px;
    margin-left: 10px;
    font-size: 17px;
}

.sidebar.style_3 .info_widget .social{
        display: inline-flex;
}
.sidebar.style_3 .info_widget .social li + li{
    margin-left: 15px;
}
.sidebar.style_3 .info_widget .social li a{
    color: var(--thm-body-color);
    font-size: 15px;
    font-weight: normal;
}
.sidebar.style_3 .info_widget .social li:hover a{
    color: var(--thm-color-two);
}

.pd-50{
	    padding-top: 50px;
}

.new_h5{
	background: #c9ee46;
    padding: 13px;
    border-radius: 50px;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
}

.new_li{
	font-size: 16px !important;
    font-weight: normal !important;
    margin-bottom: 20px !important;
    color: #000 !important;
}

.service_block3{
	margin-bottom: 30px;
    background-color: var(--thm-white);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

.service_block3:before {
    counter-increment: count;
    content: "0"counter(count);
    font-size: 72px;
    font-weight: bold;
    position: absolute;
    line-height: 0;
    color: rgb(var(--thm-color-one-rgb), 10%);
    z-index: 1000;
    -webkit-text-stroke: 1px rgb(var(--thm-color-one-rgb), 10%);
    -webkit-text-fill-color: transparent;
    font-family: var(--thm-font);
    transform: translateY(-60%);
    pointer-events: none;
    left: 10px;
}

.price-hidden{
    display:none;
}


.price-hidden.hidden{
    display: block;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    padding: 20px;
}

.price-hidden.hidden:before {
        content: '';
        background-color: #e2e9f9;
        height: calc(78% - 160px);
        width: 3px;
        top: 288px;
        display: block;
        position: absolute;
        right: 0;
}

.credit-hidden{
    display:none;
}



.credit-hidden.hidden{
    display: block;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    padding: 20px;
}

.credit-hidden.hidden:before {
        content: '';
        background-color: #e2e9f9;
        height: calc(78% - 160px);
        width: 3px;
        top: 288px;
        display: block;
        position: absolute;
        right: 0;
}


.tarif-new-new {
    width: 100%;
    background-color: #c9ee46 !important;
    color: #1b2336 !important;
    margin-bottom: 20px;
}

.yuks {
    display: inline-flex;
    background-color: rgb(27 35 54);
    color: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    justify-content: center;
}

.tinkoff-credit {
    display: inline-flex;
    background-color: #fedc2d !important;
    color: #000 !important;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    justify-content: center;
}

.pochta-credit {
    display: inline-flex;
    background-color: #3a499d !important;
    color: #fff !important;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    justify-content: center;
}

.tarif-credit {
    display: inline-flex;
    background-color: rgb(255, 0, 40);
    color: rgb(255, 255, 255);
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    justify-content: center;
    cursor: pointer;
}

.tarif-dol {
    display: inline-flex;
    background-color: rgb(255 255 255);
    color: #000;
    border: 1px solid #DDDFE0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}

.tarif-dol:hover{
 color: #000;
    text-decoration: none;
}


.bor-rad {
    border-radius: 8px !important;
}

.tarif-hidden{
    display:none;
}
.tarif-hidden.hidden{
    display: block;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    padding: 20px;
}
    
	
	
	
.tarif-hidden.hidden:before {
        content: '';
        background-color: #e2e9f9;
        height: calc(78% - 160px);
        width: 3px;
        top: 288px;
        display: block;
        position: absolute;
        right: 0;
}

.bsh_new{
	box-shadow: 0px 1px 30px 1px #aae2d43d;
	background-color: #fdf0d0;
}

.bsh_new1{
	box-shadow: 0px 1px 30px 1px #aae2d43d;
    background-color: #fff;
    text-transform: none;
    font-size: 13px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    padding-top: 51px;
}

.image-fit1 {
    width: 81%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.image-fit100 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 49px;
    left: -9px;
    object-position: center;
    border-radius: 8px;
    position: relative;
}

.image-fit101 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 41px;
    left: -9px;
    object-position: center;
    border-radius: 8px;
    position: relative;
}

.image-fit3 {
    width: 70%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.tr_top{
	top: 55%;
}

.banner_he{
	height: 740px;
}

.f-z {
    font-size:69px;
}

.why-us-list1{
	list-style: circle;
    margin-left: 17px;
    line-height: 37px;
}

.why-us-list2{
	list-style: circle;
    margin-left: 24px;
    line-height: 37px;
}

.fz-14{
	font-size:14px !important;
}

.portfolio_nav .post_navigation{
    border-top: 1px solid var(--thm-border);
    border-bottom: 1px solid var(--thm-border);
}

@media screen and (max-width: 1200px) {
  .hiden_mobile1 {
   display: none;
  
}
}


@media screen and (max-width: 1200px) {
  .hiden_mobile2 {
   display: block !important;
  
}
}

@media screen and (min-width: 1200px) {
  .hiden_mobile2 {
   display: none !important;
  
}
}

@media screen and (max-width: 1200px) {
 .testi_bg {
        background-image: none !important;
    }
}


@media screen and (max-width: 1300px) {
 .pt-img {
    width: 220px;
    height: 170px;
    margin-right: 20px;
}
}

@media screen and (max-width: 1200px){
.pt-img {
    width: 180px;
    height: 137px;
    margin-right: 20px;
}
}


@media screen and (max-width: 990px){
  .title_mobole{
     font-size: 35px !important;
    
  }  
.pb-m {
    margin-top: 0px;
}
}

.migx_1 ul{
        list-style: circle;
    margin-left: 24px;
    line-height: 37px;
    margin-top: 3rem!important;
}

.migx_2 ul{
        list-style: circle;
        margin-left: 72px;
    line-height: 32px;
}

.pd-t200{
    padding-top: 200px;
    padding-bottom: 100px;
}

.span-new-style {
    font-weight: bold;
    color: #ffffff;
    background-color: #1b2336;
    padding: 3px 10px 3px 10px;
    border-radius: 8px;
    line-height: 63px;
}

.mt88 {
    margin-top: 88px;
}

.min_h265 {
    min-height: 265px;
}

.min_h180 {
    min-height: 180px;
}

.dys_fl_c {
    display: flex;
    justify-content: space-around;
}

.stikers_free {
    position: absolute;
    top: 20px;
    left: 20px;
}

.pd-20 {
     padding: 20px !important;
}

.border_new {
    border: 2px solid #b9ee2b;
}

.pd-200 {
     padding-top: 200px;
}

.demog_img {
    margin-top: 47px !important;
    margin-right: 8px !important;
}

.back_fff {
    background-color: #ffffff33;
    padding: 10px;
    border-radius: 11px;
    padding-top: 30px;
    border: 1px solid #fff;
    margin-top: -49px;
}

.span_new_tags {
    color: #4b83fb !important;
}

.dis_non {
    display:none !important;
}


.mb_50 {
     margin-bottom: 50px;
}

.bg_one_new {
    width: 55px !important;
    height: 55px;
    border-radius: 100px;
    background-color: #edf3ff;
    border: 2px solid #fff;
}

.mar_left13 {
        margin-left: -13px;
}



.col_new1 {
    border-right: 0.8px solid #edf3ff;
    border-bottom: 0.8px solid #edf3ff;
    padding-bottom: 37px;
    padding-top: 50px;
}

.col_new2 {
    border-bottom: 0.8px solid #edf3ff;
    padding-bottom: 37px;
    padding-top: 50px;
}

.section_padding_new {
    padding: 50px 150px 50px 150px;
}


.col_new4 {
    border-right: 0.8px solid #edf3ff;
    padding-bottom: 37px;
    padding-top: 50px;
}

.col_new5 {
    padding-bottom: 37px;
    padding-top: 50px;
}

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

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

.a_new {
    font-size: 15px;
    font-weight: bold;
    padding: 12px 17px;
    color: #fff;
}

.a_fff {
    color: #fff !important;
}

.mobile_short {
    z-index: 999;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0px;
    background: #fff;
    text-align: center;
    -webkit-box-shadow: 0 3px 3px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0px -3px 15px 0 rgb(0 0 0 / 10%);
}

.mb_30 {
     margin-bottom: 30px;
     margin-top: 10px;
}

.dys_n {
    display: none;
}

.f_s_76 {
        font-size: 76px;
}
.f_s_38 {
        font-size: 38px !important;
}

.f_s_20 {
        font-size: 20px !important;
}

.p_rus_50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.min_h_new {
    min-height:500px !important;
}

.min_h_new613 {
    min-height:613px !important;
}

.min_h_new245 {
    min-height:150px !important;
    display: flex;
    align-content: stretch;
    flex-direction: row;
    align-items: center;
    text-align: center;
}


.border_market {
    color:#415674;
    font-weight: 600;
    display: inline-flex;
    line-height: normal;
    border-radius: 25px;
    padding: 11px 12px;
    margin-right: 5px;
    margin-bottom: 19px;
    border: 2px solid #415674;
}

.f_s_11 {
    font-size: 11px;
}

.f_s_13 {
    font-size: 13px !important;
}

.mt50 {
    margin-top:50px !important;
}

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

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

.color_blue {
    color:var(--thm-color-one) !important;
}

.f_s_60 {
    font-size: 60px !important;
}

.f_s_57 {
    font-size: 57px !important;
}

.border_nac {
    border: 2px solid #e9e9f4;
}

.pd_r_100 {
    padding-right: none;
}

  .p00 {
        padding: 0px 0px;
    }
   
   .color_white {
    background-color: #fff;
   
    } 
    
   .color_pink {
    background-color: #f2ecf8;
   
    } 
    
    .section1 {
            position: relative;
    }
    
.card_new12 {
    background-color: transparent !important;
    color: #fff;
    margin-left: 30px;
    line-height: 37px;
}

.bg-banner .think_box1 {
    position: absolute;
    top: 444px;
    right: 35%;
}

.bg-banner .think_box1 .text_box {
    color: var(--thm-white);
    text-align: center;
    line-height: normal;
    position: absolute;
    top: 40%;
    transform: translateY(-50%)rotate(-35deg);
    left: 0;
    right: 0;
}

.bg-banner .think_box1 .text_box .top {
    font-family: var(--thm-font);
    font-size: 15px;
    font-weight: 500;
}

.bg-banner .think_box1 .text_box .top span {
    font-size: 22px;
}

.bg-banner .think_box1 .text_box .bottom {
    font-family: var(--thm-font);
    font-size: 22px;
    font-weight: bold;
}



.bg-banner .think_box2 {
    position: absolute;
    top: 370px;
    right: 24%;
}

.bg-banner .think_box2 .text_box {
    color: var(--thm-white);
    text-align: center;
    line-height: normal;
    position: absolute;
    top: 48%;
    transform: translateY(-50%)rotate(353deg);
    left: 0;
    right: 0;
}

.bg-banner .think_box2 .text_box .top {
    font-family: var(--thm-font);
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.bg-banner .think_box2 .text_box .top span {
    font-size: 31px;
    font-weight: bold;
}

.bg-banner .think_box2 .text_box .bottom {
    font-size: 60px;
    font-weight: bold;
    color: #000;
}

.bg-banner .think_box3 {
    position: absolute;
    top: 175px;
    right: 7%;
}

.bg-banner .think_box3 .text_box {
    color: var(--thm-white);
    text-align: center;
    line-height: normal;
    position: absolute;
    top: 52%;
    transform: translateY(-51%)rotate(24deg);
    left: 27px;
    right: 0;
    width: 84%;
}

.bg-banner .think_box3 .text_box .top {
    
    font-size: 15px;
    font-weight: 500;
}

.bg-banner .think_box3 .text_box .top span {
    font-size: 62px;
    font-weight: bold;
    color: #000;
    line-height: 99px;
}

.bg-banner .think_box3 .text_box .bottom {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
}

.bg-banner .think_box {
    position: absolute;
    top: 31px;
    right: 24%;
}

.bg-banner .think_box .text_box {
    color: var(--thm-white);
    text-align: center;
    line-height: normal;
    position: absolute;
    top: 49%;
    transform: translateY(-50%)rotate(-35deg);
    left: 0;
    right: 0;
}

.bg-banner .think_box .text_box .top {
    
    font-size: 15px;
    font-weight: 500;
}

.bg-banner .think_box .text_box .top span {
    font-size: 51px;
    color: #f9fe84;
    font-weight: bold;
}

.bg-banner .think_box .text_box .bottom {
    font-family: var(--thm-font);
    font-size: 50px;
    font-weight: bold;
}

.mh110 {
    min-height: 110px;
}

.mt-80-pr {
    margin-top: 80px !important;
}

.pd_10 {
    padding: 10px;
}

.dem_10 {
    font-size: 13px !important;
    font-weight: normal !important;
    margin-top: 29px;
}

.mar_bot {
    margin-bottom: 100px;
}
.j_kid_l {
    justify-content: left !important;
}

.new_block_arrow {
        width: 36px;
    height: 36px;
    position: absolute;
 
    bottom: 50px;
}

.new_bl_1 {
        padding: 40px;
    margin-bottom: 30px;
    transition: 0.3s all;
    background-color: var(--thm-white);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    min-height: 364px;
}

.new_bl_2 {
    padding: 20px 30px 15px 30px;
    margin-bottom: 30px;
    transition: 0.3s all;
    background-color: var(--thm-white);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
  
}
.new_box_shad_n {
    box-shadow: none !important;
}
.new_ban_h {
    height: 1079px !important;
}
.circule-1{
   position: relative;
    top: -5px;
    margin-right: 20px;
    max-width: 40px;
    max-height: 50px;
    width: 100%;
    -webkit-animation: rotateImg 6s infinite linear;
    animation: rotateImg 6s infinite linear;
    
}
@keyframes rotateImg {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}

.tag_new_bl{
    background-color: #d3ff2e;
    padding: 2px 6px 2px 6px;
    line-height: 29px;
    border-radius: 5px;
}
.over_h_new {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.bl4_new{
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.img_new_1 {
    position: absolute;
    width: 227px;
    height: 227px;
    top: 190px;
    left: 148px;
    z-index: -1;
    opacity: 0.05;
}
.img_new_4 {
    position: absolute;
    width: 227px;
    height: 227px;
    top: 37px;
    left: 23px;
    z-index: -1;
    opacity: 0.05;
}

.bl2_new{
    margin-top: 81px;
    position: relative;
    z-index: 1;
}

.img_new_2{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.img_new_3{
    position: absolute;
    width: 227px;
    height: 227px;
    top: 113px;
    left: -105px;
    z-index: -1;
    opacity: 0.05;
}
.bl3_new{
    margin-top: 24px;
    position: relative;
    z-index: 1;
}
.new_catalog {
    position: relative;
    box-shadow: 0px 1px 22px 1px #ecf2ffb5;
    border-radius: 17px;
    overflow: hidden;
    margin-bottom: 30px;
}

.new_catalog .portfolio_caption {
    background-color: var(--thm-white);
    padding: 13px 20px 13px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.new_bord_img {
    position: absolute;
    top: -20px;
    left: -8px;
}

.new_ar_img {
    position: absolute;
    right: 164px;
    top: 159px;
}

.fs_45 {
    font-size: 45px !important;
}
.mt_64 {
    margin-top: 64px;
}
.mt_33 {
    margin-top: -33px;
}
.fs_15 {
    font-size: 15px;
}
.min_h_900 {
    min-height: 780px;
}

20. Features
----------------------------------------------------------------*/
.td_features.td_style_1 {
  display: flex;
  position: relative;
}
@media (max-width: 991px) {
  .td_features.td_style_1 {
    flex-direction: column;
  }
}
.td_features.td_style_1 .td_features_content,
.td_features.td_style_1 .td_features_thumb {
  flex: none;
  width: 50%;
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_content,
  .td_features.td_style_1 .td_features_thumb {
    width: 100%;
  }
}
.td_features.td_style_1 .td_features_thumb {
  position: relative;
  z-index: 2;
}
@media (min-width: 992px) {
  .td_features.td_style_1 .td_features_thumb img {
    width: calc(100% + 110px);
    max-width: initial;
  }
}
.td_features.td_style_1 .td_feature_list {
  max-width: 465px;
}
.td_features.td_style_1 .td_features_content {
  margin-top: 200px;
  box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1199px) {
  .td_features.td_style_1 .td_features_content {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_content {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .td_features.td_style_1 .td_features_content {
    padding: 40px 15px;
  }
  .td_features.td_style_1 .td_features_content .td_mb_15 {
    margin-bottom: 8px;
  }
}
.td_features.td_style_1 .td_features_content li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.td_features.td_style_1 .td_features_content li:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .td_features.td_style_1 .td_features_content li:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 350px) {
  .td_features.td_style_1 .td_features_content li {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.td_features.td_style_1 .td_features_content li:hover .td_feature_icon::before {
  opacity: 0.15;
}
.td_features.td_style_1 .td_features_content .td_feature_icon {
  flex: none;
  height: 100px;
  width: 100px;
  padding: 15px;
  position: relative;
}
@media (max-width: 575px) {
  .td_features.td_style_1 .td_features_content .td_feature_icon {
    height: 80px;
    width: 80px;
  }
}
.td_features.td_style_1 .td_features_content .td_feature_icon::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 10px;
  background-color: var(--accent-color);
  opacity: 0.05;
  transition: all 0.4s ease;
}
.td_features.td_style_1 .td_features_content .td_feature_icon svg,
.td_features.td_style_1 .td_features_content .td_feature_icon img {
  position: relative;
  z-index: 1;
}
.td_features.td_style_1 .td_features_content .td_feature_icon svg path {
  fill: var(--accent-color);
}
.td_features.td_style_1 .td_features_shape_1 {
  left: 49%;
  top: 5%;
  opacity: 0.15;
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_shape_1 {
    display: none;
  }
}
.td_features.td_style_1 .td_features_shape_2 {
  left: 10%;
  bottom: 0;
  opacity: 0.15;
}
@media (max-width: 991px) {
  .td_features.td_style_1 .td_features_shape_2 {
    display: none;
  }
}

.td_features.td_style_2 {
  display: flex;
}
@media (max-width: 991px) {
  .td_features.td_style_2 {
    flex-direction: column;
  }
}
.td_features.td_style_2 .td_feature_list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.td_features.td_style_2 .td_feature_icon {
  flex: none;
  width: 50px;
}
.td_features.td_style_2 .td_feature_icon img {
  width: 100%;
}
.td_features.td_style_2 .td_features_content_wrap {
  padding: 80px 0;
  flex: none;
  width: 50%;
}
@media (max-width: 991px) {
  .td_features.td_style_2 .td_features_content_wrap {
    width: 100%;
    padding: 40px 0 0;
  }
}
.td_features.td_style_2 .td_features_content {
  box-shadow: 2px 2px 50px 0px rgba(0, 0, 27, 0.1);
  padding: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .td_features.td_style_2 .td_features_content {
    padding: 40px 25px;
  }
}
.td_features.td_style_2 .td_feature_list {
  max-width: 560px;
}
.td_features.td_style_2 .td_feature_list li:not(:last-child) {
  margin-bottom: 40px;
}
.td_features.td_style_2 .td_features_thumb {
  flex: none;
  width: 50%;
  margin-right: -2%;
}
@media (max-width: 991px) {
  .td_features.td_style_2 .td_features_thumb {
    width: 100%;
    height: 400px;
    margin-right: 0;
  }
}
.td_features.td_style_2 .td_player_btn_wrap {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.td_features.td_style_2 .td_player_btn_wrap::after {
  content: "";
  position: absolute;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  border: 1px dashed #fff;
  left: -5px;
  top: -5px;
  animation: rotate-anim 25s linear infinite;
}
.td_features.td_style_2 .td_player_btn_wrap:hover {
  transform: scale(1.1);
}
.td_features.td_style_2 .td_player_btn {
  height: 80px;
  width: 80px;
}
.td_features.td_style_2 .td_player_btn::before {
  display: none;
}
.td_features.td_style_2 .td_player_btn span {
  transform: scale(1.6);
}

.td_features_2_wrap {
  position: relative;
}
.td_features_2_wrap .container {
  position: relative;
  z-index: 2;
}
.td_features_2_wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 195px;
  width: 100%;
  background-color:#fff;
}
.td_contact_box.td_style_2 {
  padding: 50px 80px 50px 35px;
  width: 100%;
 

}
@media (max-width: 1199px) {
  .td_contact_box.td_style_2 {
    padding: 40px 30px;
  }
}
@media (max-width: 991px) {
  .td_contact_box.td_style_2 {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .td_contact_box.td_style_2 {
    padding: 40px 25px;
  }
}

.td_contact.td_style_1 {
  position: relative;
}
.td_contact.td_style_1 .td_contact_in {
  position: relative;
  padding: 0 80px;
  box-shadow: 0px 16px 52px 0px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
@media (max-width: 1199px) {
  .td_contact.td_style_1 .td_contact_in {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_in {
    padding: 0 25px;
  }
}
@media (max-width: 350px) {
  .td_contact.td_style_1 .td_contact_in {
    padding: 0 15px;
  }
}
.td_contact.td_style_1 .td_contact_in > .row {
  position: relative;
  z-index: 2;
}
.td_contact.td_style_1 .td_contact_shape_1 {
  left: -35px;
  top: -5px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_1 {
    display: none;
  }
}
.td_contact.td_style_1 .td_contact_shape_2 {
  right: -15px;
  top: -20px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_2 {
    display: none;
  }
}
.td_contact.td_style_1 .td_contact_shape_3 {
  right: -40px;
  bottom: -10px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_3 {
    display: none;
  }
}
.td_contact.td_style_1 .td_contact_shape_4 {
  left: -5px;
  bottom: 0px;
}
@media (max-width: 991px) {
  .td_contact.td_style_1 .td_contact_shape_4 {
    display: none;
  }
}

.td_form_field_3 {
  position: relative;
}
.td_form_field_3 input {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  background-color: transparent;
  outline: none;
  height: 30px;
}
.td_form_field_3 input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.td_form_field_3 input:focus, .td_form_field_3 input:valid {
  border-color: #fff;
}
.td_form_field_3 input:focus ~ label, .td_form_field_3 input:valid ~ label {
  top: -22px;
}
.td_form_field_3 label {
  width: 100%;
  margin: 0;
  line-height: 22px;
  position: absolute;
  left: 0;
  top: 3px;
  pointer-events: none;
  transition: all 0.3s ease;
}

.td_video_block.td_style_2 + .td_contact.td_style_1 {
  margin-top: -270px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .td_video_block.td_style_2 + .td_contact.td_style_1 {
    margin-top: 80px;
  }
}

.td_bg_img_number_box .td_bg_img_number_box_number {
  font-size: 350px;
  line-height: 0.75em;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px #fff;
}
.span_kid {
    position: relative;
    display: inline-block;
    color: #fff;
    padding: 0px 30px;
}

.svg_kid {
        position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-width: 100%;
}

@media (max-width: 767px) {
  .td_bg_img_number_box .td_bg_img_number_box_number {
    font-size: 250px;
  }
}/*# sourceMappingURL=style.css.map */



@media (max-width: 1200px) {
  .wi_kid_1 {
    width: 310px !important;
  }
}

@media (max-width: 1200px) {
  .text_cen_kid {
        text-align: center !important;
  }
}

@media (max-width: 1200px) {
  .mar_t_32_kid {
       margin-top: -32px !important;
  }
}

@media (max-width: 1200px) {
  .onas_kid_font {
       font-size: 20px !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    color: var(--thm-color-one) !important;
    padding: 12.5px 8px !important;
    margin-left: 50px !important;
  }
}

@media (max-width: 1200px) {
  .soc_kid_head {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 23px !important;
   
  }
}

@media (max-width: 1200px) {
  .bor_das_kid {
    border: 3px dashed #f5b459 !important;
    background-color: #faf5f2 !important;
    border-radius: 50px !important;
    padding: 10px !important;
   
  }
}

.bor_kid_text{
   
    margin-bottom: 20px;
}

.bor_das_kid{
    border: 3px dashed #f5b459;
    background-color: #faf5f2;
    border-radius: 50px;
    padding: 30px 20px 0px 55px;
}

.img_kid_pri_boy {
    margin-top: 162px;
    left: -115px;
}

@media (max-width: 1780px) {
   .hiden_mobile1300 {
   display: none;
  
}
}

.td_pricing_in{
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
}

.plus_kid {
   font-size: 48px !important;
  
}
.das_kid_prog {
    border-bottom: 3px dashed #ffa740;
    margin-bottom: 50px;
}
.but_mes_kid_div{
    text-align: right;
}

.span_dash {
    border: 2px dashed #f5b459;
    background-color: #faf5f2;
    border-radius: 50px;
    padding: 2px 8px 2px 8px;
}

.zag_new {
    font-size: 58px;
    line-height: 63px;
    font-family: var(--thm-font);
}
.zag_new_span {
    font-weight: 100;
}
.bac_col_new {
    border-radius: 17px;
    background-color: #1b2336;
    padding: 36px 20px 20px 32px;
}

.bg-thm-color-fff {
    background-color: #ffffff;
    color: #1b2336;
}
.f_w_m {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #1b2336;
}
.new_m_r_10 {
    margin-right: 10px;
}
.tag_new{
    padding: 0px 9px;
    font-size: 14px;
    line-height: 14px;
    background-color: #fff;
    border-radius: 100px;
    border: 2px solid #dae1ef;
    margin-right: auto;
    color: #1b2336;
}
.h3_new {
    font-size: 24px !important;
    font-weight: normal;
}

.h3_new_20 {
    font-size: 20px !important;
    font-weight: normal;
    color: #fff;
}

.new_color_fff {
    color: #fff !important;
}
.new_bac_blue {
    background-color: #f2f6ff;
    padding: 50px;
}

.span_course {
    border: 2px solid #c9ee46;
    background-color: #c9ee46;
    border-radius: 50px;
    padding: 2px 8px 2px 8px;
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.td_fs_12 {
  font-size: 12px;
  line-height: 1.57em;
}

.td_fs_10 {
  font-size: 10px;
  line-height: 1.57em;
}

.td_fs_14 {
  font-size: 14px !important;
  line-height: 1.57em;
}
.td_fs_28 {
  font-size: 28px !important;
  line-height: 1.57em;
}

.bac_col_kid{
    background-color: #faf5f2;
    border-radius: 50px;
    padding: 36px 20px 20px 32px;
}
.img_kid_nach{
    position: absolute;
    right: -4%;
    z-index: 1000;
}

.td_fs_15 {
  font-size: 15px;
  line-height: 1.5em;
}

.td_fs_16 {
  font-size: 16px;
  line-height: 1.5em;
}

.td_fs_18 {
  font-size: 18px;
  line-height: 1.56em;
}
@media (max-width: 991px) {
  .td_fs_18 {
    font-size: 16px;
  }
}

.td_fs_20 {
  font-size: 20px;
  line-height: 1.5em;
}
@media (max-width: 991px) {
  .td_fs_20 {
    font-size: 18px;
  }
}

.td_fs_24 {
  font-size: 24px;
  line-height: 1.42em;
}
@media (max-width: 991px) {
  .td_fs_24 {
    font-size: 22px;
  }
}

.td_fs_30 {
  font-size: 30px;
  line-height: 1.33em;
}
@media (max-width: 991px) {
  .td_fs_30 {
    font-size: 25px;
  }
}

.td_fs_32 {
  font-size: 32px;
  line-height: 1.31em;
}
@media (max-width: 991px) {
  .td_fs_32 {
    font-size: 28px;
  }
}

.td_fs_36 {
  font-size: 36px;
  line-height: 1.44em;
}
@media (max-width: 991px) {
  .td_fs_36 {
    font-size: 30px;
  }
}

.td_fs_40 {
  font-size: 40px;
  line-height: 1.25em;
}
@media (max-width: 991px) {
  .td_fs_40 {
    font-size: 34px;
  }
}

.td_fs_48 {
  font-size: 48px;
  line-height: 1.33em;
}
@media (max-width: 1400px) {
  .td_fs_48 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .td_fs_48 {
    font-size: 38px;
  }
}

.td_fs_52 {
  font-size: 52px;
  line-height: 1.27em;
}
@media (max-width: 991px) {
  .td_fs_52 {
    font-size: 40px;
  }
}

.td_fs_60 {
  font-size: 60px;
  line-height: 1.2em;
}
@media (max-width: 991px) {
  .td_fs_60 {
    font-size: 44px;
  }
}

.td_fs_64 {
  font-size: 64px;
  line-height: 1.19em;
}
@media (max-width: 1199px) {
  .td_fs_64 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .td_fs_64 {
    font-size: 46px;
  }
}

.td_light {
  font-weight: 300;
}

.td_normal {
  font-weight: 400;
}

.td_medium {
  font-weight: 500;
}

.td_semibold {
  font-weight: 600;
}

.td_bold {
  font-weight: 700;
}

.td_extra_bold {
  font-weight: 800;
}

.td_black {
  font-weight: 900;
}

.td_radius_3 {
  border-radius: 3px;
}

.td_radius_5 {
  border-radius: 5px;
}

.td_radius_7 {
  border-radius: 7px;
}

.td_radius_10 {
  border-radius: 10px;
}

.td_radius_15 {
  border-radius: 15px;
}

.td_radius_30 {
  border-radius: 30px;
}

.td_opacity_1 {
  opacity: 0.1;
}

.td_opacity_2 {
  opacity: 0.2;
}

.td_opacity_3 {
  opacity: 0.4;
}

.td_opacity_4 {
  opacity: 0.4;
}

.td_opacity_5 {
  opacity: 0.5;
}

.td_opacity_6 {
  opacity: 0.6;
}

.td_opacity_7 {
  opacity: 0.7;
}

.td_opacity_8 {
  opacity: 0.8;
}

.td_opacity_9 {
  opacity: 0.9;
}

.td_spacing_1 {
  letter-spacing: 1.44px;
}

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

.td_pr_20 {
  padding-right: 20px;
}

.td_pr_35 {
  padding-right: 35px;
}
@media (max-width: 1400px) {
  .td_pr_35 {
    padding-right: 0;
  }
}

@media screen and (min-width: 992px) {
  .td_height_1 {
    height: 1px;
  }
  .td_height_2 {
    height: 2px;
  }
  .td_height_3 {
    height: 3px;
  }
  .td_height_4 {
    height: 4px;
  }
  .td_height_5 {
    height: 5px;
  }
  .td_height_6 {
    height: 6px;
  }
  .td_height_7 {
    height: 7px;
  }
  .td_height_8 {
    height: 8px;
  }
  .td_height_9 {
    height: 9px;
  }
  .td_height_10 {
    height: 10px;
  }
  .td_height_11 {
    height: 11px;
  }
  .td_height_12 {
    height: 12px;
  }
  .td_height_13 {
    height: 13px;
  }
  .td_height_14 {
    height: 14px;
  }
  .td_height_15 {
    height: 15px;
  }
  .td_height_16 {
    height: 16px;
  }
  .td_height_17 {
    height: 17px;
  }
  .td_height_18 {
    height: 18px;
  }
  .td_height_19 {
    height: 19px;
  }
  .td_height_20 {
    height: 20px;
  }
  .td_height_21 {
    height: 21px;
  }
  .td_height_22 {
    height: 22px;
  }
  .td_height_23 {
    height: 23px;
  }
  .td_height_24 {
    height: 24px;
  }
  .td_height_25 {
    height: 25px;
  }
  .td_height_26 {
    height: 26px;
  }
  .td_height_27 {
    height: 27px;
  }
  .td_height_28 {
    height: 28px;
  }
  .td_height_29 {
    height: 29px;
  }
  .td_height_30 {
    height: 30px;
  }
  .td_height_31 {
    height: 31px;
  }
  .td_height_32 {
    height: 32px;
  }
  .td_height_33 {
    height: 33px;
  }
  .td_height_34 {
    height: 34px;
  }
  .td_height_35 {
    height: 35px;
  }
  .td_height_36 {
    height: 36px;
  }
  .td_height_37 {
    height: 37px;
  }
  .td_height_38 {
    height: 38px;
  }
  .td_height_39 {
    height: 39px;
  }
  .td_height_40 {
    height: 40px;
  }
  .td_height_41 {
    height: 41px;
  }
  .td_height_42 {
    height: 42px;
  }
  .td_height_43 {
    height: 43px;
  }
  .td_height_44 {
    height: 44px;
  }
  .td_height_45 {
    height: 45px;
  }
  .td_height_46 {
    height: 46px;
  }
  .td_height_47 {
    height: 47px;
  }
  .td_height_48 {
    height: 48px;
  }
  .td_height_49 {
    height: 49px;
  }
  .td_height_50 {
    height: 50px;
  }
  .td_height_51 {
    height: 51px;
  }
  .td_height_52 {
    height: 52px;
  }
  .td_height_53 {
    height: 53px;
  }
  .td_height_54 {
    height: 54px;
  }
  .td_height_55 {
    height: 55px;
  }
  .td_height_56 {
    height: 56px;
  }
  .td_height_57 {
    height: 57px;
  }
  .td_height_58 {
    height: 58px;
  }
  .td_height_59 {
    height: 59px;
  }
  .td_height_60 {
    height: 60px;
  }
  .td_height_61 {
    height: 61px;
  }
  .td_height_62 {
    height: 62px;
  }
  .td_height_63 {
    height: 63px;
  }
  .td_height_64 {
    height: 64px;
  }
  .td_height_65 {
    height: 65px;
  }
  .td_height_66 {
    height: 66px;
  }
  .td_height_67 {
    height: 67px;
  }
  .td_height_68 {
    height: 68px;
  }
  .td_height_69 {
    height: 69px;
  }
  .td_height_70 {
    height: 70px;
  }
  .td_height_71 {
    height: 71px;
  }
  .td_height_72 {
    height: 72px;
  }
  .td_height_73 {
    height: 73px;
  }
  .td_height_74 {
    height: 74px;
  }
  .td_height_75 {
    height: 75px;
  }
  .td_height_76 {
    height: 76px;
  }
  .td_height_77 {
    height: 77px;
  }
  .td_height_78 {
    height: 78px;
  }
  .td_height_79 {
    height: 79px;
  }
  .td_height_80 {
    height: 80px;
  }
  .td_height_81 {
    height: 81px;
  }
  .td_height_82 {
    height: 82px;
  }
  .td_height_83 {
    height: 83px;
  }
  .td_height_84 {
    height: 84px;
  }
  .td_height_85 {
    height: 85px;
  }
  .td_height_86 {
    height: 86px;
  }
  .td_height_87 {
    height: 87px;
  }
  .td_height_88 {
    height: 88px;
  }
  .td_height_89 {
    height: 89px;
  }
  .td_height_90 {
    height: 90px;
  }
  .td_height_91 {
    height: 91px;
  }
  .td_height_92 {
    height: 92px;
  }
  .td_height_93 {
    height: 93px;
  }
  .td_height_94 {
    height: 94px;
  }
  .td_height_95 {
    height: 95px;
  }
  .td_height_96 {
    height: 96px;
  }
  .td_height_97 {
    height: 97px;
  }
  .td_height_98 {
    height: 98px;
  }
  .td_height_99 {
    height: 99px;
  }
  .td_height_100 {
    height: 100px;
  }
  .td_height_101 {
    height: 101px;
  }
  .td_height_102 {
    height: 102px;
  }
  .td_height_103 {
    height: 103px;
  }
  .td_height_104 {
    height: 104px;
  }
  .td_height_105 {
    height: 105px;
  }
  .td_height_106 {
    height: 106px;
  }
  .td_height_107 {
    height: 107px;
  }
  .td_height_108 {
    height: 108px;
  }
  .td_height_109 {
    height: 109px;
  }
  .td_height_110 {
    height: 110px;
  }
  .td_height_111 {
    height: 111px;
  }
  .td_height_112 {
    height: 112px;
  }
  .td_height_113 {
    height: 113px;
  }
  .td_height_114 {
    height: 114px;
  }
  .td_height_115 {
    height: 115px;
  }
  .td_height_116 {
    height: 116px;
  }
  .td_height_117 {
    height: 117px;
  }
  .td_height_118 {
    height: 118px;
  }
  .td_height_119 {
    height: 119px;
  }
  .td_height_120 {
    height: 120px;
  }
  .td_height_121 {
    height: 121px;
  }
  .td_height_122 {
    height: 122px;
  }
  .td_height_123 {
    height: 123px;
  }
  .td_height_124 {
    height: 124px;
  }
  .td_height_125 {
    height: 125px;
  }
  .td_height_126 {
    height: 126px;
  }
  .td_height_127 {
    height: 127px;
  }
  .td_height_128 {
    height: 128px;
  }
  .td_height_129 {
    height: 129px;
  }
  .td_height_130 {
    height: 130px;
  }
  .td_height_131 {
    height: 131px;
  }
  .td_height_132 {
    height: 132px;
  }
  .td_height_133 {
    height: 133px;
  }
  .td_height_134 {
    height: 134px;
  }
  .td_height_135 {
    height: 135px;
  }
  .td_height_136 {
    height: 136px;
  }
  .td_height_137 {
    height: 137px;
  }
  .td_height_138 {
    height: 138px;
  }
  .td_height_139 {
    height: 139px;
  }
  .td_height_140 {
    height: 140px;
  }
  .td_height_141 {
    height: 141px;
  }
  .td_height_142 {
    height: 142px;
  }
  .td_height_143 {
    height: 143px;
  }
  .td_height_144 {
    height: 144px;
  }
  .td_height_145 {
    height: 145px;
  }
  .td_height_146 {
    height: 146px;
  }
  .td_height_147 {
    height: 147px;
  }
  .td_height_148 {
    height: 148px;
  }
  .td_height_149 {
    height: 149px;
  }
  .td_height_150 {
    height: 150px;
  }
}
@media screen and (max-width: 991px) {
  .td_mb_lg_1 {
    margin-bottom: 1px;
  }
  .td_mb_lg_2 {
    margin-bottom: 2px;
  }
  .td_mb_lg_3 {
    margin-bottom: 3px;
  }
  .td_mb_lg_4 {
    margin-bottom: 4px;
  }
  .td_mb_lg_5 {
    margin-bottom: 5px;
  }
  .td_mb_lg_6 {
    margin-bottom: 6px;
  }
  .td_mb_lg_7 {
    margin-bottom: 7px;
  }
  .td_mb_lg_8 {
    margin-bottom: 8px;
  }
  .td_mb_lg_9 {
    margin-bottom: 9px;
  }
  .td_mb_lg_10 {
    margin-bottom: 10px;
  }
  .td_mb_lg_11 {
    margin-bottom: 11px;
  }
  .td_mb_lg_12 {
    margin-bottom: 12px;
  }
  .td_mb_lg_13 {
    margin-bottom: 13px;
  }
  .td_mb_lg_14 {
    margin-bottom: 14px;
  }
  .td_mb_lg_15 {
    margin-bottom: 15px;
  }
  .td_mb_lg_16 {
    margin-bottom: 16px;
  }
  .td_mb_lg_17 {
    margin-bottom: 17px;
  }
  .td_mb_lg_18 {
    margin-bottom: 18px;
  }
  .td_mb_lg_19 {
    margin-bottom: 19px;
  }
  .td_mb_lg_20 {
    margin-bottom: 20px;
  }
  .td_mb_lg_21 {
    margin-bottom: 21px;
  }
  .td_mb_lg_22 {
    margin-bottom: 22px;
  }
  .td_mb_lg_23 {
    margin-bottom: 23px;
  }
  .td_mb_lg_24 {
    margin-bottom: 24px;
  }
  .td_mb_lg_25 {
    margin-bottom: 25px;
  }
  .td_mb_lg_26 {
    margin-bottom: 26px;
  }
  .td_mb_lg_27 {
    margin-bottom: 27px;
  }
  .td_mb_lg_28 {
    margin-bottom: 28px;
  }
  .td_mb_lg_29 {
    margin-bottom: 29px;
  }
  .td_mb_lg_30 {
    margin-bottom: 30px;
  }
  .td_mb_lg_31 {
    margin-bottom: 31px;
  }
  .td_mb_lg_32 {
    margin-bottom: 32px;
  }
  .td_mb_lg_33 {
    margin-bottom: 33px;
  }
  .td_mb_lg_34 {
    margin-bottom: 34px;
  }
  .td_mb_lg_35 {
    margin-bottom: 35px;
  }
  .td_mb_lg_36 {
    margin-bottom: 36px;
  }
  .td_mb_lg_37 {
    margin-bottom: 37px;
  }
  .td_mb_lg_38 {
    margin-bottom: 38px;
  }
  .td_mb_lg_39 {
    margin-bottom: 39px;
  }
  .td_mb_lg_40 {
    margin-bottom: 40px;
  }
  .td_mb_lg_41 {
    margin-bottom: 41px;
  }
  .td_mb_lg_42 {
    margin-bottom: 42px;
  }
  .td_mb_lg_43 {
    margin-bottom: 43px;
  }
  .td_mb_lg_44 {
    margin-bottom: 44px;
  }
  .td_mb_lg_45 {
    margin-bottom: 45px;
  }
  .td_mb_lg_46 {
    margin-bottom: 46px;
  }
  .td_mb_lg_47 {
    margin-bottom: 47px;
  }
  .td_mb_lg_48 {
    margin-bottom: 48px;
  }
  .td_mb_lg_49 {
    margin-bottom: 49px;
  }
  .td_mb_lg_50 {
    margin-bottom: 50px;
  }
  .td_mb_lg_51 {
    margin-bottom: 51px;
  }
  .td_mb_lg_52 {
    margin-bottom: 52px;
  }
  .td_mb_lg_53 {
    margin-bottom: 53px;
  }
  .td_mb_lg_54 {
    margin-bottom: 54px;
  }
  .td_mb_lg_55 {
    margin-bottom: 55px;
  }
  .td_mb_lg_56 {
    margin-bottom: 56px;
  }
  .td_mb_lg_57 {
    margin-bottom: 57px;
  }
  .td_mb_lg_58 {
    margin-bottom: 58px;
  }
  .td_mb_lg_59 {
    margin-bottom: 59px;
  }
  .td_mb_lg_60 {
    margin-bottom: 60px;
  }
  .td_height_lg_1 {
    height: 1px;
  }
  .td_height_lg_2 {
    height: 2px;
  }
  .td_height_lg_3 {
    height: 3px;
  }
  .td_height_lg_4 {
    height: 4px;
  }
  .td_height_lg_5 {
    height: 5px;
  }
  .td_height_lg_6 {
    height: 6px;
  }
  .td_height_lg_7 {
    height: 7px;
  }
  .td_height_lg_8 {
    height: 8px;
  }
  .td_height_lg_9 {
    height: 9px;
  }
  .td_height_lg_10 {
    height: 10px;
  }
  .td_height_lg_11 {
    height: 11px;
  }
  .td_height_lg_12 {
    height: 12px;
  }
  .td_height_lg_13 {
    height: 13px;
  }
  .td_height_lg_14 {
    height: 14px;
  }
  .td_height_lg_15 {
    height: 15px;
  }
  .td_height_lg_16 {
    height: 16px;
  }
  .td_height_lg_17 {
    height: 17px;
  }
  .td_height_lg_18 {
    height: 18px;
  }
  .td_height_lg_19 {
    height: 19px;
  }
  .td_height_lg_20 {
    height: 20px;
  }
  .td_height_lg_21 {
    height: 21px;
  }
  .td_height_lg_22 {
    height: 22px;
  }
  .td_height_lg_23 {
    height: 23px;
  }
  .td_height_lg_24 {
    height: 24px;
  }
  .td_height_lg_25 {
    height: 25px;
  }
  .td_height_lg_26 {
    height: 26px;
  }
  .td_height_lg_27 {
    height: 27px;
  }
  .td_height_lg_28 {
    height: 28px;
  }
  .td_height_lg_29 {
    height: 29px;
  }
  .td_height_lg_30 {
    height: 30px;
  }
  .td_height_lg_31 {
    height: 31px;
  }
  .td_height_lg_32 {
    height: 32px;
  }
  .td_height_lg_33 {
    height: 33px;
  }
  .td_height_lg_34 {
    height: 34px;
  }
  .td_height_lg_35 {
    height: 35px;
  }
  .td_height_lg_36 {
    height: 36px;
  }
  .td_height_lg_37 {
    height: 37px;
  }
  .td_height_lg_38 {
    height: 38px;
  }
  .td_height_lg_39 {
    height: 39px;
  }
  .td_height_lg_40 {
    height: 40px;
  }
  .td_height_lg_41 {
    height: 41px;
  }
  .td_height_lg_42 {
    height: 42px;
  }
  .td_height_lg_43 {
    height: 43px;
  }
  .td_height_lg_44 {
    height: 44px;
  }
  .td_height_lg_45 {
    height: 45px;
  }
  .td_height_lg_46 {
    height: 46px;
  }
  .td_height_lg_47 {
    height: 47px;
  }
  .td_height_lg_48 {
    height: 48px;
  }
  .td_height_lg_49 {
    height: 49px;
  }
  .td_height_lg_50 {
    height: 50px;
  }
  .td_height_lg_51 {
    height: 51px;
  }
  .td_height_lg_52 {
    height: 52px;
  }
  .td_height_lg_53 {
    height: 53px;
  }
  .td_height_lg_54 {
    height: 54px;
  }
  .td_height_lg_55 {
    height: 55px;
  }
  .td_height_lg_56 {
    height: 56px;
  }
  .td_height_lg_57 {
    height: 57px;
  }
  .td_height_lg_58 {
    height: 58px;
  }
  .td_height_lg_59 {
    height: 59px;
  }
  .td_height_lg_60 {
    height: 60px;
  }
  .td_height_lg_61 {
    height: 61px;
  }
  .td_height_lg_62 {
    height: 62px;
  }
  .td_height_lg_63 {
    height: 63px;
  }
  .td_height_lg_64 {
    height: 64px;
  }
  .td_height_lg_65 {
    height: 65px;
  }
  .td_height_lg_66 {
    height: 66px;
  }
  .td_height_lg_67 {
    height: 67px;
  }
  .td_height_lg_68 {
    height: 68px;
  }
  .td_height_lg_69 {
    height: 69px;
  }
  .td_height_lg_70 {
    height: 70px;
  }
  .td_height_lg_71 {
    height: 71px;
  }
  .td_height_lg_72 {
    height: 72px;
  }
  .td_height_lg_73 {
    height: 73px;
  }
  .td_height_lg_74 {
    height: 74px;
  }
  .td_height_lg_75 {
    height: 75px;
  }
  .td_height_lg_76 {
    height: 76px;
  }
  .td_height_lg_77 {
    height: 77px;
  }
  .td_height_lg_78 {
    height: 78px;
  }
  .td_height_lg_79 {
    height: 79px;
  }
  .td_height_lg_80 {
    height: 80px;
  }
  .td_height_lg_81 {
    height: 81px;
  }
  .td_height_lg_82 {
    height: 82px;
  }
  .td_height_lg_83 {
    height: 83px;
  }
  .td_height_lg_84 {
    height: 84px;
  }
  .td_height_lg_85 {
    height: 85px;
  }
  .td_height_lg_86 {
    height: 86px;
  }
  .td_height_lg_87 {
    height: 87px;
  }
  .td_height_lg_88 {
    height: 88px;
  }
  .td_height_lg_89 {
    height: 89px;
  }
  .td_height_lg_90 {
    height: 90px;
  }
  .td_height_lg_91 {
    height: 91px;
  }
  .td_height_lg_92 {
    height: 92px;
  }
  .td_height_lg_93 {
    height: 93px;
  }
  .td_height_lg_94 {
    height: 94px;
  }
  .td_height_lg_95 {
    height: 95px;
  }
  .td_height_lg_96 {
    height: 96px;
  }
  .td_height_lg_97 {
    height: 97px;
  }
  .td_height_lg_98 {
    height: 98px;
  }
  .td_height_lg_99 {
    height: 99px;
  }
  .td_height_lg_100 {
    height: 100px;
  }
  .td_height_lg_101 {
    height: 101px;
  }
  .td_height_lg_102 {
    height: 102px;
  }
  .td_height_lg_103 {
    height: 103px;
  }
  .td_height_lg_104 {
    height: 104px;
  }
  .td_height_lg_105 {
    height: 105px;
  }
  .td_height_lg_106 {
    height: 106px;
  }
  .td_height_lg_107 {
    height: 107px;
  }
  .td_height_lg_108 {
    height: 108px;
  }
  .td_height_lg_109 {
    height: 109px;
  }
  .td_height_lg_110 {
    height: 110px;
  }
  .td_height_lg_111 {
    height: 111px;
  }
  .td_height_lg_112 {
    height: 112px;
  }
  .td_height_lg_113 {
    height: 113px;
  }
  .td_height_lg_114 {
    height: 114px;
  }
  .td_height_lg_115 {
    height: 115px;
  }
  .td_height_lg_116 {
    height: 116px;
  }
  .td_height_lg_117 {
    height: 117px;
  }
  .td_height_lg_118 {
    height: 118px;
  }
  .td_height_lg_119 {
    height: 119px;
  }
  .td_height_lg_120 {
    height: 120px;
  }
  .td_height_lg_121 {
    height: 121px;
  }
  .td_height_lg_122 {
    height: 122px;
  }
  .td_height_lg_123 {
    height: 123px;
  }
  .td_height_lg_124 {
    height: 124px;
  }
  .td_height_lg_125 {
    height: 125px;
  }
  .td_height_lg_126 {
    height: 126px;
  }
  .td_height_lg_127 {
    height: 127px;
  }
  .td_height_lg_128 {
    height: 128px;
  }
  .td_height_lg_129 {
    height: 129px;
  }
  .td_height_lg_130 {
    height: 130px;
  }
  .td_height_lg_131 {
    height: 131px;
  }
  .td_height_lg_132 {
    height: 132px;
  }
  .td_height_lg_133 {
    height: 133px;
  }
  .td_height_lg_134 {
    height: 134px;
  }
  .td_height_lg_135 {
    height: 135px;
  }
  .td_height_lg_136 {
    height: 136px;
  }
  .td_height_lg_137 {
    height: 137px;
  }
  .td_height_lg_138 {
    height: 138px;
  }
  .td_height_lg_139 {
    height: 139px;
  }
  .td_height_lg_140 {
    height: 140px;
  }
  .td_height_lg_141 {
    height: 141px;
  }
  .td_height_lg_142 {
    height: 142px;
  }
  .td_height_lg_143 {
    height: 143px;
  }
  .td_height_lg_144 {
    height: 144px;
  }
  .td_height_lg_145 {
    height: 145px;
  }
  .td_height_lg_146 {
    height: 146px;
  }
  .td_height_lg_147 {
    height: 147px;
  }
  .td_height_lg_148 {
    height: 148px;
  }
  .td_height_lg_149 {
    height: 149px;
  }
  .td_height_lg_150 {
    height: 150px;
  }
}

.p_100_new {
    padding: 20px 40px 20px 40px;
}

.m_b_0_new {
    margin-bottom: 0px !important;
}
.fs_new_56  {
    font-size: 56px;
}


.dys_mew_con {
    display: flex;
    align-content: center;
    align-items: center;
}

@media (max-width: 991px){
.new_ban_h {
    height: 100% !important;
   
}

.new_bac_blue {
    background-color: #f2f6ff;
    padding: 10px;
}
.zag_new {
    font-size: 47px;
    line-height: 46px;
    font-family: var(--thm-font);
}
.p_100_new {
    padding: 20px 15px 20px 15px;
}
.fs_new_56 {
    font-size: 46px;
}
.info_img_dys {
    display: flex !important;
    gap: 32px !important;
    align-items: baseline !important;
    align-content: space-around !important;
    flex-wrap: wrap !important;
}
}



.pr-hidden{
    display:none;
}


.pr-hidden.hidden{
    display: block;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    box-shadow: 0px 1px 30px 1px #ecf2ff;
    padding: 20px;
}

.pr-hidden.hidden:before {
        content: '';
        background-color: #e2e9f9;
        height: calc(78% - 160px);
        width: 3px;
        top: 288px;
        display: block;
        position: absolute;
        right: 0;
}
.pr_zag_arrow {
    text-align: left;
    color: #1b2336;
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: 700;
    font-size: 26px;
    text-transform: none;
    line-height: 1.2em;
    font-family: var(--thm-font);
}

.bor_new_info {
  
    border-radius: 10px;
    padding: 27px;
}

.info_img_dys {
    display: flex;
    gap: 32px;
    align-items: baseline;
    align-content: space-around;
    flex-wrap: nowrap;
    
}

.info_n_p {
    border-top: 1px solid #e9e9f4;
    padding-top: 20px;
}

.new_ar_img1 {
    position: absolute;
    right: 176px;
    top: 228px;
}

.new_ar_img11 {
    position: absolute;
    right: 87px;
    top: 151px;
}


@media (max-width: 991px){
.col_mig {
    -ms-flex-preferred-size: 0;
    flex-basis: auto !important;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.faq_new_block     {
    position: relative;
    width: 100%;
    padding-right: 0px !important;
    padding-left: 0px !important;
    
}

.service-boxm {
    display: grid;
    gap: 20px 50px;
    grid-template-columns: 30px auto;
    padding-bottom: 20px !important;
    padding-top: 30px !important;
    border-bottom: 2px solid #e9e9f4;
}
.services-wrapper-box {
    margin-top: 0px;
}

.m_m_t_20 {
    margin-top: 29px !important;
}

  .col_lg_4_mob {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 50%;
        max-width: 50%
    }
    
    .min_h_home {
        min-height: 78px;
        padding: 13px 11px 13px !important;
    }
    .b_c_m {
         background-color: #f2f6ff;
    }
    .td_fs_20_m {
    font-size: 14px !important;
}
    
}

.lis_cir ul{
    list-style: circle;
}

.counter-area .counter-box {
 
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f2f6ff;
    position: relative;
    z-index: 1;
    padding: 40px;
    margin-bottom: 30px;
    min-height: 364px;
}

.counter-area .counter-box:before {
    content: url(/assets/images/new/1/img-s-466.webp);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
}

.counter-area .counter-box1 {
 
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f2f6ff;
    position: relative;
    z-index: 1;
    padding: 40px;
    margin-bottom: 30px;
    min-height: 364px;
}

.counter-area .counter-box1:before {
    content: url(/assets/images/new/1/img9787.jpg);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: -1;
}

.counter-area .counter-box3 {
 
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    background-color: #faf5f2;
    position: relative;
    z-index: 1;
    padding: 40px;
    margin-bottom: 30px;
    min-height: 364px;
}

.counter-area .counter-box3:before {
    content: url(/assets/images/kid/hero-shape-61.png);
        position: absolute;
    bottom: 26px;
    left: 188px;
    z-index: -1;
    transform: rotate(19deg);
}

.feature-area .features-wrapper-box {
    margin-top: 35px;
    overflow: hidden;
}
.feature-area .features-wrapper {
    display: grid;
    gap: 0 0;
  
    margin: 0 -100px;
}

.feature-box {
    padding: 0 100px 15px;
    border-inline-end: 1px solid rgba(0,0,0,.12);
    min-height: 322px;
}
.feature-box .title {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 700;
    
}
.feature-box .content {
    margin-top: 48px;
}


.service-area .services-wrapper {
    display: grid;
    gap: 0 90px;
    grid-template-columns: repeat(2, 600px);
}

.service-area .services-wrapper>* {
    border-bottom: 2px solid #e9e9f4;
}

.service-boxm {
    display: grid;
    gap: 20px 50px;
    grid-template-columns: 30px auto;
    padding-bottom: 44px;
    padding-top: 44px;
    border-bottom: 2px solid #e9e9f4;
}
.service-boxm .content-wrapper {
    display: grid;
    gap: 30px 50px;
    grid-template-columns: auto auto;
}
.number_m {
    font-size: 43px;
    font-weight: bold;
    color: #1b2336;
}

.services-wrapper-box {
    margin-top: 50px;
}
.w_m_100 {
    width: 155px !important;
}
.tag_new_bl10 {
    background-color: #991882;
    padding: 2px 6px 2px 6px;
    line-height: 29px;
    border-radius: 5px;
}

.tag_new_bl11 {
    background-color: #bbdddd;
    padding: 2px 6px 2px 6px;
    line-height: 29px;
    border-radius: 5px;
}

.tag_new_bl13 {
    background-color: #f5b459;
    padding: 2px 6px 2px 6px;
    line-height: 29px;
    color: #fff;
    border-radius: 5px;
}

.n_m_l {
    margin-left: 15px;
}

.n_m_l_6{
    margin-left: -6px;
}

.bpla_new {
    border: 2px solid transparent;
    border-color: #e9e9f4;
    padding: 10px 15px;
    border-radius: 50px;
    margin-right: 20px;
    line-height: 68px;
}

.h3_new_bpla {
    font-size: 20px !important;
    font-weight: normal;
}

.mt-5-bpla, .my-5 {
    margin-top: 10rem!important;
}

@media (max-width: 1300px){
   .mt-5-bpla, .my-5 {
    margin-top: 30rem!important;
} 
}

@media (max-width: 900px){
   .mt-5-bpla, .my-5 {
    margin-top: 3rem!important;
} 

.h3_new_bpla {
    font-size: 17px !important;
    font-weight: normal;
}
}