/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# guterberg
# Gutenberg	Default Style
# Block Color Palette Colors
# Sections
    ## Breadcrumb
    ## Comments
    ## Widgets
    ## Nav Bar
    ## Info Bar
    ## Header
# Elements
    ## Back Top
    ## Preloader
    ## Search Popup
    ## Video Popup
    ## Button
    ## Section Title

--------------------------------------------------------------*/


/*-----------------
    # Typography
-----------------*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

:root {
    --main-color-one: #15c0e8;
    --heading-color: #263534;
    --paragraph-color: #666;
    --bg-color: #1e2a29;
    --hover-color: #039dc0;
    --white: #fff;
    --red: #f95759;
    --body-font: 'Open Sans', sans-serif;
    --heading-font: 'Righteous', cursive;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    font-family: var(--body-font);
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -moz-osx-font-smoothing: grayscale;
    /* Firefox */
    -webkit-font-smoothing: antialiased;
    /* WebKit  */
}

body {
    margin: 0;
    color: var(--paragraph-color);
    font-family: 'Open Sans', sans-serif;
}

h1 {
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
}

h2 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
}

h3 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 600;
}

h4 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
}

h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

h6 {
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: 'Righteous', cursive;
    margin-bottom: 10px;
    line-height: 1.4;
}

p,
li {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--body-font);
}

a {
    color: inherit;
    text-decoration: none;
    color: #039dc0;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: inherit;
}

dl,
ol,
ul {
    margin-bottom: 0;
}

pre {
    word-break: break-word;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}

.border-left-top {
    border-radius: 50px 0 0 0;
}

.border-left-top-35 {
    border-radius: 70px 0 0 0;
}

.border-left-bottom {
    border-radius: 0 0 0 50px;
}

.border-left-bottom-35 {
    border-radius: 0 0 0 70px;
}

.border-right-top {
    border-radius: 0 50px 0 0;
}

.border-right-top-30 {
    border-radius: 0 60px 0 0;
}

.border-right-top-35 {
    border-radius: 0 70px 0 0;
}

.border-right-bottom {
    border-radius: 0 0 50px 0;
}

.border-right-bottom-35 {
    border-radius: 0 070px 0;
}

.container-fluid {
    max-width: 1680px;
}


/*input and button type focus outline disable*/

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 1px solid var(--hover-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

button:focus {
    outline: none;
}

code {
    color: #faa603;
}

.dark-bg {
    background-color: #111d5c;
}

.section-bg-1 {
    background-color: #f4f7fc;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: block;
    padding-left: 20px;
    position: relative;
    z-index: 0;
}

.check-list li:after {
    position: absolute;
    left: 0;
    top: 0;
    font-family: "fontawesome";
    content: "\f105";
    color: var(--main-color-one);
}

.nav-container {
    margin: auto;
    max-width: 1680px;
    padding-right: 15px;
    padding-left: 15px;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
    color: var(--main-color-one);
}

.mfp-bg {
    background: #0b0b0bd9;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    right: -30px;
    font-size: 35px;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}


/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}


/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/

.padding-left-0 {
    padding-left: 0;
}

.padding-right-0 {
    padding-left: 0;
}

.gray-bg {
    background-color: #f8f8f8;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-15 {
    padding-top: 15px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-30 {
    padding-top: 30px;
}

.padding-top-40 {
    padding-top: 40px;
}

.padding-top-45 {
    padding-top: 45px;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-top-60 {
    padding-top: 60px;
}

.padding-top-65 {
    padding-top: 65px;
}

.padding-top-70 {
    padding-top: 70px;
}

.padding-top-75 {
    padding-top: 75px;
}

.padding-top-80 {
    padding-top: 80px;
}

.padding-top-85 {
    padding-top: 85px;
}

.padding-top-90 {
    padding-top: 90px;
}

.padding-top-95 {
    padding-top: 95px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-top-105 {
    padding-top: 105px;
}

.padding-top-110 {
    padding-top: 110px;
}

.padding-top-112 {
    padding-top: 112px;
}

.padding-top-115 {
    padding-top: 115px;
}

.padding-top-118 {
    padding-top: 118px;
}

.padding-top-120 {
    padding-top: 120px;
}

.padding-top-122 {
    padding-top: 122px;
}

.padding-top-125 {
    padding-top: 125px;
}

.padding-top-130 {
    padding-top: 130px;
}

.padding-top-140 {
    padding-top: 140px;
}

.padding-top-150 {
    padding-top: 150px;
}

.padding-bottom-10 {
    padding-bottom: 10px;
}

.padding-bottom-15 {
    padding-bottom: 15px;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}

.padding-bottom-25 {
    padding-bottom: 25px;
}

.padding-bottom-35 {
    padding-bottom: 35px;
}

.padding-bottom-30 {
    padding-bottom: 30px;
}

.padding-bottom-40 {
    padding-bottom: 40px;
}

.padding-bottom-45 {
    padding-bottom: 45px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-55 {
    padding-bottom: 55px;
}

.padding-bottom-60 {
    padding-bottom: 60px;
}

.padding-bottom-65 {
    padding-bottom: 65px;
}

.padding-bottom-70 {
    padding-bottom: 70px;
}

.padding-bottom-75 {
    padding-bottom: 75px;
}

.padding-bottom-80 {
    padding-bottom: 80px;
}

.padding-bottom-85 {
    padding-bottom: 85px;
}

.padding-bottom-90 {
    padding-bottom: 90px;
}

.padding-bottom-95 {
    padding-bottom: 95px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-bottom-110 {
    padding-bottom: 110px;
}

.padding-bottom-105 {
    padding-bottom: 105px;
}

.padding-bottom-115 {
    padding-bottom: 115px;
}

.padding-bottom-120 {
    padding-bottom: 120px;
}

.padding-bottom-125 {
    padding-bottom: 125px;
}

.padding-bottom-130 {
    padding-bottom: 130px;
}

.padding-bottom-135 {
    padding-bottom: 135px;
}

.padding-bottom-140 {
    padding-bottom: 140px;
}

.padding-bottom-150 {
    padding-bottom: 150px;
}

.padding-bottom-160 {
    padding-bottom: 160px;
}

.padding-bottom-170 {
    padding-bottom: 170px;
}

.padding-bottom-180 {
    padding-bottom: 180px;
}

.padding-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.padding-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.padding-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.padding-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.padding-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.padding-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.padding-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-0 {
    padding: 0;
}

.margin-0 {
    margin: 0;
}

.margin-60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-55 {
    margin-top: 55px;
}

.margin-top-60 {
    margin-top: 60px;
}

.margin-top-70 {
    margin-top: 70px;
}

.margin-top-80 {
    margin-top: 80px;
}

.margin-top-85 {
    margin-top: 85px;
}

.margin-top-90 {
    margin-top: 90px;
}

.margin-top-100 {
    margin-top: 100px;
}

.margin-top-120 {
    margin-top: 120px;
}

.margin-top-125 {
    margin-top: 125px;
}

.margin-top-130 {
    margin-top: 130px;
}

.margin-top-140 {
    margin-top: 140px;
}

.margin-top-150 {
    margin-top: 150px;
}

.margin-bottom-0 {
    margin-bottom: 0px !important;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-25 {
    margin-bottom: 25px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-35 {
    margin-bottom: 35px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-45 {
    margin-bottom: 45px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.margin-bottom-55 {
    margin-bottom: 55px;
}

.margin-bottom-60 {
    margin-bottom: 60px;
}

.margin-bottom-70 {
    margin-bottom: 70px;
}

.margin-bottom-80 {
    margin-bottom: 80px;
}

.margin-bottom-90 {
    margin-bottom: 90px;
}

.margin-bottom-100 {
    margin-bottom: 100px;
}

.margin-bottom-120 {
    margin-bottom: 120px;
}

.margin-bottom-125 {
    margin-bottom: 125px;
}

.margin-bottom-150 {
    margin-bottom: 150px;
}

.min-height-600 {
    min-height: 600px;
}


/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    float: left;
    clear: both;
    margin-right: 20px;
}

.alignright {
    float: right;
    clear: both;
    margin-left: 20px;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.alignwide {
    max-width: 1100px;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.blog-pagination ul li {
    display: inline-block;
}

.blog-pagination ul li+li {
    margin: 0 5px;
}

.blog-pagination {
    display: block;
    width: 100%;
}

.blog-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #e2e2e2;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
    background-color: var(--main-color-one);
    color: var(--white);
}


/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}


/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}


/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    clear: both;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}


/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*----------------------------------------
    # Unit test
------------------------------------------*/

.wp-link-pages a {
    margin: 0 5px;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.wp-link-pages {
    margin-bottom: 30px;
    margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
    border: 1px solid #e2e2e2;
    padding: 5px 15px;
    display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
    background-color: var(--main-color-one);
    color: var(--white);
    border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
    margin-right: 5px;
}

dl,
ol,
ul {
    padding-left: 15px;
}

.post-password-form input {
    display: block;
    border: 1px solid #e2e2e2;
    height: 50px;
    border-radius: 3px;
    padding: 0 20px;
}

.post-password-form label {
    font-weight: 600;
    color: #333;
}

.post-password-form input[type="submit"] {
    width: 100px;
    height: 50px;
    background-color: var(--main-color-one);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.post-password-form input[type="submit"]:hover {
    background-color: #121a2f;
}

.footer-widget .table td,
.footer-widget .table th {
    padding: 0.5rem !important;
}


/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/

.single-post-details-item .entry-content>.alignwide {
    max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
    margin: 1.5em 0;
    max-width: 100%;
}

.wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: .5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

wp-block-video video {
    max-width: 636px;
}

.wp-block-image img {
    display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
    width: 100%;
}

.wp-block-image.alignfull img {
    width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
    margin: 1.5em auto;
}

.wp-block-cover-text p {
    padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
    padding: 0 14px;
}

.wp-block-table {
    display: block;
    overflow-x: auto;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}

.wp-block-table td,
.wp-block-table th {
    padding: .5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.wp-block-quote.is-large {
    margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
    margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
    border-left: 4px solid #000;
    padding-left: 1em;
}

.wp-block-separator {
    margin: 3em auto;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .wp-block-cover-text p {
        padding: 1.5em 0;
    }
}

.wp-block-pullquote {
    border-top: 4px solid #555d66;
    border-bottom: 4px solid #555d66;
    color: #40464d;
}


/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/

.has-strong-blue-color {
    color: #0073aa;
}

.has-strong-blue-background-color {
    background-color: #0073aa;
}

.has-lighter-blue-color {
    color: #229fd8;
}

.has-lighter-blue-background-color {
    background-color: #229fd8;
}

.has-very-light-gray-color {
    color: #eee;
}

.has-very-light-gray-background-color {
    background-color: #eee;
}

.has-very-dark-gray-color {
    color: #444;
}

.has-very-dark-gray-background-color {
    background-color: #444;
}

.pulse-icon {
    -webkit-animation: ripple-blue 2s infinite;
    animation: ripple-blue 2s infinite;
}

@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(21, 192, 232, 0.5);
        box-shadow: 0 0 0 0 rgba(21, 192, 232, 0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(21, 192, 232, 0.6);
        box-shadow: 0 0 0 10px rgba(21, 192, 232, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(21, 192, 232, 0.1);
        box-shadow: 0 0 0 20px rgba(21, 192, 232, 0.1);
    }
}

@keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(21, 192, 232, 0.5);
        box-shadow: 0 0 0 0 rgba(21, 192, 232, 0.5);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(21, 192, 232, 0.6);
        box-shadow: 0 0 0 10px rgba(21, 192, 232, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(21, 192, 232, 0.1);
        box-shadow: 0 0 0 20px rgba(21, 192, 232, 0.1);
    }
}

.pulse-icon-2 {
    -webkit-animation: ripple-white 2s infinite;
    animation: ripple-white 2s infinite;
}

.pulse-icon-2:hover {
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.pulse {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.pulse:hover {
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--main-color-one);
        -moz-box-shadow: 0 0 0 0 var(--main-color-one);
        box-shadow: 0 0 0 0 var(--main-color-one);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(89, 211, 248, 0.7);
        -moz-box-shadow: 0 0 0 10px rgba(89, 211, 248, 0.7);
        box-shadow: 0 0 0 10px rgba(89, 211, 248, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(89, 211, 248, 0.3);
        -moz-box-shadow: 0 0 0 20px rgba(89, 211, 248, 0.3);
        box-shadow: 0 0 0 20px rgba(89, 211, 248, 0.1);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--main-color-one);
        -moz-box-shadow: 0 0 0 0 var(--main-color-one);
        box-shadow: 0 0 0 0 var(--main-color-one);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(89, 211, 248, 0.7);
        -moz-box-shadow: 0 0 0 10px rgba(89, 211, 248, 0.7);
        box-shadow: 0 0 0 10px rgba(89, 211, 248, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(89, 211, 248, 0.3);
        -moz-box-shadow: 0 0 0 20px rgba(89, 211, 248, 0.3);
        box-shadow: 0 0 0 20px rgba(89, 211, 248, 0.1);
    }
}

.white-pulse {
    -webkit-animation: white-pulse 2s infinite;
    animation: white-pulse 2s infinite;
}

.white-pulse:hover {
    -webkit-animation: none;
    animation: none;
}

@-webkit-keyframes white-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--white);
        -moz-box-shadow: 0 0 0 0 var(--white);
        box-shadow: 0 0 0 0 var(--white);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.7);
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@keyframes white-pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--white);
        -moz-box-shadow: 0 0 0 0 var(--white);
        box-shadow: 0 0 0 0 var(--white);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.7);
        -moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@-webkit-keyframes animatedBackground {
    0% {
        left: 14%;
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
        left: 10%;
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1);
    }
}

@keyframes animatedBackground {
    0% {
        left: 14%;
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
    100% {
        left: 10%;
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 1, 1);
    }
}

@-webkit-keyframes animatebg {
    10%,
    90% {
        -webkit-transform: translate3d(-5px, -5px, 0);
        transform: translate3d(-5px, -5px, 0);
    }
    20%,
    80% {
        -webkit-transform: translate3d(5px, 5px, 0);
        transform: translate3d(5px, 5px, 0);
    }
    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, -4px, 0);
        transform: translate3d(-4px, -4px, 0);
    }
    40%,
    60% {
        -webkit-transform: translate3d(4px, 4px, 0);
        transform: translate3d(4px, 4px, 0);
    }
}

@keyframes animatebg {
    10%,
    90% {
        -webkit-transform: translate3d(-5px, -5px, 0);
        transform: translate3d(-5px, -5px, 0);
    }
    20%,
    80% {
        -webkit-transform: translate3d(5px, 5px, 0);
        transform: translate3d(5px, 5px, 0);
    }
    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-4px, -4px, 0);
        transform: translate3d(-4px, -4px, 0);
    }
    40%,
    60% {
        -webkit-transform: translate3d(4px, 4px, 0);
        transform: translate3d(4px, 4px, 0);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }
}

@media only screen and (max-width: 991px) {
    @-webkit-keyframes ripple-white {
        0% {
            -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
        }
        100% {
            -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
        }
    }
    @keyframes ripple-white {
        0% {
            -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5), 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5);
        }
        100% {
            -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
            box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5), 0 0 0 20px rgba(255, 255, 255, 0.5), 0 0 0 30px rgba(255, 255, 255, 0);
        }
    }
}


/*-----------------------------
    Accordion title
-----------------------------*/

.accordian-title .title {
    text-align: center;
    text-transform: capitalize;
}


/*-----------------------------
    Accordion title end
-----------------------------*/


/*-----------------------------
    Accordion Item
-----------------------------*/

.accordion-wrapper .card {
    border: 1px solid var(--bg-3);
    background-color: transparent;
    margin-bottom: 30px;
}

.accordion-wrapper .card .card-header {
    padding: 0;
    border: 1px solid #C0F1FC;
    background: #fff;
}

.accordion-wrapper .card .card-header a {
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #fff;
    padding: 14px 75px 14px 15px;
    cursor: pointer;
    position: relative;
    font-family: var(--primary-font);
    border: none !important;
    text-transform: capitalize;
    background: #15C0E8;
}

.accordion-wrapper .card .card-header a:after {
    position: absolute;
    right: 30px;
    top: 18px;
    content: "\f134";
    font-family: "Flaticon";
    font-size: 15px;
    font-weight: 700;
    border: 1px solid var(--light-black-10);
    border-radius: 50%;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--light-black-10);
}

.accordion-wrapper .card .card-header a[aria-expanded="false"] {
    background: #fff;
    color: var(--heading-color);
}

.accordion-wrapper .card .card-header a[aria-expanded="false"]:after {
    content: "\f108";
}

.accordion-wrapper .card .card-body {
    padding: 30px;
    border: 1px solid #C0F1FC;
    border-top: none;
}

.accordion-wrapper .card .card-body p {
    margin: 0;
}

.accordion-wrapper.offcanvas-accordion-area {
    padding: 30px 0;
}

.accordion-wrapper.offcanvas-accordion-area .card {
    background-color: transparent;
    border: none;
    border-top: 1px solid var(--light-black-10);
    border-radius: 0;
}

.accordion-wrapper.offcanvas-accordion-area .card+.card {
    margin-top: 5px;
}

.accordion-wrapper.offcanvas-accordion-area .card .card-header {
    padding: 0;
    border: none;
    background-color: transparent;
}

.accordion-wrapper.offcanvas-accordion-area .card .card-header a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--paragraph-color);
    padding: 5px 0;
    border: none !important;
    background-color: transparent;
}

.accordion-wrapper.offcanvas-accordion-area .card .card-header a:after {
    display: none;
}

.accordion-wrapper.offcanvas-accordion-area .card .card-body {
    background-color: transparent;
    padding: 0px 0 10px;
}

.accordion-wrapper.offcanvas-accordion-area .card .card-body .payment-way p {
    padding: 5px 0;
}


/*---------------------------------------
    ## Back Top
---------------------------------------*/

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 45px;
    width: 35px;
    height: 35px;
    background-color: var(--hover-color);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    z-index: 99;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}


/*-------------------------
    ## Preloader Css
---------------------------*/

.pre-wrap {
    position: fixed;
    content: "";
    -webkit-transform: translate(-100%, -240%);
    -ms-transform: translate(-100%, -240%);
    transform: translate(-100%, -240%);
    font-size: 62px;
}

.preloader-inner {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    background-color: rgba(2, 48, 71, 0.8);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.preloader-inner .cancel-preloader {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.preloader-inner .cancel-preloader a {
    background-color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
    color: var(--main-color-one);
    width: 200px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 30px;
    display: block;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.preloader-inner .cancel-preloader a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.spinner {
    margin: 120px auto;
    width: 60px;
    height: 60px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2s infinite linear;
    animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: var(--main-color-one);
    border-radius: 100%;
    -webkit-animation: sk-bounce 2s infinite ease-in-out;
    animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {
    0%,
    100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


/*----------------------------------------
  ## Search Popup
----------------------------------------*/

.search-popup.active {
    visibility: visible;
    opacity: 1;
}

.search-popup {
    min-width: 415px;
    position: fixed;
    top: 50%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 11;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search-popup .search-form .form-group .form-control {
    border: none;
    border-radius: 0px;
    height: 45px;
    padding: 0 100px 0 30px;
    outline: none;
}

.search-popup .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-color: var(--main-color-one);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    padding: 0;
    text-align: center;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    border-left: 2px solid var(--heading-color);
    border-radius: 5px 0 0 5px;
}

.body-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(42, 40, 29, 0.7);
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.body-overlay.active {
    visibility: visible;
    opacity: 0.8;
}

.click-mobile-search {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 5;
    width: 100%;
    padding: 20px;
    background: var(--grey);
}

.floating-icon {
    display: none;
    right: 7%;
    background: var(--main-color-one);
    z-index: 9;
    text-align: center;
    color: var(--white);
    padding: 6px 3px;
    float: right;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 0 20px;
    margin-top: -80px;
    top: 130px;
}

.floating-icon i {
    background: var(--white);
    color: var(--main-color-one);
    font-size: 13px;
    height: 30px;
    width: 30px;
    display: inline-block;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.floating-icon i:hover {
    -webkit-box-shadow: 0 1px 3px #1a96b3;
    box-shadow: 0 1px 3px #1a96b3;
}

.floating-icon__is {
    padding: 8px 4px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 18px;
}

.floating-icon__is:hover {
    cursor: pointer;
}

.floating-icon.left-align {
    float: left;
    left: 7%;
}

.info-popup {
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(51, 63, 70, 0.9);
    position: fixed;
    opacity: 0;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.info-popup.active {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9999;
}

.info-popup-content {
    width: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

.info-popup-content.active {
    display: block;
}

.info-popup-content__img {
    width: 100%;
    height: 100%;
}

.info-popup-content__img--one {
    background: #dcf8ff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.info-popup-content__img {
    padding-bottom: 30px;
}

.info-popup-content__text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: var(--white);
}

.info-popup-content__text-header {
    margin-bottom: 30px;
}

.info-popup-content__text-body {
    margin-bottom: 30px;
}

.info-popup-content__text-body .divide {
    width: 50px;
    height: 1px;
    background: var(--paragraph-color);
    display: inline-block;
}

.info-popup-content__text-is {
    display: block;
    text-transform: capitalize;
}

.info-popup-content__title {
    margin-top: 0;
    margin-bottom: 0;
}

.info-popup-content_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--hover-color);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: var(--white);
    opacity: 1;
    z-index: 1;
}

.info-popup-content_close:hover {
    cursor: pointer;
}

.info-popup-content_close span {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#map-two {
    height: 100%;
}

#map-two iframe {
    height: 100%;
    width: 100%;
}

.location-popup {
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(51, 63, 70, 0.9);
    position: fixed;
    opacity: 0;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.location-popup.active {
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9999;
}

.location-popup-content {
    width: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

.location-popup-content.active {
    display: block;
}

.location-popup-content__img {
    padding-bottom: 30px;
}

.location-popup-content__text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: var(--white);
}

.location-popup-content__text-header {
    margin-bottom: 30px;
}

.location-popup-content__text-body {
    margin-bottom: 30px;
}

.location-popup-content__text-body .divide {
    width: 50px;
    height: 1px;
    background: var(--paragraph-color);
    display: inline-block;
}

.location-popup-content__text-is {
    display: block;
    text-transform: capitalize;
}

.location-popup-content__title {
    margin-top: 0;
    margin-bottom: 0;
}

.location-popup-content_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--main-color-one);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: var(--white);
    opacity: 1;
    z-index: 1;
}

.location-popup-content_close:hover {
    cursor: pointer;
}

.location-popup-content_close span {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.message-popup {
    height: 100%;
    width: 100%;
    display: none;
    background: rgba(51, 63, 70, 0.9);
    position: fixed;
    opacity: 0;
    cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==), progress;
}

.message-popup.active {
    opacity: 1;
    z-index: 9999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.message-popup-content {
    width: 50%;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

.message-popup-content.active {
    display: block;
}

.message-popup-content__img {
    width: 100%;
    height: 100%;
}

.message-popup-content__img--one {
    background: #dcf8ff;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.message-popup-content__text {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background: var(--white);
    padding-right: 40px;
}

.message-popup-content__text-header {
    margin-bottom: 30px;
}

.message-popup-content__text-body {
    margin-bottom: 30px;
}

.message-popup-content__text-body .divide {
    width: 50px;
    height: 1px;
    background: var(--paragraph-color);
    display: inline-block;
}

.message-popup-content__text-is {
    display: block;
    text-transform: capitalize;
}

.message-popup-content__title {
    margin-top: 0;
    margin-bottom: 0;
}

.message-popup-content_close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--hover-color);
    display: inline-block;
    border-radius: 30px;
    border: none;
    color: var(--white);
    opacity: 1;
    z-index: 1;
}

.message-popup-content_close:hover {
    cursor: pointer;
}

.message-popup-content_close span {
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popup-form {
    padding: 0 30px;
}

.popup-form .form-group .form-control {
    border-radius: 0;
    padding: 14px 10px;
    background-color: transparent;
    color: var(--main-color-one);
    font-size: 15px;
}

.popup-form .form-group input {
    border: none;
    border-bottom: 1px solid #aeaeae;
}

.popup-form .form-group input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
}

.popup-form .form-group textarea {
    border: none;
    border-bottom: 1px solid #aeaeae;
    resize: none;
}

.popup-form .form-group textarea:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.show-up-form-icons {
    bottom: -40px !important;
    opacity: 1 !important;
}

.login-modal {
    background: #011a4266;
}

.login-modal .modal-dialog {
    margin: 6rem auto;
}

.login-modal .modal-custom {
    max-width: 1170px;
}

.login-modal .modal-custom .modal-content {
    border-radius: 0px;
    width: 80%;
    margin: auto;
}

.login-modal .modal-custom .modal-content .close {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 1;
    color: var(--white);
    font-weight: 300;
    font-size: 12px;
    opacity: 1;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    background-color: var(--hover-color);
}

.login-modal .modal-custom .modal-content .close.style-2 {
    right: -30px;
}

.login-modal .modal-custom .modal-body {
    padding: 0;
}

.login-form {
    padding: 60px;
    text-align: center;
    margin: auto;
}

.login-form.forget-form {
    padding: 190px 220px;
}

.login-form.forget-form .form-group {
    margin-bottom: 30px;
}

.login-form.forget-form .form-group .form-control {
    padding: 14px 10px;
    font-size: 14px;
    background-color: transparent;
    color: var(--main-color-one);
    border: 1px solid #15c0e8;
    border-radius: 0 35px 0 0;
}

.login-form.forget-form .form-group:focus {
    border-bottom: 1px solid #c8c8c8;
}

.login-form.forget-form .forget-content .title {
    line-height: 60px;
    margin-bottom: 25px;
}

.login-form.forget-form .forget-content p {
    font-size: 20px;
    font-weight: 500;
    color: #606060;
    margin-bottom: 30px;
}

.login-form.forget-form .forget-content .para {
    color: var(--hover-color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
}

.login-form.forget-form .forget-content .para:after {
    content: "";
    background-color: var(--hover-color);
    width: 32px;
    height: 1px;
    left: 0;
    top: -15px;
    position: absolute;
}

.login-form.forget-form .return-btn {
    color: var(--hover-color);
    font-size: 14px;
}

.login-form.forget-form .return-btn span {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 5px;
}

.login-form .form-group {
    margin-bottom: 30px;
}

.login-form .form-group label {
    color: #263534;
    font-size: 20px;
    line-height: 30px;
}

.login-form .form-group .form-control {
    padding: 14px 10px;
    font-size: 14px;
    background-color: #fff;
    color: var(--main-color-one);
    border: 1px solid #15c0e8;
    border-radius: 0 35px 0 0;
    outline: none;
}

.social-icon.light-bg {
    background: #f4fbfd;
    padding: 50px;
}

.social-icon .social-share {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icon .social-share li {
    display: block;
    font-size: 20px;
    height: 40px;
    width: 300px;
    margin: 0 auto 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #edefee;
    color: #263534;
}

.social-icon .social-share li.fb {
    background: #3b5998;
    border: 1px solid #3b5998;
    color: #fff;
}

.social-icon .social-share li:last-child {
    margin-bottom: 0;
}

.social-icon .new-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social-icon .new-user a {
    color: var(--main-color-one);
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    margin-left: 10px;
}

.login-section {
    height: 100%;
}

.login-section.grd-bg {
    background: -webkit-linear-gradient(268deg, #15c0e8 0%, #dcf8ff 40%);
    background: -o-linear-gradient(268deg, #15c0e8 0%, #dcf8ff 40%);
    background: linear-gradient(182deg, #15c0e8 0%, #dcf8ff 40%);
}

.login-section.bg-grey {
    background: #d0f0f4;
}

.reg-section {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.reg-section .check-box {
    /* Create the checkmark/indicator (hidden when not checked) */
    /* Show the checkmark when checked */
}

.reg-section .check-box .container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #1d1d1d;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.reg-section .check-box .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.reg-section .check-box .container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid var(--hover-color);
    background-color: var(--hover-color);
}

.reg-section .check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 3px;
    width: 7px;
    height: 14px;
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.reg-section .check-box .container input:checked~.checkmark:after {
    display: block;
}

.reg-section.bg-grey {
    background: #bee5ff;
}

.login-back {
    padding: 60px;
    text-align: center;
}

.forget-btn {
    color: var(--main-color-one);
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}


/*---------------------------------------
    ## Button
---------------------------------------*/

.btn-wrapper {
    margin-top: 35px;
}

.btn-wrapper .boxed-btn {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    -o-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    border: none;
    height: 45px;
    min-width: 200px;
    color: var(--white);
    background: var(--main-color-one);
    cursor: pointer;
    display: inline-block;
    line-height: 45px;
    text-align: center;
}

.btn-wrapper .boxed-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hover-color);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.btn-wrapper .boxed-btn:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.btn-wrapper .boxed-btn.Proceed {
    min-width: 200px;
}

.btn-wrapper .no-border-btn {
    border: none;
    background: none;
    color: #15C0E8;
    cursor: pointer;
}

.section-title {
    text-align: center;
}

.section-title p {
    padding-top: 5px;
}

.pagination {
    float: right;
}

.pagination ul {
    padding-right: 15px;
}

.pagination ul li {
    margin-bottom: 0;
    display: inline-block;
}

.pagination ul li+li {
    margin-left: 10px;
}

.pagination ul li .page-numbers {
    border: 1px solid #d6d6d6;
    padding: 0 8px;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.pagination ul li .page-numbers:hover {
    background: #15c0e8;
    color: #fff;
    border: 1px solid #15c0e8;
}

.pagination ul li .current {
    background: #15c0e8;
    color: #fff;
    border: 1px solid #15c0e8;
}

.pagination.pagination-2 ul {
    padding: 0;
}

.pagination.pagination-2 ul li {
    margin: 0;
}

.slider-content-wrap {
    color: #fff;
}

.slider-content-wrap .sub-title {
    color: #fff;
}

.slider-content-wrap .title {
    color: #fff;
    padding: 20px 0 10px;
    font-size: 70px;
    line-height: 80px;
}

.slider-content-wrap p {
    color: #fff;
    max-width: 70%;
}

.slider-content-wrap .btn-with-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px;
}

.slider-content-wrap .btn-with-video .btn-wrapper {
    margin: 0;
    margin-right: 100px;
}

.showcase-follow-icon {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.showcase-follow-icon a {
    color: #fff;
    display: inline-block;
    margin-right: 10px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showcase-follow-icon a:hover {
    color: var(--main-color-one);
}

.showcase-follow-icon.right-align {
    right: 2.4%;
    left: inherit;
}

.showcase-follow-icon.left-align {
    left: 10%;
}

.pulse-icon {
    border-radius: 50%;
}

.pulse-icon a {
    color: #fff;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--main-color-one);
    border-radius: 50%;
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.pulse-icon-2 {
    border-radius: 50%;
}

.pulse-icon-2 a {
    color: #000;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--white);
    border-radius: 50%;
    display: block;
    font-weight: 700;
    font-size: 14px;
}

.qry-about {
    padding-top: 110px;
    padding-bottom: 120px;
}

.qry-about__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.qry-about__body-content {
    margin: auto;
    position: relative;
}

.qry-about__body-img {
    width: 100%;
}

.about__play,
.about__play-alt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    -webkit-box-shadow: 0 0 0 #fff;
    box-shadow: 0 0 0 #fff;
    -webkit-animation: about-play 2s infinite;
    animation: about-play 2s infinite;
}

.about__play:hover,
.about__play-alt:hover {
    -webkit-animation: none;
    animation: none;
}

.about__play-icon {
    color: #444;
    font-size: 16px;
}

.about__play-alt {
    width: 45px;
    height: 45px;
    -webkit-box-shadow: 0 0 0 #333;
    box-shadow: 0 0 0 #333;
    -webkit-animation: about-play-alt 2s infinite;
    animation: about-play-alt 2s infinite;
    background: #666;
}

@-webkit-keyframes about-play {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 0 0 #fff;
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@keyframes about-play {
    0% {
        -webkit-box-shadow: 0 0 0 0 #fff;
        box-shadow: 0 0 0 0 #fff;
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@-webkit-keyframes about-play-alt {
    0% {
        -webkit-box-shadow: 0 0 0 0 #666;
        box-shadow: 0 0 0 0 #666;
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(102, 102, 102, 0.6);
        box-shadow: 0 0 0 10px rgba(102, 102, 102, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(102, 102, 102, 0.1);
        box-shadow: 0 0 0 20px rgba(102, 102, 102, 0.1);
    }
}

@keyframes about-play-alt {
    0% {
        -webkit-box-shadow: 0 0 0 0 #666;
        box-shadow: 0 0 0 0 #666;
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(102, 102, 102, 0.6);
        box-shadow: 0 0 0 10px rgba(102, 102, 102, 0.6);
    }
    100% {
        -webkit-box-shadow: 0 0 0 20px rgba(102, 102, 102, 0.1);
        box-shadow: 0 0 0 20px rgba(102, 102, 102, 0.1);
    }
}

.team-item {
    text-align: center;
    margin-bottom: 30px;
}

.team-item .img-warpper {
    position: relative;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    overflow: hidden;
    display: inline-block;
}

.team-item .img-warpper .overlay {
    position: absolute;
    background: rgba(21, 192, 232, 0.6);
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.team-item .img-warpper .overlay .icon-wrap a {
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    line-height: 30px;
    color: var(--main-color-one);
}

.team-item .img-warpper:hover .overlay {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.team-item .title {
    margin-top: 30px;
}

.team-item p {
    max-width: 70%;
    margin: 0 auto;
}

.news-item {
    overflow: hidden;
    -webkit-box-shadow: 0 0px 5px #f4f4f4;
    box-shadow: 0 0px 5px #f4f4f4;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    background: #fff;
    margin-bottom: 30px;
}

.news-item .img-warpper img {
    width: 100%;
    height: 279px;
}

.news-item .content-wrap {
    padding: 20px;
}

.news-item .content-wrap .published-date {
    margin-bottom: 20px;
}

.news-item .content-wrap strong {
    color: #000;
}

.news-item .content-wrap .post-meta {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.news-item .content-wrap .post-meta li {
    list-style: none;
    padding-right: 20px;
}

.news-item .content-wrap .post-meta li i {
    color: var(--main-color-one);
    padding-right: 7px;
}

.news-item:hover {
    -webkit-box-shadow: 0 5px 10px #15c0e84d;
    box-shadow: 0 5px 10px #15c0e84d;
}

.news-item.style-2 .img-warpper {
    position: relative;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    overflow: hidden;
    margin: 0 auto;
}

.news-item.style-2 .img-warpper .overlay {
    position: absolute;
    background: rgba(38, 53, 52, 0.7);
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.news-item.style-2 .img-warpper .overlay .icon-wrap a {
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    line-height: 30px;
    color: var(--main-color-one);
    text-align: center;
    font-size: 12px;
}

.news-item.style-2 .img-warpper:hover .overlay {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.news-item.style-2 .content-wrap {
    padding: 35px 20px 40px;
}

.news-item.style-2 .content-wrap .news-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.news-item.style-2 .content-wrap .news-info .date-part {
    background: #15c0e8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25%;
    height: 120px;
}

.news-item.style-2 .content-wrap .news-info .date-part .post-date {
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.news-item.style-2 .content-wrap .news-info .info-part {
    margin-left: 30px;
    width: 75%;
}

.news-item.style-3 .img-warpper {
    position: relative;
    overflow: hidden;
}

.news-item.style-3 .img-warpper .overlay {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    background: rgba(21, 193, 232, 0.3);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.news-item.style-3 .img-warpper .overlay .icon-wrap a {
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 30px;
    color: #15c0e8;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.news-item.style-3 .img-warpper .overlay .icon-wrap a:hover {
    background: #15c0e8;
    color: #fff;
}

.news-item.style-3 .img-warpper .overlay.show-overly {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.news-item.style-3 .img-warpper:hover .overlay {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.news-item.style-3 .content-wrap .date-with-writter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news-item-2 {
    margin-bottom: 60px;
}

.news-item-2 .img-warpper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.news-item-2 .img-warpper .overlay {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100%;
    background: rgba(21, 193, 232, 0.5);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.news-item-2 .img-warpper .overlay .icon-wrap a {
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: block;
    text-align: center;
    line-height: 30px;
    color: #15c0e8;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.news-item-2 .img-warpper .overlay .icon-wrap a:hover {
    background: #15c0e8;
    color: #fff;
}

.news-item-2 .img-warpper .overlay.show-overly {
    background: rgba(38, 53, 52, 0.5);
    visibility: visible;
    opacity: 1;
    top: 0;
}

.news-item-2 .img-warpper:hover .overlay {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.news-item-2 .content-wrap .news-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
}

.news-item-2 .content-wrap .news-info .admin-with-date {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-item-2 .content-wrap .news-info .admin-with-date .admin-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news-item-2 .content-wrap .news-info .admin-with-date .admin-info .img-wrap {
    padding-right: 10px;
}

.news-item-2 .content-wrap .news-info .admin-with-date .admin-info .img-wrap img {
    border-radius: 50%;
}

.news-item-2 .content-wrap .news-info .admin-with-date .admin-info .admin h5 {
    color: #777777;
}

.news-item-2 .content-wrap .news-info .admin-with-date .admin-info .admin strong {
    color: #263534;
}

.news-item-2 .content-wrap .news-info .admin-with-date .date-part {
    padding-left: 25px;
}

.news-item-2 .content-wrap .news-info .admin-with-date .date-part strong {
    color: #263534;
}

.news-item-2 .content-wrap .news-info .post-meta {
    width: 50%;
    text-align: right;
    padding: 0;
}

.news-item-2 .content-wrap .news-info .post-meta li {
    display: inline-block;
}

.news-item-2 .content-wrap .news-info .post-meta li+li {
    margin-left: 20px;
}

.gallery-item {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-item .img-warpper {
    position: relative;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    overflow: hidden;
    margin: 0 auto;
    display: inline-block;
}

.gallery-item .img-warpper .overlay {
    position: absolute;
    background: rgba(38, 53, 52, 0.5);
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.gallery-item .img-warpper .overlay .icon-wrap a {
    height: 30px;
    width: 30px;
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    line-height: 30px;
    color: var(--main-color-one);
}

.gallery-item .img-warpper:hover .overlay {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.contact-from .form-group {
    margin-bottom: 30px;
}

.contact-from .form-group .form-control {
    border-radius: 0;
    width: 100%;
    border: 1px solid #E8E8E8;
    padding: 14px 10px;
    color: #919191;
    font-size: 15px;
}

.contact-from .form-group textarea {
    resize: none;
}

.contact-from .form-group textarea:focus {
    outline: 1px solid var(--main-color-one);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-from.style-2 {
    max-width: 500px;
}

.contact-from.style-2 .form-group .form-control {
    border: 1px solid #ECFBFF;
    padding: 10px;
}

.contact-from.style-3 {
    background: #F6F6F6;
    padding: 60px 30px;
}

.contact-from.style-3 .form-group .form-control {
    border: none;
    padding: 10px;
}

.info-box {
    text-align: center;
}

.info-box .pulse-icon {
    height: 35px;
    width: 35px;
    line-height: 35px;
    background: var(--main-color-one);
    color: var(--white);
    display: inline-block;
}

.info-box p {
    margin-top: 20px;
}

.animated-item {
    display: inline-block;
    position: absolute;
    left: 40%;
    bottom: 0%;
    z-index: 0;
}

.animated-item .animate-img {
    position: relative;
    padding: 20px;
    max-width: 120px;
    text-align: center;
}

.animated-item .animate-img img {
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}

.animated-item .animate-img::after {
    content: "";
    display: block;
    background-image: url("../img/technology/animated-bg3.svg");
    height: 100%;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
    background-size: contain;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
    z-index: -1;
}

.animated-item .animate-img.small-size {
    max-width: 80px;
}

.animated-item .animate-img.small-size-2 {
    max-width: 100px;
}

.animated-item.item-2 {
    left: 60%;
    bottom: 10%;
}

.animated-item.item-3 {
    left: 80%;
    bottom: 70%;
}

.animated-item.style-2 .animate-img::after {
    height: 135%;
    width: 135%;
    left: -24%;
    top: -12%;
    background-image: url("../img/news/animate-bg.svg");
}

.animated-img-box {
    display: inline-block;
    text-align: center;
}

.animated-img-box .img-wrap {
    display: inline-block;
    position: relative;
}

.animated-img-box .img-wrap img {
    border-radius: 50%;
}

.animated-img-box .img-wrap::before {
    display: block;
    content: "";
    height: 105%;
    width: 110%;
    background: #5ED4F0;
    position: absolute;
    z-index: -1;
    border-radius: 40%;
    left: -5%;
    top: -5%;
    -webkit-animation: animatebg 7s linear infinite;
    animation: animatebg 7s linear infinite;
}

.animated-img-box .img-wrap::after {
    display: block;
    content: "";
    height: 120%;
    width: 110%;
    background: rgba(94, 211, 240, 0.527);
    position: absolute;
    z-index: -1;
    border-radius: 45%;
    left: -5%;
    top: -10%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: animatebg 10s linear infinite;
    animation: animatebg 10s linear infinite;
}

.animated-img-box p {
    padding-top: 30px;
}

.animated-img-area-2 .animated-img-box-2 {
    position: relative;
    max-width: 350px;
    z-index: 1;
    display: inline-block;
}

.animated-img-area-2 .animated-img-box-2 img {
    border-radius: 50%;
}

.animated-img-area-2 .animated-img-box-2::before {
    content: "";
    display: block;
    height: 120%;
    width: 120%;
    background-image: url("../img/investor/animate1.png");
    z-index: -1;
    position: absolute;
    left: -10%;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    color: #1aabcf;
    -webkit-animation: none;
    animation: none;
    -webkit-animation: animatebg 10s linear infinite;
    animation: animatebg 10s linear infinite;
}

.animated-img-area-2 .animated-img-box-2::after {
    content: "";
    display: block;
    height: 140%;
    width: 140%;
    background-image: url("../img/investor/animate2.png");
    z-index: -2;
    position: absolute;
    left: -20%;
    top: -16%;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: none;
    animation: animatebg 15s linear infinite;
}


/* Hotspot */

#hotspotImg {
    margin: auto;
    position: relative;
}

#hotspotImg .hot-spot {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0px;
    left: -65px;
    text-align: center;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: ripple-white 2s infinite;
    animation: ripple-white 2s infinite;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#hotspotImg .hot-spot .tooltip {
    background-color: rgba(21, 193, 232, 0.8);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: none;
    opacity: 1;
    left: -170px;
    padding: 15px;
    position: absolute;
    bottom: 15px;
    width: 280px;
    z-index: 999;
}

#hotspotImg .hot-spot .tooltip .img-row {
    padding: 10px;
    text-align: center;
}

#hotspotImg .hot-spot .tooltip .text-row {
    text-align: center;
}

#hotspotImg .hot-spot .tooltip .text-row p {
    color: #fff;
}

#hotspotImg .hot-spot.item-2 {
    left: -365px;
    bottom: 0;
    top: inherit;
}

#hotspotImg .hot-spot.item-2 .tooltip {
    left: -210px;
    bottom: -195px;
    padding: 0;
    width: 380px;
}

#hotspotImg .hot-spot.item-2 .text-with-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#hotspotImg .hot-spot.item-2 .text-with-img img {
    width: 50%;
    height: auto;
}

#hotspotImg .hot-spot.item-2 .text-with-img p {
    width: 50%;
    color: #fff;
    padding: 15px;
}

.therapy-box {
    text-align: center;
    margin-bottom: 30px;
}

.therapy-box .icon-wrap {
    padding: 50px;
    position: relative;
    background-image: url("../img/therapy/icon-shape2.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.therapy-box .icon-wrap i {
    font-size: 40px;
    color: var(--heading-color);
}

.therapy-box .content-wrap {
    padding-top: 30px;
}

.therapy-box .content-wrap p {
    max-width: 80%;
    margin: auto;
}

.event-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #15c0e8;
}

.event-item .img-part {
    width: 50%;
    position: relative;
}

.event-item .img-part img {
    height: 100%;
    width: 100%;
}

.event-item .img-part .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(21, 192, 232, 0.9);
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.event-item .img-part .overlay .date-title {
    color: #fff;
    font-size: 100px;
    line-height: 120px;
    text-align: center;
    margin-bottom: 0;
}

.event-item .content-part {
    width: 50%;
    padding: 20px;
}

.event-item .content-part .event-meta {
    padding: 0;
    margin: 20px 0 10px;
}

.event-item .content-part .event-meta li {
    display: inline-block;
    margin-bottom: 0;
}

.event-item .content-part .event-meta li+li {
    margin-left: 20px;
}

.event-item .content-part .event-meta li i {
    color: #15c0e8;
}

.event-item .content-part .btn-wrapper {
    margin-top: 0;
}

.event-item.style-2 {
    border: none;
}

.career-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #a2edff;
    padding: 30px;
}

.career-item+.career-item {
    margin-top: 30px;
}

.career-item .description-part {
    width: 40%;
}

.career-item .description-part h5.title {
    margin-bottom: 20px;
}

.career-item .date-part {
    width: 40%;
    padding: 0 20px;
}

.career-item .date-part i {
    color: var(--main-color-one);
    margin-right: 5px;
}

.career-item .btn-wrapper {
    width: 20%;
    text-align: center;
    margin: 0;
}

.careet-meta ul {
    padding: 0;
}

.careet-meta ul li {
    list-style: none;
}

.careet-meta ul li i {
    color: var(--main-color-one);
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}

.star-ratings i {
    color: #AEAEAE;
    cursor: pointer;
}

.star-ratings.checked i {
    color: #15C0E8;
}

.product-sorting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.product-sorting .sorting-title .title {
    margin: 0;
    margin-right: 30px;
}

.product-sorting .select-option .nice-select {
    border-radius: 3px;
    border: solid 1px #AEAEAE;
    padding-right: 50px;
}

.product-sorting .select-option .nice-select::after {
    height: 10px;
    margin-top: -7px;
    width: 10px;
}

.product-single-item {
    margin-top: 30px;
    text-align: center;
}

.product-single-item .product-img {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 1px solid #EDEFEE;
}

.product-single-item .product-img .overlay {
    position: absolute;
    height: 100%;
    background: rgba(38, 53, 52, 0.5);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.product-single-item .product-img .overlay ul {
    padding: 0;
}

.product-single-item .product-img .overlay ul li {
    display: inline-block;
    list-style: none;
    color: #fff;
    border: 1px solid #fff;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.product-single-item .product-img .overlay ul li+li {
    margin-left: 15px;
}

.product-single-item .product-img .overlay ul li:hover {
    background: var(--main-color-one);
    border: 1px solid var(--main-color-one);
}

.product-single-item .product-img:hover .overlay {
    top: 0;
    visibility: visible;
    opacity: 1;
}

.single-product-description {
    padding: 20px 0;
}

.single-product-description .star-ratings i {
    color: #aeaeae;
    font-size: 14px;
}

.single-product-description .star-ratings.checked i {
    color: var(--main-color-one);
}

.single-product-description .price-box {
    padding-top: 10px;
}

.single-product-description .price-box .price {
    color: #777777;
    font-weight: 600;
}

.research-item {
    margin-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.research-item .img-wrap {
    width: 30%;
    margin-right: -90px;
    z-index: 1;
}

.research-item .content-part {
    background: #fff;
    padding: 60px 30px 60px 120px;
    width: 70%;
}


/*---------------------
    ## Breadcumb 
----------------------*/

.breadcrumb-area {
    padding: 80px 0;
    background-image: url("../img/breadcrumb/brd.png");
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}

.breadcrumb-area .breadcrumb-inner {
    background: rgba(21, 193, 232, 0.1);
    display: inline-block;
    padding: 40px 60px;
    min-width: 350px;
}

.breadcrumb-area .breadcrumb-inner .page-title {
    font-size: 48px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.breadcrumb-area .breadcrumb-inner .page-title.white-effect {
    color: #fff;
}

.breadcrumb-area .breadcrumb-inner.dark-blue {
    background: rgba(21, 193, 232, 0.4);
}

.breadcrumb-area .breadcrumb-inner.no-bg {
    background: none;
}

.breadcrumb-area .breadcrumb-inner.no-bg .page-title {
    color: #fff;
}

.breadcrumb-area .breadcrumb-inner.no-bg .page-list li {
    color: #fff;
}

.breadcrumb-area .page-list {
    margin: 0;
    padding: 0;
}

.breadcrumb-area .page-list li {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 20px;
    color: #263534;
}

.breadcrumb-area .page-list li:first-child {
    padding-left: 0;
}

.breadcrumb-area .page-list li:first-child:after {
    display: none;
}

.breadcrumb-area .page-list li:after {
    position: absolute;
    left: 5px;
    top: 0;
    content: "\f109";
    font-family: "flaticon";
    font-size: 14px;
    font-weight: 900;
}

.breadcrumb-area .page-list li a {
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.breadcrumb-area .page-list li a:hover {
    color: var(--black);
}

.breadcrumb-area .page-list.white-effect li {
    color: #fff;
}

.breadcrumb-area.about-area-breadcrumb {
    background-image: url("../img/breadcrumb/about/bg.png");
    background-position: right;
    position: relative;
    background-size: auto;
}

.breadcrumb-area.about-area-breadcrumb::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: url("../img/breadcrumb/about/shape.svg");
    top: 0;
    left: 0;
}

.breadcrumb-area.faq-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.4))), url("../img/breadcrumb/faq/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/faq/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/faq/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/faq/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.investor-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.4))), url("../img/breadcrumb/investor/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/investor/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/investor/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/investor/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.pipeline-area-breadcrumb {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/pipeline/bg.png");
    background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/pipeline/bg.png");
    background-image: -o-linear-gradient(left, rgba(255, 255, 255, 0.1), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/pipeline/bg.png");
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/pipeline/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.research-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/research-development/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/research-development/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/research-development/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/research-development/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.research-area-breadcrumb .breadcrumb-inner {
    background: rgba(22, 195, 233, 0.2);
}

.breadcrumb-area.research-details-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.3))), url("../img/breadcrumb/research-details/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.3)), url("../img/breadcrumb/research-details/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.3)), url("../img/breadcrumb/research-details/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.3)), url("../img/breadcrumb/research-details/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.team-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/team/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/team/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/team/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/team/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.career-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/career/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/career/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/career/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/career/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.partner-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.4))), url("../img/breadcrumb/partner/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/partner/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/partner/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.4)), url("../img/breadcrumb/partner/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.contact-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/contact/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/contact/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/contact/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/contact/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.checkout-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/checkout/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/checkout/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/checkout/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/checkout/bg.png");
    background-size: cover;
    position: relative;
}

.breadcrumb-area.shop-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.5))), url("../img/breadcrumb/shop/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.5)), url("../img/breadcrumb/shop/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.5)), url("../img/breadcrumb/shop/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.5)), url("../img/breadcrumb/shop/bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcrumb-area.shop-area-breadcrumb .breadcrumb-inner {
    background: rgba(255, 255, 255, 0.4);
}

.breadcrumb-area.news-area-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/news/bg2.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg2.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg2.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg2.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcrumb-area.news-area-1-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/news/bg.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.breadcrumb-area.news-area-2-breadcrumb {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0.322)), to(rgba(0, 167, 244, 0.2))), url("../img/breadcrumb/news/bg3.png");
    background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg3.png");
    background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg3.png");
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.322), rgba(0, 167, 244, 0.2)), url("../img/breadcrumb/news/bg3.png");
    background-size: cover;
    background-position: center;
    position: relative;
}


/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

.comments-area {
    margin-top: 30px;
}

.comments-area .comments-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 45px;
}

.comments-area .comment-list .comment-respond {
    margin-bottom: 30px;
}

.comments-area .comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
    margin-bottom: 20px;
}

.comments-area .comment-list li {
    margin-bottom: 30px;
}

.comments-area .comment-list li:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

.comments-area .comment-list li ul {
    list-style: none;
    margin-left: 95px;
    padding: 0;
}

.comments-area .comment-list li ul.children li {
    margin-left: 50px;
    list-style-type: none;
    list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
    margin-right: 20px;
    max-width: 80px;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
    border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
    display: block;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
    margin-left: 35px;
    position: relative;
}

.comments-area .comment-list li .single-comment-wrap .date::after,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--hover-color);
    left: -35px;
    top: 9px;
}

.comments-area .comment-list li .single-comment-wrap .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .top-part {
    background: #F2F2F2;
    padding: 20px 30px;
    margin-bottom: 10px;
}

.comments-area .comment-list li .single-comment-wrap .content .top-part .title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.comments-area .comment-list li .single-comment-wrap .content .top-part p {
    font-size: 14px;
    line-height: 26px;
    word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
    display: block;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.comments-area .comment-list li .single-comment-wrap .content .reply i {
    color: var(--main-color-one);
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
    color: var(--main-color-one);
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
    max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
    margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .view-reply {
    display: block;
    font-weight: 500;
    color: #5D5D5D;
    padding-bottom: 20px;
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}

.comments-area .comment-form {
    max-width: 500px;
}

.comments-area .form-submit {
    margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
    min-height: 160px;
    resize: none;
    line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.comment-form .form-group .form-control {
    height: 40px;
    border: none;
    border-radius: 0;
    background: #F2F2F2;
    color: #919191;
    font-size: 15px;
}

.comments-area .comment-list .children li:last-child {
    margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
    margin-top: 30px;
}

.comment-form-cookies-consent input[type=checkbox] {
    margin-right: 5px;
}


/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/

.widget {
    margin-bottom: 30px;
    padding: 25px 45px 30px 30px;
    background-color: var(--white) lite;
}

.widget.Dizzcox_testimonial_widget {
    background-color: var(--secondary-color);
}

.widget select {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
}

.widget .blog-widget-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 20px;
}

.widget.widget_calendar {
    padding-right: 24px;
    padding-left: 24px;
}

.widget.widget_nav_menu ul li.menu-item-has-children:after {
    display: none;
}

.widget.footer-widget .subscribe-form .form-group .form-control {
    background-color: var(--white);
    color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .form-group .form-control::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .form-group .form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--main-color-one);
}

.widget.footer-widget .subscribe-form .submit-btn:hover {
    background-color: var(--hover-color);
    color: var(--white);
}

.widget.footer-widget {
    background-color: transparent !important;
    padding: 0;
    margin-bottom: 30px;
}

.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget ul li ul {
    margin-left: 20px;
}

.widget ul li {
    display: block;
    margin: 8px 0;
    word-break: break-word;
}

.widget ul li:first-child {
    margin-top: 0px;
}

.widget ul li:last-child {
    margin-bottom: 0px;
}

.widget ul li a {
    color: inherit;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget ul li a:hover {
    color: var(--main-color-one);
}

.widget_search .search-form {
    position: relative;
}

.widget_search .search-form .form-group {
    margin-bottom: 0;
}

.widget_search .search-form .form-group .form-control {
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0 70px 0 25px;
    background-color: #bcbcbc;
    color: var(--white);
    border-radius: 0;
}

.widget_search .search-form .form-group .form-control::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--white);
}

.widget_search .search-form .form-group .form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--white);
}

.widget_search .search-form .form-group .form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--white);
}

.widget_search .search-form .form-group .form-control:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--white);
}

.widget_search .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    font-size: 14px;
    background-color: #bcbcbc;
    color: var(--white);
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    border: none;
    cursor: pointer;
}

.widget_search .search-form .submit-btn:hover {
    color: var(--white);
}

.widget_author_meta {
    text-align: center;
}

.widget_author_meta .thumb {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.widget_author_meta .thumb img {
    border-radius: 50%;
}

.widget_author_meta .content .name {
    font-size: 21px;
    font-weight: 700;
}

.widget_author_meta .content p {
    font-size: 16px;
    line-height: 26px;
}

.widget_author_meta .content ul {
    margin-top: 25px;
}

.widget_author_meta .content ul li {
    display: inline-block;
    margin: 0 5px;
}

.widget_author_meta .content ul li a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.widget_author_meta .content ul li a:hover {
    background-color: var(--main-color-one);
    color: var(--white);
}

.widget_tag_cloud .tagcloud a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 5px;
    color: inherit;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-radius: 5px;
    font-size: 16px !important;
}

.widget_tag_cloud .tagcloud a:hover {
    background-color: var(--main-color-one);
    color: var(--white);
}

.widget ul li ul.sub-menu {
    position: initial;
}

.widget ul li ul.sub-menu {
    visibility: visible;
    opacity: 1;
    background-color: transparent;
    border-top: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 10px;
}

.widget ul li ul.sub-menu li a {
    padding: 0 0 0px 10px;
}

.widget ul li ul.sub-menu li a:hover {
    background-color: transparent;
}

.widget.widget_nav_menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget.widget_nav_menu ul li:first-child {
    margin-top: 0;
}

.widget.widget_nav_menu ul li:last-child {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul li a {
    border: none;
}

.widget.widget_nav_menu ul li>ul {
    margin-left: 15px;
}

.widget_nav_menu .two-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.widget_nav_menu .two-part .left-part {
    width: 80%;
}

.widget_nav_menu .two-part .right-part {
    width: 50%;
}

.widget.footer-widget.widget_calendar table {
    margin-bottom: 0;
}

.widget.footer-widget.widget_calendar caption {
    padding-bottom: 0;
}

.footer-widget .widget-title {
    color: var(--white);
    margin-bottom: 20px;
}

.widget.footer-widget p,
.footer-widget.widget_tag_cloud .tagcloud a,
.widget.footer-widget.widget_calendar caption,
.widget.footer-widget.widget_calendar th,
.widget.footer-widget.widget_calendar td {
    color: #d9d9d9;
    font-size: 14px;
    font-weight: 400;
    max-width: 90%;
}

.widget.footer-widget ul li a,
.widget.footer-widget ul li {
    color: #d9d9d9;
    font-size: 14px;
    font-weight: 400;
}

.widget.footer-widget ul li a:hover {
    color: var(--hover-color);
}

.widget .social_share {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.widget .social_share li {
    width: calc(100% / 3);
    margin: 0;
    display: block;
    padding: 20px 0 12px 0;
    text-align: center;
    border-radius: 5px;
    color: var(--white);
}

.widget .social_share li i {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.widget .social_share li.facebook {
    background-color: #3b5999;
}

.widget .social_share li.twitter {
    background-color: #55acee;
}

.widget .social_share li.instagram {
    background-color: #e4405f;
}

.widget .social_share li a:hover {
    color: var(--white);
}

.widget .social_share li+li {
    margin-left: 10px;
}

.footer-widget .footer-icon a {
    color: var(--white);
    background: var(--main-color-one);
    height: 35px;
    width: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 15px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.footer-widget .footer-icon a:hover {
    background: var(--hover-color);
}

.footer-widget.white-effect .footer-icon a {
    color: var(--black);
    background: var(--white);
}

.footer-widget.white-effect .footer-icon a:hover {
    background: var(--main-color-one);
    color: #fff;
}

.widget .recent_post_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget .recent_post_item li {
    display: block;
}

.widget .recent_post_item li+li {
    margin-top: 20px;
}

.widget .recent_post_item li.single-recent-post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.widget .recent_post_item li.single-recent-post-item .thumb {
    width: 115px;
    height: 90px;
    margin-right: 15px;
}

.widget .recent_post_item li.single-recent-post-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.widget .recent_post_item li.single-recent-post-item .content .title {
    max-width: 80%;
}

.widget .related_products_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget .related_products_item li {
    display: block;
}

.widget .related_products_item li+li {
    margin-top: 20px;
}

.widget .related_products_item li.single-related_product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.widget .related_products_item li.single-related_product .thumb {
    width: 115px;
    margin-right: 20px;
    border: 1px solid #edefee;
    padding: 10px;
}

.widget .related_products_item li.single-related_product .content p {
    padding-top: 10px;
}

.widget .upcoming_event_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget .upcoming_event_item li {
    display: block;
}

.widget .upcoming_event_item li+li {
    margin-top: 30px;
}

.widget .upcoming_event_item li.single-upcoming-event-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.widget .upcoming_event_item li.single-upcoming-event-item .thumb {
    width: 115px;
    height: 90px;
    margin-right: 15px;
}

.widget .upcoming_event_item li.single-upcoming-event-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.widget .upcoming_event_item li.single-upcoming-event-item .content .title {
    max-width: 80%;
}

.widget .upcoming_event_item li.single-upcoming-event-item .content .date-with-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 80%;
}

.widget .upcoming_event_item li.single-upcoming-event-item.border-bottom {
    border-bottom: 1px dashed #d5d5d5 !important;
    padding-bottom: 30px;
}

.widget .recent_comment_item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.widget .recent_comment_item li {
    display: block;
}

.widget .recent_comment_item li+li {
    margin-top: 20px;
}

.widget .recent_comment_item li.single-recent-comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.widget .recent_comment_item li.single-recent-comment-item .thumb {
    width: 115px;
    height: 90px;
    margin-right: 15px;
}

.widget .recent_comment_item li.single-recent-comment-item .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.widget .recent_comment_item li.single-recent-comment-item .content .title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
}

.widget .recent_comment_item li.single-recent-comment-item .content .time {
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
}

.contact_info_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact_info_list li {
    display: block;
}

.contact_info_list li.single-info-item {
    position: relative;
    margin-bottom: 20px;
}

.contact_info_list li.single-info-item .icon {
    position: absolute;
    left: 0;
    top: 0;
}

.contact_info_list li.single-info-item .details {
    padding-left: 30px;
    max-width: 220px;
}

.about_us_widget .footer-logo {
    margin-bottom: 10px;
    display: block;
}

.sidebar_widget {
    background: none;
    border: 1px solid var(--bg-4);
    float: left;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
}

.sidebar_widget+.sidebar_widget {
    margin-top: 60px;
}

.sidebar_widget .widget-title {
    margin-bottom: 20px;
}

.sidebar_widget.border-bottom {
    border-bottom: 1px dashed #d5d5d5 !important;
    padding-bottom: 60px;
}

.sidebar_widget.widget_categories .active {
    color: var(--main-color-one);
}

.sidebar_widget.widget_categories.style-2 {
    border: 1px solid #f4f4f4;
}

.sidebar_widget.widget_categories.style-2 .widget-title {
    background: #f4f4f4;
    padding: 10px 30px;
}

.sidebar_widget.widget_categories.style-2 ul {
    padding: 15px 30px 30px;
}

.sidebar_widget.widget_filters+.widget_filters {
    margin-top: 45px;
}

.sidebar_widget.widget_filters .widget-title {
    margin-bottom: 23px;
}

.sidebar_widget.widget_filters .choose-option label {
    display: list-item;
    list-style: none;
}

.sidebar_widget.widget_filters .choose-option label input[type="checkbox"] {
    margin-right: 10px;
    outline: none;
}

.sidebar_widget.social_share_widget {
    margin-top: 45px;
}

.sidebar_widget .footer-icon a {
    color: var(--white);
    background: var(--main-color-one);
    height: 35px;
    width: 35px;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 15px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.sidebar_widget .footer-icon a:hover {
    background: var(--hover-color);
}

.sidebar_widget .search-form {
    position: relative;
}

.sidebar_widget .search-form .form-group {
    margin-bottom: 0;
}

.sidebar_widget .search-form .form-group .form-control {
    height: 50px;
    border: 1px solid var(--bg-3);
    padding: 0 120px 0 15px;
    background: #edefee;
    color: #000;
}

.sidebar_widget .search-form .form-group .form-control::-webkit-input-placeholder {
    color: #777777;
}

.sidebar_widget .search-form .form-group .form-control:-ms-input-placeholder {
    color: #777777;
}

.sidebar_widget .search-form .form-group .form-control::-ms-input-placeholder {
    color: #777777;
}

.sidebar_widget .search-form .form-group .form-control::placeholder {
    color: #777777;
}

.sidebar_widget .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    height: 50px;
    padding: 0;
    font-size: 18px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--main-color-one);
    color: #fff;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    border: none;
    cursor: pointer;
    outline: none;
}

.sidebar_widget .search-form .submit-btn i {
    font-weight: 700;
}

.sidebar_widget .search-form .submit-btn:hover,
.sidebar_widget .subscribe-form .submit-btn:hover {
    background-color: var(--hover-color);
}

.sidebar_widget .single-recent-post-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-4);
}

.sidebar_widget .single-recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: -15px;
}

.sidebar_widget .single-recent-post-item:first-child {
    padding-top: 2px;
}

.sidebar_widget .left-item {
    width: 50%;
    float: left;
    margin-top: 5px;
}

.sidebar_widget .right-item {
    width: 50%;
    float: left;
    margin-top: 5px;
}

.sidebar_widget.widget_nav_menu ul {
    margin-bottom: 5px;
}

.sidebar_widget.widget_nav_menu ul li {
    margin-bottom: 0;
    position: relative;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.sidebar_widget.widget_nav_menu ul li::after {
    content: "";
    background: var(--bg-4);
    position: absolute;
    height: 1px;
    width: 70%;
    left: 0;
    bottom: -4px;
}

.sidebar_widget.widget_nav_menu ul li:hover {
    color: var(--main-color-one);
}

.sidebar_widget.widget_nav_menu ul li.active {
    color: var(--main-color-one);
}

.sidebar_widget.widget_archive ul li {
    position: relative;
    margin-left: 40px;
    padding-bottom: 15px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    color: var(--paragraph-color);
    padding-top: 4px;
}

.sidebar_widget.widget_archive ul li::before {
    position: absolute;
    left: -40px;
    top: 5px;
    content: "\f073";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.sidebar_widget.widget_archive ul li:not(:last-child)::after {
    content: "";
    background: var(--bg-4);
    position: absolute;
    height: 1px;
    width: 100%;
    left: -40px;
    bottom: 5px;
}

.sidebar_widget.widget_archive ul li:last-child {
    padding-bottom: 0;
}

.sidebar_widget.widget_archive ul li:hover {
    color: var(--main-color);
}

.sidebar_widget .instagram-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 10px;
}

.sidebar_widget .instagram-images .img-wrapper {
    margin-right: 20px;
}

.sidebar_widget.banner_widget .img-wrapper {
    position: relative;
    display: inline-block;
}

.sidebar_widget.banner_widget .img-wrapper .overly {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
}

.sidebar_widget.banner_widget .img-wrapper .overly p {
    font-size: 45px;
}

.sidebar_widget.widget_cart p {
    margin-bottom: 0;
}

.sidebar_widget.banner_widget-2 .img-wrapper {
    position: relative;
    display: inline-block;
}

.sidebar_widget.banner_widget-2 .img-wrapper .overly {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: rgba(208, 240, 244, 0.571);
    padding-left: 50px;
}

.sidebar_widget.banner_widget-2 .img-wrapper .overly .btn-wrapper {
    margin: 0;
}

.sidebar_widget .follow-widget {
    padding: 0;
}

.sidebar_widget .follow-widget ul li {
    margin: 0;
    padding-top: 10px;
}

.sidebar_widget .follow-widget ul li a {
    background: transparent;
    margin: 0 10px;
    height: 35px;
    width: 35px;
    line-height: 35px;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.sidebar_widget .follow-widget ul li a i {
    color: var(--dark-white);
}

.sidebar_widget .follow-widget ul li a:hover {
    border: 1px solid var(--main-color);
}

.sidebar_widget .follow-widget ul li a:hover i {
    color: var(--main-color);
}

.sidebar_widget .follow-widget ul li a:first-child {
    margin-left: 0;
}

.sidebar_widget .subscribe-form {
    position: relative;
    margin-top: 27px;
}

.sidebar_widget .subscribe-form .form-group {
    margin-bottom: 0;
}

.sidebar_widget .subscribe-form .form-group .form-control {
    height: 50px;
    border: 1px solid #80dff5;
    padding: 0 100px 0 10px;
}

.sidebar_widget .subscribe-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 50px;
    padding: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: var(--main-color-one);
    color: #fff;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    border: none;
    cursor: pointer;
    font-family: var(--primary-font);
}

.sidebar_widget .subscribe-form .submit-btn:focus {
    outline: none;
}

.sidebar_widget .subscribe-form .submit-btn:hover {
    background-color: var(--hover-color);
}

.sidebar_widget .widget-product-sorting {
    padding-top: 15px;
}

.sidebar_widget .widget-product-sorting .slider-product-sorting {
    height: 3px;
    border-radius: 0;
    background: #e4e7eb;
    border: 0 !important;
    margin: 0 10px 25px 10px;
}

.sidebar_widget .widget-product-sorting .slider-product-sorting .ui-slider-range {
    background: var(--main-color);
}

.sidebar_widget .widget-product-sorting .slider-product-sorting .ui-slider-handle {
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--main-color);
    border: 0 !important;
    top: -4px;
    cursor: pointer;
}

.sidebar_widget .widget-product-sorting label,
.sidebar_widget .widget-product-sorting input {
    font-size: 15px;
    letter-spacing: 0.15px;
    color: var(--main-color);
    border: 0;
    background: transparent;
    margin-bottom: 0;
    line-height: 36px;
}

.sidebar_widget .widget-product-sorting label:focus,
.sidebar_widget .widget-product-sorting input:focus {
    border: 0;
}

.sidebar_widget .widget-product-sorting button {
    height: 35px;
    line-height: 37px;
    padding: 0 25px;
    background: var(--main-color);
    font-size: 14px;
    letter-spacing: 0.42px;
    color: var(--white);
    border: 0;
    border-radius: 30px;
    cursor: pointer;
}

.sidebar_widget .widget-product-sorting button:focus {
    outline: 0;
}

.sidebar_widget.widget_testimonial {
    text-align: center;
}

.sidebar_widget.widget_testimonial .img-wrap img {
    border-radius: 50%;
}

.sidebar_widget.widget_testimonial p {
    padding: 20px 0;
    max-width: 80%;
    margin: auto;
}

.sidebar_widget.widget_testimonial .follow-icon a {
    color: #000;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.sidebar_widget.widget_testimonial .follow-icon a+a {
    margin-left: 10px;
}

.sidebar_widget.widget_testimonial .follow-icon a:hover {
    color: var(--main-color-one);
}

.copyright-area {
    float: left;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: rgba(var(--white), 0.7);
}


/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/

.navbar.navbar-area.white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
    display: none;
}

.navbar-area {
    padding: 0;
    background: var(--heading-color);
}

.navbar-area.nav-absolute {
    position: absolute;
    background: transparent;
    left: 0;
    width: 100%;
    top: 0px;
    z-index: 1;
}

.navbar-area.transparent-bg {
    background: transparent;
}

.navbar-area.nav-style-01 {
    z-index: 1;
}

.navbar-area.nav-style-01 .responsive-mobile-menu {
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*----------------------------------
            Mobile Cross Menu
------------------------------------*/
}

.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 7px;
}

.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu .bar1,
.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu .bar2,
.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu .bar3 {
    width: 25px;
    height: 4px;
    background-color: #000;
    margin: 4px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: block;
    border-radius: 20px;
}

.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-4px, 6px);
    -ms-transform: rotate(-45deg) translate(-4px, 6px);
    transform: rotate(-45deg) translate(-4px, 6px);
}

.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu.change .bar2 {
    opacity: 0;
}

.navbar-area.nav-style-01 .responsive-mobile-menu .cross-menu.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-5px, -8px);
    -ms-transform: rotate(45deg) translate(-5px, -8px);
    transform: rotate(45deg) translate(-5px, -8px);
}

.navbar-area.nav-style-01 .responsive-mobile-menu .mobile-toggler {
    position: absolute;
    right: 70px;
    visibility: hidden;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    font-size: 22px;
    transform: translateY(-50%);
    color: var(--main-color-one);
    font-weight: 700;
}

.navbar-area.nav-style-01 .responsive-mobile-menu .mobile-toggler .user-account .user-close {
    display: none;
}

.navbar-area.nav-style-01 .responsive-mobile-menu .mobile-toggler .user-account.change .user-close {
    display: block;
}

.navbar-area.nav-style-01 .responsive-mobile-menu .mobile-toggler .user-account.change .user-icon {
    display: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.navbar-area.nav-style-01 .nav-container {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    max-width: 1135px;
    margin: 0 auto;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li {
    color: var(--white);
    cursor: pointer;
}

.navbar-area.nav-style-01 .nav-container .nav-right-content ul li:hover {
    color: var(--black);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    text-align: center;
    z-index: 2;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
    color: var(--main-color-one);
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    color: var(--white);
    text-transform: uppercase;
    display: inline-block;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: #fff;
}

.navbar-area .nav-container {
    -webkit-box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.navbar-area .nav-container .nav-right-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
    display: inline-block;
    margin-left: 35px;
    margin-bottom: 0;
    color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
    margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li:nth-child(1) {
    margin: 0;
}

.navbar-area .nav-container .nav-right-content ul li:nth-child(2) {
    margin: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.search {
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    background: var(--main-color-one);
    border-radius: 50%;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    font-weight: 700;
}

.navbar-area .nav-container .nav-right-content ul li.search:hover {
    color: var(--white);
    background: var(--hover-color);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 5px;
    background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
    background-color: var(--secondary-color);
}

.navbar-area .nav-container .navbar-brand .site-title {
    font-weight: 700;
    font-size: 30px;
    font-family: var(--heading-font);
    line-height: 40px;
    color: var(--heading-color);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    width: 100%;
    text-align: right;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: inline-block;
    line-height: 70px;
    margin-bottom: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 22px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
    position: relative;
    z-index: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: absolute;
    text-align: left;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    -webkit-box-shadow: 2px 7px 13px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 2px 7px 13px 0 rgba(0, 0, 0, 0.16);
    background-color: #d0f0f4;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 70px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.mega-menu {
    width: 800px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.mega-menu li {
    display: inline-block;
    width: 30.33%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.mega-menu li a {
    padding: 12px 30px 12px 30px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
    line-height: 15px;
    font-size: 15px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-left: 5px solid transparent;
    margin-bottom: 0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 12px 50px 12px 20px;
    white-space: nowrap;
    color: var(--paragraph-color);
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
    color: var(--main-color-one);
    background-color: var(--white);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-left: 5px solid var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.active-sub-menu {
    border-left: 5px solid var(--main-color-one);
    background-color: var(--white);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
    position: relative;
    z-index: 0;
    padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "\f107";
    font-family: Flaticon;
    font-style: normal;
    cursor: pointer;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    font-size: 14px;
    font-weight: 700;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before:hover {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
    left: auto;
    right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:before {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
    color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    color: var(--main-color-one);
}

.navbar-area.navbar-area-fixed {
    position: fixed;
    width: 100%;
    max-height: 300px;
    z-index: 99;
    background: transparent;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

@media only screen and (max-width: 991px) {
    /* .sm-text{display:none;} */
    .navbar-area {
        background: #fff;
        -webkit-box-shadow: 1px 0 1px #0000001c;
        box-shadow: 1px 0 1px #0000001c;
    }
    .navbar-area.nav-absolute {
        background: #fff;
    }
    .navbar-area.nav-style-01 {
        height: 229pxpx;
    }
    .navbar-area.nav-style-01 .nav-container {
        padding: 0 20px;
        position: relative;
    }
    .navbar-area.nav-style-01 .nav-container .nav-right-content {
        display: none;
    }
    .navbar-area.nav-style-01 .nav-container .mobile-toggler {
        visibility: visible;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse {
        position: absolute;
        top: 50px;
        right: 20px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
        float: right;
        min-width: 326px;
        right: 0;
        left: auto!important;
        top: 0!important;
        padding: 15px 0;
        background-color: var(--white);
        -webkit-box-shadow: 0px 0 5px #0000001f;
        box-shadow: 0px 0 5px #0000001f;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
        color: var(--hover-color);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.current-menu-item.menu-item-has-children:before {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
        z-index: initial;
        padding: 5px 0px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        position: absolute;
        right: 45px;
        top: 22px;
        font-size: 10px;
        content: "\f134";
        font-family: "flaticon";
        font-weight: 600;
        cursor: pointer;
        -ms-transform: translateY(-50%);
        /* IE 9 */
        -webkit-transform: translateY(-50%);
        /* Chrome, Safari, Opera */
        transform: translateY(-50%);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before:hover {
        color: var(--hover-color);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.mega-menu li {
        display: block;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu.mega-menu li a {
        padding: 8px 0px 8px 20px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
        background-color: transparent;
        color: var(--paragraph-color);
        padding: 8px 0px 8px 0px;
        font-size: 15px;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a:hover {
        color: var(--hover-color);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children::before {
        content: none;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:hover>.sub-menu li:hover:before {
        color: #656565;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        color: #fff;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover.menu-item-has-children:before {
        color: var(--main-color-one);
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a {
        color: var(--hover-color);
    }
    .navbar-area .nav-container .navbar-brand {
        display: block;
    }
    .navbar-area .nav-container .navbar-brand .navbar-toggler {
        position: absolute;
        right: 10px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav {
        display: block;
        margin-top: 76px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        display: block;
        text-align: left;
        line-height: 30px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
        border-bottom: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
        margin-left: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
        top: 25px;
        right: 20px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
        padding-bottom: 0;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
        visibility: visible;
        height: auto;
        opacity: 1;
        background-color: transparent;
        border-bottom: none;
        margin-left: 1.5rem;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
        position: initial;
        display: block;
        width: 100%;
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0;
        padding: 0;
        visibility: hidden;
        opacity: 0;
        height: 0;
        overflow: hidden;
        max-height: 250px;
        overflow-y: scroll;
        -webkit-transition: height 500ms;
        -moz-transition: height 500ms;
        -o-transition: height 500ms;
        transition: height 500ms;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
        padding: 0 15px;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
        top: 30px;
        color: var(--white);
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
        border-top: none;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li.active {
        background: #f7c052;
    }
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a,
    .navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.active a {
        width: 100%;
        padding: 10px 20px!important;
    }
    .navbar-area .nav-container .navbar-collapse .navbar-nav li {
        margin-left: 0;
    }
}


/*-------------------------
    Footer Area
-------------------------*/

.copyright-area {
    background-color: #1e2a29;
}

.copyright-area-inner .qry-copy {
    color: #fff;
    font-size: 0.8rem;
}

.copyright-area-inner .qry-copy i {
    color: var(--main-color-one);
}

.copyright-area-inner .qry-copy a {
    font-weight: 500;
}

.footer-area .footer-top {
    float: left;
    width: 100%;
    padding-top: 50px!important;
    background: #212529;
    /* background-image: url("../img/footer/bg1.png");
  background-size: cover;
  background-repeat: no-repeat;  */
}

.footer-area .footer-top.style-2 {
    background-image: url("../img/footer/bg2.svg");
}

.footer-area .footer-top.style-2 .footer-widget .widget-title {
    color: var(--heading-color);
}

.footer-area .footer-top.style-2 .widget.footer-widget p,
.footer-area .footer-top.style-2 .footer-widget.widget_tag_cloud .tagcloud a,
.footer-area .footer-top.style-2 .widget.footer-widget.widget_calendar caption,
.footer-area .footer-top.style-2 .widget.footer-widget.widget_calendar th,
.footer-area .footer-top.style-2 .widget.footer-widget.widget_calendar td {
    color: var(--paragraph-color);
}

.footer-area .footer-top.style-2 .widget.footer-widget ul li a,
.footer-area .footer-top.style-2 .widget.footer-widget ul li {
    color: var(--paragraph-color);
}

.footer-area .footer-top.style-2 .widget.footer-widget ul li a:hover {
    color: var(--hover-color);
}

.footer-area .footer-top.style-3 {
    background: #14262C;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .footer-logo {
    width: 140px;
    margin: auto;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .widget {
    margin-bottom: 0;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .widget .footer-link {
    margin-bottom: 10px;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .widget .footer-link li {
    display: inline-block;
    border-right: 1px solid;
    padding-right: 25px;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .widget .footer-link li+li {
    margin-left: 25px;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .widget .footer-link li a {
    font-size: 20px;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .widget .footer-link li:last-child {
    border: none;
    padding: 0;
}

.footer-area .footer-top.style-3 .footer-widget-content-wrapper .copyright-area-inner .qry-copy {
    color: rgba(239, 239, 239, 0.5);
}

.footer-area .footer-top.style-3.style-4 {
    background-image: url("../img/footer/bg3.svg");
    background-color: unset;
}

.footer-area .footer-top.style-3.style-4 .footer-icon a {
    color: var(--main-color-one);
}

.footer-area .footer-top.style-3.style-4 .footer-icon a:hover {
    color: #fff;
}

.showcase-area {
    background: url("../img/video-home-slider/main-bg.jpg");
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

.showcase-area .showcase-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url("../img/video-home-slider/overly-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.showcase-area .showcase-main {
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.showcase-area .showcase-main .content-part .showcase1-slider .showcase1-slider-item.slick-active .slider-content-wrap .sub-title {
    -webkit-animation: fadeInLeft 2s;
    animation: fadeInLeft 2s;
}

.showcase-area .showcase-main .content-part .showcase1-slider .showcase1-slider-item.slick-active .slider-content-wrap .title {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase-area .showcase-main .content-part .showcase1-slider .showcase1-slider-item.slick-active .slider-content-wrap p {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase-area .showcase-main .content-part .showcase1-slider .showcase1-slider-item.slick-active .btn-wrapper {
    -webkit-animation: slideInUp 2s;
    animation: slideInUp 2s;
}

.showcase-area .showcase-main .video-part .pulse-icon {
    display: inline-block;
}

.showcase-area .showcase-slider-controls {
    position: absolute;
    bottom: 55px;
    left: 6.7%;
    -ms-transform: translateX(-10.5%);
    -webkit-transform: translateX(-93.3%);
    transform: translateX(-93.3%);
}

.showcase-area button.slick-prev,
.showcase-area .slick-arrow {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #444;
    background: #ffffff;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showcase-area button.slick-prev:hover,
.showcase-area .slick-arrow:hover {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-color-one);
}

.showcase-area button.slick-prev {
    margin-right: 10px;
}

.showcase-area .slick-prev:before,
.showcase-area .slick-next:before {
    display: none;
}

.showcase-area .slick-prev {
    left: 0;
}

.showcase-area .slick-next {
    right: -100px;
}

.showcase-area .slick-list {
    overflow: visible;
}


/* ----------------------------------
		:: => About Us Section
---------------------------------- */

.about-us-area {
    background: url("../img/about/bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}

.about-us-area .img-wrap {
    position: relative;
    z-index: 0;
}

.about-us-area .img-wrap .main-img img {
    border-radius: 50%;
}

.about-us-area .img-wrap .animated-img {
    position: absolute;
    z-index: -1;
    top: -20px;
    -webkit-animation: animatedBackground 1s linear infinite alternate;
    animation: animatedBackground 1s linear infinite alternate;
}

.about-us-area .content-wrapper {
    position: relative;
}

.about-us-area .content-wrapper p {
    max-width: 80%;
}

.about-us-area .content-wrapper .animated-item {
    left: 90%;
    bottom: 35%;
}

.about-us-area .content-wrapper .animated-item.item-2 {
    left: 85%;
    bottom: 15%;
}

.about-us-area.style-2 {
    background: url("../img/about/bg2.svg");
    background-position: right top;
    background-repeat: no-repeat;
}

.about-us-area.style-2 .img-wrap {
    display: inline-block;
}

.about-us-area.style-2 .img-wrap img {
    border-radius: 50%;
}

.about-us-area.style-2 .img-wrap::before {
    content: "";
    position: absolute;
    height: 110%;
    width: 110%;
    left: -5%;
    top: -5%;
    background: #d4f3fb;
    z-index: -1;
    border-radius: 30%;
    -webkit-animation: animatebg 10s linear infinite;
    animation: animatebg 10s linear infinite;
}

.about-us-area.style-3 {
    background: url("../img/about/bg3.svg");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: contain;
}

.about-us-area.style-3 .img-wrap {
    background-image: url("../img/about/main4.png");
    background-repeat: no-repeat;
    display: inline-block;
}

.about-us-area.style-3 .img-wrap .video-part {
    position: absolute;
    top: 50%;
    left: 60%;
    -webkit-transform: translate(-60%, -40%);
    -ms-transform: translate(-60%, -40%);
    transform: translate(-40%, -50%);
}

.about-us-area.no-bg-style {
    background: unset;
}

.about-us-area.no-bg-style .img-wrap img {
    border-radius: 0 70px 0 0;
    -webkit-box-shadow: 0px 2px 15px #15c0e878;
    box-shadow: 0px 2px 15px #15c0e878;
}

.about-us-area.no-bg {
    background: none;
}


/* ----------------------------------
		:: => About Us Section
---------------------------------- */

.pipeline-area .img-wrap img {
    border-radius: 0 25% 0 0;
}

.pipeline-area .content-wrapper p {
    max-width: 80%;
}

.pipeline-area .content-wrapper.with-animated-item .animated-item {
    left: 70%;
    bottom: -5%;
}

.pipeline-area .content-wrapper.with-animated-item .animated-item.item-2 {
    left: 50%;
    bottom: 70%;
}

.pipeline-area .content-wrapper.with-animated-item .animated-item.item-3 {
    left: 80%;
    bottom: 70%;
}

.pipeline-area.style-2 .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    text-align: center;
}

.pipeline-area.style-2 .img-wrap img {
    border-radius: 50%;
}

.pipeline-area.style-2 .img-wrap::after {
    content: "";
    height: 130%;
    width: 120%;
    top: -10%;
    position: absolute;
    background-image: url("../img/pipeline/animated-bg.svg");
    left: 0;
    background-repeat: no-repeat;
    z-index: -1;
    -webkit-animation: animatedBackground 1s linear infinite alternate;
    animation: animatedBackground 1s linear infinite alternate;
}

.pipeline-area.style-2 .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.pipeline-area.style-2 .content-wrapper p {
    max-width: 70%;
}

.pipeline-area.style-2 .content-wrapper .animated-item {
    left: -20%;
    bottom: 70%;
}

.pipeline-area.style-2 .content-wrapper .animated-item.item-2 {
    left: 80%;
    bottom: 30%;
}

.pipeline-area.style-3 {
    background: unset;
}

.pipeline-area.style-3 .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    text-align: center;
}

.pipeline-area.style-3 .img-wrap img {
    border-radius: 50%;
}

.pipeline-area.style-3 .img-wrap::after {
    content: "";
    height: 110%;
    width: 120%;
    top: -5%;
    left: 0;
    position: absolute;
    background-image: url("../img/pipeline/bg3.svg");
    background-repeat: no-repeat;
    z-index: -1;
    -webkit-animation: animatedBackground 1s linear infinite alternate;
    animation: animatedBackground 1s linear infinite alternate;
}

.pipeline-area.style-3 .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.pipeline-area.style-3 .content-wrapper p {
    max-width: 70%;
}

.pipeline-area.style-3 .content-wrapper .animated-item {
    left: -20%;
    bottom: 70%;
}

.pipeline-area.style-3 .content-wrapper .animated-item .animate-img {
    position: relative;
    max-width: 120px;
    text-align: center;
}

.pipeline-area.style-3 .content-wrapper .animated-item .animate-img img {
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
}

.pipeline-area.style-3 .content-wrapper .animated-item .animate-img::after {
    content: "";
    display: block;
    background-image: url("../img/technology/animated-bg-5.svg");
    height: 100%;
    background-repeat: no-repeat;
    width: 100%;
    background-position: center;
    background-size: contain;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-animation: spin 5s linear infinite;
    animation: spin 5s linear infinite;
    z-index: -1;
}

.pipeline-area.style-3 .content-wrapper .animated-item.item-2 {
    left: 80%;
    bottom: 30%;
}

.product-table {
    position: relative;
}

.product-table table {
    width: 100%;
    -webkit-box-shadow: 2px 3px 8px #15c0e847;
    box-shadow: 2px 3px 8px #15c0e847;
}

.product-table table tr {
    padding: 10px 40px;
}

.product-table table tr th {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(21, 193, 232, 0.3);
}

.product-table table tr th:nth-child(1) {
    width: 15%;
}

.product-table table tr th:last-child {
    width: 37%;
}

.product-table table tr th.pre-clinical {
    width: 12%;
}

.product-table table tr th.phase {
    width: 12%;
}

.product-table table tr td {
    border: 1px solid rgba(21, 193, 232, 0.3);
    text-align: center;
    padding: 40px;
}

.product-table table tr td.progress-col {
    padding: 40px 0;
    text-align: left;
}

.product-table table tr td.progress-col p {
    padding-left: 20px;
}

.product-table table tr td.next-catalyst {
    text-align: left;
}

.product-table .animated-item {
    left: 30%;
    bottom: -18%;
}

.product-table .animated-item.item-2 {
    left: -4%;
    bottom: 78%;
}

.product-table .animated-item.item-3 {
    left: 80%;
    bottom: 100%;
}

.progress {
    background: #d0f2fa;
    height: 13px;
    border-radius: 0;
}

.progress .progress-bar {
    background-color: #15c0e8;
}

.meet-team-area {
    position: relative;
}

.meet-team-area .rel-cls {
    position: relative;
}

.meet-team-area .meet-team-slider-controls {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.meet-team-area .meet-team-slider-controls .slick-prev,
.meet-team-area .meet-team-slider-controls .slick-next {
    font-size: 40px;
    color: #777777;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.meet-team-area .meet-team-slider-controls .slick-prev:hover,
.meet-team-area .meet-team-slider-controls .slick-next:hover {
    color: #15c0e8;
}

.meet-team-area .meet-team-slider-controls .slick-prev {
    left: -45px;
}

.meet-team-area .meet-team-slider-controls .slick-prev::after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    top: -6px;
    left: 55%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border: 3px solid #15c0e8;
}

.meet-team-area .meet-team-slider-controls .slick-prev:hover::after {
    left: -40%;
    visibility: visible;
    opacity: 1;
}

.meet-team-area .meet-team-slider-controls .slick-next {
    right: -45px;
}

.meet-team-area .meet-team-slider-controls .slick-next::after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    top: -6px;
    left: 0%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border: 3px solid #15c0e8;
}

.meet-team-area .meet-team-slider-controls .slick-next:hover::after {
    left: 85%;
    visibility: visible;
    opacity: 1;
}

.meet-team-area .slick-dots li button:before {
    font-size: 15px;
    opacity: 0.3;
}

.meet-team-area .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--main-color-one);
}

.meet-team-area .slick-dots {
    bottom: -30px;
}

.meet-team-area .slick-prev:before,
.meet-team-area .slick-next:before {
    display: none;
}

.meet-team-area.style-2 {
    background: none;
}


/* ----------------------------------
		:: => About Us Section
---------------------------------- */

.Technologies-area .content-wrapper {
    position: relative;
}

.Technologies-area .content-wrapper .text-wrapper .sub-title {
    max-width: 80%;
    margin-bottom: 30px;
}

.Technologies-area .content-wrapper .text-wrapper p {
    max-width: 80%;
}

.Technologies-area .content-wrapper .animated-item {
    bottom: -10%;
}

.Technologies-area .content-wrapper .animated-item.item-2 {
    left: 60%;
    bottom: 5%;
}

.Technologies-area .content-wrapper .animated-item.item-3 {
    left: 85%;
    bottom: 80%;
}

.Technologies-area .animated-image-area .animated-img-box {
    position: absolute;
    left: 5%;
    top: 35%;
    z-index: 1;
}

.Technologies-area .animated-image-area .animated-img-box.item-2 {
    left: 45%;
    top: 7%;
}

.Technologies-area .animated-image-area .animated-img-box.item-3 {
    left: 38%;
    top: 52%;
}

.Technologies-area.style-2 .img-wrap img {
    border-radius: 0 70px 0 0;
}

.Technologies-area.style-2 .text-wrapper .sub-title {
    max-width: 90%;
}

.Technologies-area.style-2 .text-wrapper p {
    max-width: 90%;
}

.Technologies-area.with-bg {
    background-image: url("../img/technology/bg3.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 40%;
}

.news-area {
    position: relative;
}

.news-area .animated-item {
    left: 13%;
    bottom: 20%;
}

.news-area .animated-item.item-2 {
    left: 80%;
    bottom: 70%;
}

.news-area .slick-dots li button:before {
    font-size: 15px;
    opacity: 0.3;
}

.news-area .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--main-color-one);
}

.news-area .slick-dots {
    bottom: -30px;
}

.news-area .slick-prev:before,
.news-area .slick-next:before {
    display: none;
}

.news-area .slick-list {
    padding: 0 0 10px;
}

.news-area .slick-prev,
.news-area .slick-next {
    font-size: 40px;
    color: #777777;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.news-area .slick-prev:hover,
.news-area .slick-next:hover {
    color: #15c0e8;
}

.news-area .slick-prev {
    left: -80px;
}

.news-area .slick-prev::after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    top: -6px;
    left: 55%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border: 3px solid #15c0e8;
}

.news-area .slick-prev:hover::after {
    left: -40%;
    visibility: visible;
    opacity: 1;
}

.news-area .slick-next {
    right: -60px;
}

.news-area .slick-next::after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    top: -6px;
    left: 0%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border: 3px solid #15c0e8;
}

.news-area .slick-next:hover::after {
    left: 85%;
    visibility: visible;
    opacity: 1;
}

.tab-area .news-filter {
    position: relative;
    z-index: 0;
}

.tab-area .news-filter .animated-item {
    left: 18%;
    bottom: 97%;
}

.tab-area .news-filter .animated-item.item-2 {
    left: 10%;
    bottom: -100px;
}

.tab-area .news-filter.home4-news-filter .animated-item {
    left: 80%;
    bottom: 96%;
}

.tab-area .news-filter.home4-news-filter .animated-item.item-2 {
    left: -12%;
    bottom: 10%;
}

.tab-area .news-filter.home4-news-filter .animated-item.item-3 {
    left: inherit;
    bottom: 70%;
    right: -10%;
}

.tab-area .element-item {
    position: relative;
    z-index: 1;
}

.tab-area .button-group {
    text-align: center;
}

.tab-area .button {
    display: inline-block;
    cursor: pointer;
    border: none;
    background: no-repeat;
    font-size: 20px;
    color: #777777;
    margin: 0 15px;
}

.tab-area .button:hover {
    color: var(--main-color-one);
}

.tab-area .button:active,
.tab-area .button.is-checked {
    color: var(--main-color-one);
}

.tab-area.team-area-2 {
    background-image: none;
}

.tab-area.news-area-2 {
    background-image: none;
}

.join-us-area .join-us-content {
    background-image: url("../img/career/main-bg.png");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 300px;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.join-us-area .join-us-content .left-bg {
    width: 50%;
    position: relative;
    height: 100%;
    z-index: 0;
}

.join-us-area .join-us-content .left-bg p {
    margin-top: 15px;
}

.join-us-area .join-us-content .left-bg.style-2 {
    position: relative;
}

.join-us-area .join-us-content .left-bg.style-2::after {
    content: "";
    height: 100%;
    width: 120%;
    background: #cdedfa;
    position: absolute;
    z-index: -1;
    -webkit-transform: skew(-5deg);
    -ms-transform: skew(-5deg);
    transform: skew(-5deg);
    left: -18%;
}

.join-us-area .join-us-content .btn-wrapper {
    width: 50%;
    margin-top: 0;
    text-align: center;
}

.join-us-area .join-us-content.team-area-join-us {
    background-image: url("../img/career/main-bg-4.png");
    background-size: cover;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.join-us-area .join-us-content.team-area-join-us .left-bg-2 {
    width: 50%;
}

.join-us-area .join-us-content.team-area-join-us .left-bg-2 p {
    color: #000;
}

.join-us-area .join-us-content.team-area-join-us::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(21, 193, 232, 0.2);
    z-index: -1;
    left: 0;
    top: 0;
}

.join-us-area .join-us-content.left-g-style {
    padding: 0;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.join-us-area .join-us-content.left-g-style .left-bg {
    width: 50%;
    position: relative;
    height: 100%;
    z-index: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.join-us-area .join-us-content.left-g-style .left-bg p {
    margin-top: 15px;
}

.join-us-area .join-us-content.left-g-style .left-bg::after {
    content: "";
    height: 100%;
    width: 140%;
    background: #edefee;
    position: absolute;
    z-index: -1;
    -webkit-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    transform: skew(-30deg);
    left: -18%;
    top: 0;
}

.join-us-area .join-us-content.left-g-style .left-bg.style-2 {
    position: relative;
}

.join-us-area .join-us-content.left-g-style .left-bg.style-2::after {
    content: "";
    height: 100%;
    width: 120%;
    background: #cdedfa;
    position: absolute;
    z-index: -1;
    -webkit-transform: skew(-5deg);
    -ms-transform: skew(-5deg);
    transform: skew(-5deg);
    left: -18%;
}

.join-us-area.style-2 .join-us-content {
    background-image: url("../img/career/main-bg2.png");
    background-size: cover;
    position: relative;
    z-index: 0;
}

.join-us-area.style-2 .join-us-content .left-bg-2 {
    width: 50%;
}

.join-us-area.style-2 .join-us-content .left-bg-2 .title {
    color: #fff;
    margin-bottom: 20px;
}

.join-us-area.style-2 .join-us-content .left-bg-2 p {
    color: #fff;
    font-size: 16px;
}

.join-us-area.style-2 .join-us-content .btn-wrapper {
    width: 50%;
    margin-top: 0;
    text-align: center;
}

.join-us-area.style-2 .join-us-content::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(38, 53, 52, 0.4);
    z-index: -1;
    left: 0;
    top: 0;
}

.join-us-area.style-2 .join-us-content.about-area-join {
    background-image: url("../img/career/main-bg-5.png");
    background-size: cover;
    position: relative;
}

.join-us-area.style-2 .join-us-content.about-area-join::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.join-us-area.style-2 .join-us-content.home-4-join-us-content {
    background-image: url("../img/career/main-bg-7.png");
    border-top-right-radius: 100px;
}

.join-us-area.style-2 .join-us-content.home-4-join-us-content::after {
    background: rgba(38, 53, 52, 0.6);
}

.join-us-area.blue-effect .join-us-content {
    background-image: url("../img/career/main-bg3.png");
    background-size: cover;
}

.join-us-area.blue-effect .join-us-content::after {
    background: rgba(21, 193, 232, 0.363);
}

.join-us-area.black-effect .join-us-content {
    background-image: url("../img/career/main-bg3.png");
    background-size: cover;
}

.join-us-area.black-effect .join-us-content::after {
    background: rgba(38, 53, 52, 0.3);
}

.join-us-area.black-effect .join-us-content .left-bg-2 {
    width: 50%;
}

.join-us-area.black-effect .join-us-content .subscribe-part {
    width: 50%;
}

.join-us-area.black-effect .join-us-content .subscribe-part .subscribe-form {
    position: relative;
    margin: 0 30px;
}

.join-us-area.black-effect .join-us-content .subscribe-part .subscribe-form .from-group .from-control {
    width: 100%;
    height: 45px;
    padding: 0 165px 0 15px;
}

.join-us-area.black-effect .join-us-content .subscribe-part .btn-wrapper {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: unset;
}

.join-us-area.black-effect.research-join-us-area .join-us-content {
    background-image: url("../img/career/main-bg-6.png");
    background-size: cover;
    border-radius: 0 100px 0 0;
}


/* ----------------------------------
		:: => About Us Section
---------------------------------- */

.contact-area .img-wrap img {
    border-radius: 0 25% 0 0;
}

.contact-area .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact-area .content-wrapper .contact-from {
    max-width: 600px;
}

.contact-area .content-wrapper .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-area .content-wrapper .address-wrap .info-box {
    padding: 10px;
}

.contact-info-area {
    background-image: url("../img/contact/bg.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
}

.contact-info-area .footer-widget {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contact-info-area .footer-widget .widget-title {
    color: #000;
}

.contact-info-area .border-left {
    border-left: 1px dashed #15c0e8 !important;
    padding-left: 80px;
}

.map-area {
    margin-bottom: -10px;
}

.contact-area-2 .content-wrapper {
    background: url("../img/contact/bg2.png");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.contact-area-2 .content-wrapper .img-wrap {
    width: 50%;
}

.contact-area-2 .content-wrapper .text-wrapper {
    width: 50%;
    background: rgba(21, 193, 232, 0.342);
    padding: 60px 60px 35px;
}

.contact-area-2 .content-wrapper .contact-from {
    max-width: 600px;
}

.contact-area-2 .content-wrapper .contact-from .form-group .form-control {
    border: none;
    outline: none;
}

.contact-area-2 .content-wrapper .address-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-area-2 .content-wrapper .address-wrap .info-box {
    padding: 10px;
}

.contact-area-2 .content-wrapper .address-wrap .info-box.white-effect .pulse-icon {
    color: #000;
    background: #fff;
    font-weight: 700;
}

.contact-area-2 .content-wrapper .address-wrap .info-box.white-effect p {
    color: #fff;
}

.contact-area-2 .content-wrapper .circle-img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.showcase2-area {
    background: url("../img/home2-slider/main.jpg");
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 750px;
    overflow: hidden;
}

.showcase2-area .showcase2-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.51);
}

.showcase2-area .showcase2-main {
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.showcase2-area .showcase2-main .content-part .showcase2-slider .showcase2-slider-item.slick-active .slider-content-wrap .sub-title {
    -webkit-animation: fadeInLeft 2s;
    animation: fadeInLeft 2s;
}

.showcase2-area .showcase2-main .content-part .showcase2-slider .showcase2-slider-item.slick-active .slider-content-wrap .title {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase2-area .showcase2-main .content-part .showcase2-slider .showcase2-slider-item.slick-active .slider-content-wrap p {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase2-area .showcase2-main .content-part .showcase2-slider .showcase2-slider-item.slick-active .slider-content-wrap .btn-with-video {
    -webkit-animation: slideInUp 2s;
    animation: slideInUp 2s;
}

.showcase2-area .showcase2-main .img-part .main-img {
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    width: 300px;
    height: 100vh;
    position: relative;
}

.showcase2-area .showcase2-main .img-part .main-img .border-img {
    margin: auto;
    position: relative;
}

.showcase2-area .showcase2-main .img-part .main-img .border-img img {
    height: 100%;
    width: 100%;
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase2-area .showcase2-main .img-part .main-img .border-img::before {
    content: "";
    height: 1px;
    width: 420px;
    background: #fff;
    position: absolute;
    top: -1px;
    z-index: 1;
    left: -60px;
}

.showcase2-area .showcase2-main .img-part .main-img .border-img::after {
    content: "";
    height: 1px;
    width: 420px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    z-index: 1;
    left: -60px;
}

.showcase2-area .showcase2-main .img-part .main-img #hotspotImg {
    height: 400px;
}

.showcase2-area .showcase-slider-controls {
    position: absolute;
    bottom: 57px;
    left: 6.7%;
    -ms-transform: translateX(-10.5%);
    -webkit-transform: translateX(-93.3%);
    transform: translateX(-93.3%);
}

.showcase2-area .showcase-slider-dot-controls {
    position: absolute;
    top: 55%;
    left: 2%;
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    transform: translateY(-55%);
}

.showcase2-area button.slick-prev,
.showcase2-area .slick-arrow {
    color: #dbdbdb;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    font-size: 40px;
}

.showcase2-area button.slick-prev:hover,
.showcase2-area .slick-arrow:hover {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-color-one);
}

.showcase2-area .slick-prev:before,
.showcase2-area .slick-next:before {
    display: none;
}

.showcase2-area .slick-prev {
    left: 0;
}

.showcase2-area .slick-prev::after {
    content: "";
    height: 30px;
    width: 30px;
    background: #15c0e885;
    position: absolute;
    border-radius: 50%;
    top: -5px;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showcase2-area .slick-prev:hover::after {
    left: -40%;
    visibility: visible;
    opacity: 1;
}

.showcase2-area .slick-next {
    right: -100px;
}

.showcase2-area .slick-next::after {
    content: "";
    height: 30px;
    width: 30px;
    background: #15c0e885;
    position: absolute;
    border-radius: 50%;
    top: -5px;
    left: 0%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showcase2-area .slick-next:hover::after {
    left: 100%;
    visibility: visible;
    opacity: 1;
}

.showcase2-area .slick-list {
    overflow: visible;
}

.showcase2-area .slick-dots li button:before {
    opacity: 1;
    font-size: 0;
    height: 10px;
    width: 10px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.showcase2-area .slick-dots li.slick-active button:before {
    opacity: 1;
    font-size: 0;
    height: 20px;
    width: 10px;
    background: var(--main-color-one);
    border-radius: 8px;
    text-align: center;
}

.showcase3-area {
    background: url("../img/home3-slider/bg.png");
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.showcase3-area .showcase3-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(38, 53, 52, 0.4);
}

.showcase3-area .showcase3-main {
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.showcase3-area .showcase3-main .content-part .showcase3-slider {
    margin-bottom: 0;
}

.showcase3-area .showcase3-main .content-part .showcase3-slider .showcase3-slider-item.slick-active .slider-content-wrap .sub-title {
    -webkit-animation: fadeInLeft 2s;
    animation: fadeInLeft 2s;
}

.showcase3-area .showcase3-main .content-part .showcase3-slider .showcase3-slider-item.slick-active .slider-content-wrap .title {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase3-area .showcase3-main .content-part .showcase3-slider .showcase3-slider-item.slick-active .slider-content-wrap p {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase3-area .showcase3-main .content-part .showcase3-slider .showcase3-slider-item.slick-active .slider-content-wrap .btn-with-video {
    -webkit-animation: slideInUp 2s;
    animation: slideInUp 2s;
}

.showcase3-area .showcase3-main .hotspot-part {
    position: relative;
}

.showcase3-area .showcase3-main .hotspot-part .video-part {
    position: absolute;
    left: 10%;
    top: 10%;
    z-index: 1;
}

.showcase3-area .showcase3-main .hotspot-part #hotspotImg {
    position: relative;
    height: 400px;
}

.showcase3-area .showcase3-main .hotspot-part #hotspotImg .hot-spot {
    position: absolute;
    right: 25%;
    bottom: 5%;
    left: inherit;
    top: inherit;
}

.showcase3-area .showcase3-main .hotspot-part #hotspotImg .hot-spot.item-2 {
    bottom: 20%;
    left: 30%;
}

.showcase3-area .showcase3-main .hotspot-part #hotspotImg .hot-spot.item-3 {
    bottom: 70%;
    left: 55%;
}

.showcase3-area .showcase-slider-controls {
    position: absolute;
    bottom: 57px;
    left: 6.7%;
    -webkit-transform: translateX(-93.3%);
    -ms-transform: translateX(-93.3%);
    transform: translateX(-93.3%);
}

.showcase3-area .showcase-slider-dot-controls {
    position: absolute;
    top: 55%;
    right: 8%;
    -webkit-transform: translateY(-55%);
    -ms-transform: translateY(-55%);
    transform: translateY(-55%);
}

.showcase3-area button.slick-prev,
.showcase3-area .slick-arrow {
    color: #dbdbdb;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    font-size: 40px;
}

.showcase3-area button.slick-prev:hover,
.showcase3-area .slick-arrow:hover {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--main-color-one);
}

.showcase3-area .slick-prev:before,
.showcase3-area .slick-next:before {
    display: none;
}

.showcase3-area .slick-prev {
    left: 0;
}

.showcase3-area .slick-prev::after {
    content: "";
    height: 30px;
    width: 30px;
    background: #15c0e885;
    position: absolute;
    border-radius: 50%;
    top: -5px;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showcase3-area .slick-prev:hover::after {
    left: -40%;
    visibility: visible;
    opacity: 1;
}

.showcase3-area .slick-next {
    right: -100px;
}

.showcase3-area .slick-next::after {
    content: "";
    height: 30px;
    width: 30px;
    background: #15c0e885;
    position: absolute;
    border-radius: 50%;
    top: -5px;
    left: 0%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.showcase3-area .slick-next:hover::after {
    left: 100%;
    visibility: visible;
    opacity: 1;
}

.showcase3-area .slick-dots li button:before {
    opacity: 1;
    font-size: 0;
    height: 10px;
    width: 10px;
    background: #fff;
    text-align: center;
}

.showcase3-area .slick-dots li.slick-active button:before {
    background: var(--main-color-one);
    border: 1px solid black;
    height: 12px;
    width: 12px;
}

.showcase4-area {
    background: url("../img/home4-slider/bg.png");
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.showcase4-area .showcase4-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(38, 53, 52, 0.4);
}

.showcase4-area .showcase4-main {
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.showcase4-area .showcase4-main .content-part .showcase4-slider .showcase4-slider-item.slick-active .slider-content-wrap .sub-title {
    -webkit-animation: fadeInLeft 2s;
    animation: fadeInLeft 2s;
}

.showcase4-area .showcase4-main .content-part .showcase4-slider .showcase4-slider-item.slick-active .slider-content-wrap .title {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase4-area .showcase4-main .content-part .showcase4-slider .showcase4-slider-item.slick-active .slider-content-wrap p {
    -webkit-animation: zoomIn 2s;
    animation: zoomIn 2s;
}

.showcase4-area .showcase4-main .content-part .showcase4-slider .showcase4-slider-item.slick-active .slider-content-wrap .btn-with-video {
    -webkit-animation: slideInUp 2s;
    animation: slideInUp 2s;
}

.showcase4-area .showcase4-main .img-part .img-wrap {
    position: relative;
    display: inline-block;
}

.showcase4-area .showcase4-main .img-part .img-wrap #hotspotImg {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 100%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.showcase4-area .showcase4-main .img-part .img-wrap #hotspotImg .hot-spot {
    position: absolute;
    left: 2%;
    top: 66%;
}

.showcase4-area .showcase4-main .img-part .img-wrap #hotspotImg .hot-spot.item-2 {
    top: 18%;
    left: 30%;
}

.showcase4-area .showcase4-main .img-part .img-wrap #hotspotImg .hot-spot.item-3 {
    top: 58%;
    left: 65%;
}

.showcase4-area .showcase-slider-dot-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -moz-transform: rotate(-90deg) translateX(-50%);
    -webkit-transform: rotate(-90deg) translateX(-50%);
    -o-transform: rotate(-90deg) translateX(-50%);
    -ms-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
}

.showcase4-area .slick-dots li button:before {
    opacity: 1;
    font-size: 0;
    height: 8px;
    width: 8px;
    background: #fff;
    border-radius: 50%;
}

.showcase4-area .slick-dots li.slick-active button:before {
    background: transparent;
    border: 2px solid #fff;
    height: 12px;
    width: 12px;
    top: 10px;
    left: 8px;
}

.showcase4-area .slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.client-area .client-slider {
    padding: 0 50px;
}

.client-area .client-slider .client-item {
    margin: 0 20px;
    border: 1px solid #eeeeee57;
}

.client-area .client-slider .client-item img {
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.client-area .client-slider .client-item img:hover {
    -webkit-transform: scale(1.1) rotate(10deg);
    -ms-transform: scale(1.1) rotate(10deg);
    transform: scale(1.1) rotate(10deg);
}

.client-area .client-slider .slick-prev,
.client-area .client-slider .slick-next {
    font-size: 40px;
    color: #777777;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    top: 55%;
}

.client-area .client-slider .slick-prev:hover,
.client-area .client-slider .slick-next:hover {
    color: #15c0e8;
}

.client-area .client-slider .slick-prev {
    left: -5px;
}

.client-area .client-slider .slick-prev::after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    top: -12px;
    left: 29px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border: 3px solid #15c0e8;
}

.client-area .client-slider .slick-prev:hover::after {
    left: 10px;
    visibility: visible;
    opacity: 1;
}

.client-area .client-slider .slick-next {
    right: 57px;
}

.client-area .client-slider .slick-next::after {
    content: "";
    height: 32px;
    width: 32px;
    position: absolute;
    border-radius: 50%;
    top: -12px;
    left: 17px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border: 3px solid #15c0e8;
}

.client-area .client-slider .slick-next:hover::after {
    left: 37px;
    visibility: visible;
    opacity: 1;
}


/*----------------------
    Counterup Area
-----------------------*/

.counterup-area .single-counter-item {
    text-align: center;
    margin-bottom: 30px;
}

.counterup-area .single-counter-item .count-icon {
    font-size: 40px;
    color: var(--white);
    background: var(--main-color-one);
    height: 90px;
    width: 90px;
    display: inline-block;
    border-radius: 50%;
    line-height: 90px;
    -webkit-box-shadow: 0 0 8px #38d9ffc7;
    box-shadow: 0 0 8px #38d9ffc7;
}

.counterup-area .single-counter-item .count-num {
    font-size: 40px;
    line-height: 50px;
    color: black;
    font-weight: 600;
    margin-top: 10px;
    padding: 10px 0;
    background-image: url("../img/about/counter-bg.png");
    background-repeat: no-repeat;
    background-position: center;
}

.counterup-area .single-counter-item .count-num.plus::after {
    content: "+";
    font-size: 40px;
    color: black;
    font-weight: 600;
}

.counterup-area .single-counter-item .title {
    color: #777777;
    font-family: var(--body-font);
}

.vision-area .img-part {
    position: relative;
}

.vision-area .img-part .animated-item {
    left: 40%;
    top: -20%;
}

.vision-area .img-part .animated-item.item-2 {
    left: 20%;
    bottom: -20%;
    top: inherit;
}

.vision-area .content-part {
    background: #fafeff;
    height: 100%;
    padding: 60px;
    z-index: -1;
    position: relative;
}

.vision-area .content-part .animated-item {
    left: 30%;
    top: -20%;
}

.vision-area .content-part .animated-item.item-2 {
    left: 60%;
    top: -20%;
}

.vision-item+.vision-item {
    margin-top: 30px;
}

.vision-item .title {
    margin-bottom: 15px;
}

.vision-item p {
    margin-bottom: 0;
}


/* ----------------------------------
		:: => About Us Section
---------------------------------- */

.focus-area {
    background: url("../img/focus/bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
}

.focus-area .img-wrap img {
    border-radius: 0 70px 0 0;
}

.focus-area .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.focus-area .content-wrapper p {
    max-width: 70%;
}

.approach-area {
    background-image: url("../img/approach/bg.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.approach-area .animated-img-box {
    margin-bottom: 30px;
}

.approach-area .animated-img-box p {
    padding-top: 35px;
}

.subscribe-area .subscribe-form {
    position: relative;
}

.subscribe-area .subscribe-form .form-group {
    margin-bottom: 0;
}

.subscribe-area .subscribe-form .form-group .form-control {
    display: block;
    width: 100%;
    height: 70px;
    color: #000;
    border: 1px solid #dfdfdf;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    padding-right: 220px;
    padding-left: 35px;
}

.subscribe-area .subscribe-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 200px;
    height: 70px;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.subscribe-area .subscribe-form .btn-wrapper {
    margin-top: 0;
}

.partner-logo-area .img-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.partner-logo-area .img-wrap img {
    border: 1px solid #CFCFCF;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.partner-logo-area .img-wrap img:hover {
    background: #CFCFCF;
}

.blog-details .content-wrap .news-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0 40px;
}

.blog-details .content-wrap .news-info .admin-with-date {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details .content-wrap .news-info .admin-with-date .admin-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details .content-wrap .news-info .admin-with-date .admin-info .img-wrap img {
    border-radius: 50%;
    margin-right: 10px;
}

.blog-details .content-wrap .news-info .admin-with-date .admin-info .admin h5 {
    color: #777777;
    margin-bottom: 0;
}

.blog-details .content-wrap .news-info .admin-with-date .admin-info .admin strong {
    color: #263534;
}

.blog-details .content-wrap .news-info .admin-with-date .date-part {
    padding-left: 25px;
}

.blog-details .content-wrap .news-info .admin-with-date .date-part strong {
    color: #263534;
}

.blog-details .content-wrap .news-info .admin-with-date .date-part p {
    margin-bottom: 0;
}

.blog-details .content-wrap .news-info .post-meta {
    width: 50%;
    text-align: right;
    padding: 0;
}

.blog-details .content-wrap .news-info .post-meta li {
    display: inline-block;
    margin-bottom: 0;
}

.blog-details .content-wrap .news-info .post-meta li+li {
    margin-left: 20px;
}

.blog-details .content-wrap .post-quote {
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details .content-wrap .post-quote h4 {
    margin: 0 30px;
    font-size: 30px;
    font-weight: 400;
    font-family: var(--body-font);
}

.blog-details .content-wrap .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details .content-wrap .img-box .img-warpper+.img-warpper {
    margin-left: 30px;
}

.blog-details .content-wrap .img-box .img-warpper img {
    -webkit-box-shadow: 0 2px 14px #bbf2ff4d;
    box-shadow: 0 2px 14px #bbf2ff4d;
}

.blog-details .content-wrap .img-text-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.blog-details .content-wrap .img-text-box .img-warpper {
    width: 30%;
}

.blog-details .content-wrap .img-text-box .text-box {
    width: 70%;
    margin-left: 30px;
}

.blog-details .blog-details-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #BFBFBF;
    padding: 50px 0;
}

.blog-details .blog-details-footer .half-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-details .blog-details-footer .half-part h5 {
    margin: 0;
    color: #777777;
    margin-right: 15px;
}

.blog-details .blog-details-footer .half-part .follow-icon a {
    color: #777777;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.blog-details .blog-details-footer .half-part .follow-icon a+a {
    margin-left: 10px;
}

.blog-details .blog-details-footer .half-part .follow-icon a:hover {
    color: var(--main-color-one);
}

.blog-details .blog-details-footer .half-part .follow-icon a.active {
    color: var(--main-color-one);
}

.blog-details .pagination-part {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #15C0E8;
    padding: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog-details .pagination-part .prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details .pagination-part .prev .img-part {
    margin-right: 20px;
}

.blog-details .pagination-part .next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.blog-details .pagination-part .next .img-part {
    margin-left: 20px;
}

.blog-details .pagination-part a {
    color: #263534;
}

.blog-details .news-item .content-wrap .title {
    margin-bottom: 0;
}

.career-search-area .search-form {
    max-width: 400px;
    margin: 0 auto 60px;
    position: relative;
}

.career-search-area .search-form .form-group .form-control {
    height: 50px;
    padding-right: 70px;
}

.career-search-area .search-form .submit-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    border: none;
    background: none;
    width: 60px;
    color: #777777;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.career-search-area .search-form .submit-btn:hover {
    background: var(--main-color-one);
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.career-search-result-area {
    background-image: url("../img/career/bg.svg");
    background-repeat: no-repeat;
    background-position: left top;
}

.career-search-result-area .career-item {
    border: none;
    padding: 0;
    position: relative;
}

.career-search-result-area .career-item .description-part {
    width: 70%;
}

.career-search-result-area .career-item .btn-wrapper {
    width: 30%;
    text-align: left;
}

.career-search-result-area .career-item .animated-item {
    left: 65%;
    bottom: 100%;
}

.career-search-result-area .career-item .animated-item.item-2 {
    left: 60%;
    bottom: 10%;
}

.career-search-result-area .career-item .animated-item.item-3 {
    left: 80%;
    bottom: 70%;
}

.career-search-result-area .sidebar_widget.box-shadow {
    -webkit-box-shadow: 0 1px 5px #15c0e8b5;
    box-shadow: 0 1px 5px #15c0e8b5;
    padding: 30px;
}

.career-search-result-area .sidebar_widget.widget_subscribe .subscribe-form {
    max-width: 400px;
}

.research-diasease-area .research-diasease .img-wrap img {
    border-radius: 15% 0 0 0;
    -webkit-box-shadow: 0 2px 10px #15c0e873;
    box-shadow: 0 2px 10px #15c0e873;
}

.research-diasease-area .research-diasease .content-wrap {
    position: relative;
}

.research-diasease-area .research-diasease .content-wrap .sub-title {
    padding: 10px 0;
}

.research-diasease-area .research-diasease .content-wrap ul {
    padding: 0;
}

.research-diasease-area .research-diasease .content-wrap ul li {
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.research-diasease-area .research-diasease .content-wrap ul li:after {
    height: 10px;
    width: 10px;
    background: #777777;
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    border-radius: 50%;
}

.research-diasease-area .research-diasease .content-wrap .animated-item {
    left: 80%;
    bottom: 5%;
}

.research-diasease-area .research-diasease .content-wrap .animated-item.item-2 {
    left: 65%;
    bottom: 25%;
}

.research-diasease-area .research-diasease .content-wrap .animated-item.item-3 {
    left: 75%;
    bottom: 82%;
}

.research-area {
    background: #F5F5F5;
}

.research-details-area .research-details .animated-img-part {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 300px;
}

.research-details-area .research-details .animated-img-part .animated-img-box {
    left: 25%;
}

.research-details-area .research-details .title {
    max-width: 70%;
}

.research-details-area .research-details .highlight-text {
    border-top: 2px dotted #C4C4C4;
    border-bottom: 2px dotted #C4C4C4;
    padding: 50px 0 45px;
}

.research-details-area .research-details .highlight-text p {
    color: #15C0E8;
}

.research-details-area .research-details .img-wrap img {
    -webkit-box-shadow: 0 2px 5px #15c0e86e;
    box-shadow: 0 2px 5px #15c0e86e;
}

.financial-result-area .img-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.financial-result-area .img-wrap img {
    background: #f2faff;
    padding: 20px;
}

.building-pipeline-area .content-part .highlight {
    font-weight: 700;
}

.building-pipeline-area .content-part .highlight strong {
    color: #263534;
}

.building-pipeline-area .img-part {
    text-align: right;
    position: relative;
}

.building-pipeline-area .img-part .circle {
    height: 250px;
    width: 250px;
    display: inline-block;
    position: absolute;
    left: 20px;
    bottom: -110px;
    z-index: -1;
}

.building-pipeline-area .img-part .circle .circle-1 {
    height: 250px;
    width: 250px;
    border: 1px solid #98ECFF;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.building-pipeline-area .img-part .circle .circle-1 .circle-2 {
    height: 200px;
    width: 200px;
    border: 1px solid #98ECFF;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.building-pipeline-area .img-part .circle .circle-1 .circle-2 .circle-3 {
    height: 150px;
    width: 150px;
    border: 1px solid #98ECFF;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.error-area {
    height: 100vh;
    width: 100vw;
    background-image: url("../img/error/error.png");
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.error-area .error {
    height: 80%;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 30px;
}

.error-area .error h1 {
    font-size: 200px;
    line-height: 220px;
    color: #15C0E8;
}

.error-area .error h2 {
    color: #15C0E8;
}

.single-products .product-slider-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.single-products .product-slider-wrapper .slider-part {
    width: 50%;
    height: 100%;
    border: 1px solid #edefee;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-products .product-slider-wrapper .slider-part .single-thumbnail-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.single-products .product-slider-wrapper .slider-part .single-thumbnail-slider .slider-item img {
    margin: 0 auto;
    max-height: 450px;
}

.single-products .product-slider-wrapper .content-part {
    width: 50%;
    padding: 60px 30px;
    background: #f4f4f4;
}

.single-products .product-slider-wrapper .content-part .description-content p {
    max-width: 600px;
}

.single-products .product-slider-wrapper .content-part .price-box {
    padding: 20px 0 10px;
}

.single-products .product-slider-wrapper .content-part .price-box .price {
    font-size: 20px;
    font-weight: 600;
}

.single-products .product-slider-wrapper .content-part .cart-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #aeaeae;
    margin-bottom: 0;
    margin-right: 30px;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count li {
    display: inline-block;
    padding: 8px 10px;
    margin: 0;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count li.quantity {
    color: #252525;
    font-size: 20px;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count .increase,
.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count .decrease {
    cursor: pointer;
    color: #25252591;
    font-size: 30px;
    font-weight: 400;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count input[type="text"] {
    border: none;
    background: transparent;
    display: block;
    text-align: center;
    max-width: 30px;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .quantity-count input[type="text"]:focus {
    outline: 0;
    border: none;
}

.single-products .product-slider-wrapper .content-part .cart-wrap .btn-wrapper {
    margin: 0;
}

.single-products .product-slider-wrapper .content-part .product-meta strong {
    color: #263534;
}

.single-products .product-slider-wrapper .content-part .product-meta .product-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-products .product-slider-wrapper .content-part .product-meta .product-share h5 {
    margin: 0;
    padding-right: 10px;
}

.single-products .product-slider-wrapper .content-part .product-meta .product-share .follow-icon a {
    color: #263534;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.single-products .product-slider-wrapper .content-part .product-meta .product-share .follow-icon a+a {
    margin-left: 10px;
}

.single-products .product-slider-wrapper .content-part .product-meta .product-share .follow-icon a:hover {
    color: var(--main-color-one);
}

.single-products .product-thumbnail-carousel {
    width: 100%;
    text-align: left;
}

.single-products .product-thumbnail-carousel .single-thumbnail-item {
    border: 1px solid #EDEFEE;
    margin-right: 10px;
}

.single-products .product-thumbnail-carousel .single-thumbnail-item img {
    padding: 10px 0;
}

.product-description-with-review .product-information {
    border: 1px solid #EDEFEE;
}

.product-description-with-review .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: none;
    position: relative;
    z-index: 9;
}

.product-description-with-review .nav-tabs .nav-link {
    border: none;
    font-weight: 600;
    color: #263534;
}

.product-description-with-review .nav-tabs .nav-link:hover {
    border: none;
}

.product-description-with-review .nav-tabs:after {
    content: "";
    display: block;
    position: absolute;
    background: var(--bg-3);
    height: 1px;
    width: 100%;
    top: 50%;
    z-index: -1;
}

.product-description-with-review .tab-content {
    padding: 50px 30px;
}

.product-description-with-review .nav-tabs .nav-item.show .nav-link,
.product-description-with-review .nav-tabs .nav-link.active {
    background-color: #15C0E8;
    color: #fff;
    border-radius: 0;
}

.product-description-with-review .reviews .comment-text {
    position: relative;
    margin: 50px 0;
}

.product-description-with-review .reviews .comment-text .review-content {
    margin: 25px 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-description-with-review .reviews .comment-text .review-content .img-part img {
    margin-right: 30px;
    -webkit-box-shadow: 0px 3px 26px -8px #97a1b3;
    box-shadow: 0px 3px 26px -8px #97a1b3;
    border-radius: 50%;
    height: 70px;
    width: 70px;
}

.product-description-with-review .reviews .comment-text .review-content .info-part .ratings .checked {
    color: var(--yellow);
    font-size: 10px;
}

.product-description-with-review .reviews .comment-text .review-content .info-part span {
    font-size: 16px;
}

.product-description-with-review .reviews .comment-text .review-content .info-part h5 {
    font-size: 22px;
}

.product-description-with-review .reviews .comment-text .review-date {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 20px;
    text-align: center;
}

.product-description-with-review .reviews .comment-text .review-date .date {
    font-family: var(--primary-font);
    color: #4b4b4b;
}

.product-description-with-review .reviews .review-form {
    max-width: 500px;
}

.product-description-with-review .reviews .form-group .form-control {
    background: #F2F2F2;
    border: none;
}

.product-description-with-review .reviews .form-group .form-control:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-description-with-review .reviews .form-group textarea {
    resize: none;
}

.cart-checkout-wrapper .cart-items-wrapper .summery-title .title {
    text-transform: capitalize;
}

.cart-checkout-wrapper .cart-items-wrapper table {
    width: 100%;
}

.cart-checkout-wrapper .cart-items-wrapper table tr {
    padding: 10px 40px;
}

.cart-checkout-wrapper .cart-items-wrapper table tr th:first-child {
    width: 10%;
}

.cart-checkout-wrapper .cart-items-wrapper table tr th:nth-child(2) {
    width: 30%;
}

.cart-checkout-wrapper .cart-items-wrapper table tr td {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.cart-checkout-wrapper .cart-items-wrapper table tr td:nth-child(2) {
    width: 30%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.cart-checkout-wrapper .cart-items-wrapper table thead tr th {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 55px;
    text-transform: capitalize;
}

.cart-checkout-wrapper .cart-items-wrapper table thead tr td {
    color: var(--paragraph-color);
    text-transform: capitalize;
    font-size: 20px;
    padding-top: 60px;
}

.cart-checkout-wrapper .cart-items-wrapper table tbody tr td.product-delete {
    text-align: center;
}

.cart-checkout-wrapper .cart-items-wrapper table tbody tr td.product-delete i {
    font-size: 16px;
    font-weight: 400;
    display: block;
    color: #707070;
}

.cart-checkout-wrapper .cart-items-wrapper table tbody tr .product-img {
    text-align: center;
    border: 1px solid #edefee;
    display: inline-block;
}

.cart-checkout-wrapper .cart-items-wrapper table tbody tr .product-name .product-content .title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--heading-color);
}

.cart-checkout-wrapper .cart-items-wrapper table tbody tr .product-name ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-checkout-wrapper .cart-items-wrapper table tbody tr .product-name ul li {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap {
    padding: 0;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table {
    width: 100%;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr {
    padding: 10px 40px;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr+tr {
    border-top: 1px dashed #000;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr th:first-child {
    width: 25%;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr th:nth-child(2) {
    width: 50%;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr td {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    padding: 20px 0;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr td .total-price p {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tr td:nth-child(2) {
    width: 30%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table thead tr th {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 55px;
    text-transform: capitalize;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table thead tr td {
    color: var(--paragraph-color);
    text-transform: capitalize;
    font-size: 20px;
    padding-top: 60px;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tbody tr td.product-delete i {
    font-size: 16px;
    font-weight: 400;
    display: block;
    color: #707070;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tbody tr .product-img {
    text-align: center;
    border: 1px solid #edefee;
    display: inline-block;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tbody tr .product-name .product-content .title {
    font-size: 16px;
    font-weight: 700;
    color: #565656;
    margin-bottom: 10px;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tbody tr .product-name ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tbody tr .product-name ul li {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--paragraph-color);
}

.cart-checkout-wrapper .cart-items-wrapper.checout-items-wrap table tbody tr .color-font {
    color: var(--main-color-one);
}

.product-details .product-img {
    width: 140px;
    height: 135px;
}

.product-details .product-img img {
    width: 100px;
    height: 100px;
}

.product-details .product-content .title {
    font-size: 20px;
    font-weight: 700;
    color: #565656;
    margin-bottom: 10px;
}

.product-details .product-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-details .product-content ul li {
    font-size: 17px;
    line-height: 30px;
    font-weight: 500;
    color: #7b7b7b;
}

.product-total-price .product-total-price-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-total-price .product-total-price-content .icon {
    background: var(--hover-color);
    font-size: 20px;
    font-weight: 400;
    border: 1px solid #8584853d;
    color: white;
    width: 31px;
    border-radius: 0px;
    font-family: var(--body-font);
    height: 31px;
    line-height: 31px;
    text-align: center;
    border-radius: 50%;
    margin-left: 70px;
}

.product-quantity .quantity-count {
    display: inline-block;
    border-radius: 0;
    border: 1px solid #707070;
    padding: 2px 15px;
    margin: 0;
}

.product-quantity .quantity-count li {
    display: inline-block;
    margin: 0;
}

.product-quantity .quantity-count .increase,
.product-quantity .quantity-count .decrease {
    cursor: pointer;
    font-size: 16px;
}

.product-quantity .quantity-count input[type="text"] {
    border: none;
    background: transparent;
    display: block;
    text-align: center;
    max-width: 30px;
}

.product-quantity .quantity-count input[type="text"]:focus {
    outline: 0;
    border: none;
}

.coupon-form {
    position: relative;
    width: 60%;
}

.coupon-form .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.coupon-form .form-group h5 {
    margin: 0;
    margin-right: 30px;
}

.coupon-form .form-group .form-control {
    border-radius: 0;
    font-size: 15px;
    height: 50px;
    border: 1px solid #edefee;
    color: #000;
    padding-right: 45px;
}

.coupon-form .form-group:focus {
    border-bottom: 1px solid var(--hover-color);
}

.coupon-form .submit-btn {
    position: absolute;
    top: 16px;
    right: 10px;
    color: #aeaeae;
    font-size: 12px;
}

.coupon-form.checkout-coupon-form {
    width: 100%;
}

.coupon-form.checkout-coupon-form .form-group .form-control {
    height: 60px;
    padding-right: 140px;
}

.coupon-form.checkout-coupon-form .submit-btn {
    top: 50%;
    right: 20px;
    font-size: 14px;
    color: #747474;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.single-product-cart-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-top: 52px;
    border: 1px solid #edefee;
}

.single-product-cart-wrapper .single-product-cart {
    width: 100%;
    padding: 0 40px;
}

.single-product-cart-wrapper .single-product-cart .title {
    font-size: 20px;
    font-weight: 600;
}

.single-product-cart-wrapper .single-product-cart .cart-total {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.single-product-cart-wrapper .single-product-cart .cart-icon {
    text-align: center;
    padding: 50px;
    font-size: 100px;
    color: white;
}

.single-product-cart-wrapper .single-product-cart .cart-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.single-product-cart-wrapper .single-product-cart .cart-price .cart-total {
    color: #989898;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}

.single-product-cart-wrapper .single-product-cart .cart-price .cart-total span {
    color: #1d1d1d;
    font-size: 25px;
    font-weight: 600;
}

.single-product-cart-wrapper .single-product-cart .cart-price p {
    color: #b8b4b4;
    font-size: 20px;
}

.single-product-cart-wrapper .single-product-cart .cart-price .total-rate {
    color: var(--hover-color);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 3px;
}

.single-product-cart-wrapper .single-product-cart .shopping-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px dashed #bbbec1;
    border-top: 1px dashed #bbbec1;
    padding: 25px 0 30px;
}

.single-product-cart-wrapper .single-product-cart .shopping-content .right-content {
    text-align: right;
}

.single-product-cart-wrapper .single-product-cart .shopping-content .right-content .check-box input[type="radio"] {
    outline: none;
    margin-left: 10px;
}

.single-product-cart-wrapper .single-product-cart .shopping-content .right-content span {
    color: #15c0e8;
}

.single-product-cart-wrapper .single-product-cart .shopping-content .right-content a {
    color: #15c0e8;
}

.single-product-cart-wrapper .single-product-cart .shopping-content .right-content .select-option .nice-select {
    float: none;
}

.single-product-cart-wrapper .single-product-cart .shopping-content .right-content .select-option .nice-select .list {
    width: 100%;
}

.billing-section {
    background: #f5fdfe;
}

.billing-title .section-title .title {
    color: white;
}

.card-img-details {
    padding: 40px 30px;
}

.card-img-details .card-logo {
    border: 1px solid grey;
    padding: 15px 10px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card-img-details .card-logo img {
    width: auto;
    height: 30px;
}

.card-img-details .payment-card-img {
    padding: 80px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.card-img-details .payment-card-img .card-raw {
    z-index: 1;
}

.card-img-details .payment-card-img .card-bg {
    position: absolute;
    z-index: 0;
}

.user-info .user-form {
    padding: 40px 30px;
}

.user-info .form-group {
    margin-bottom: 30px;
    position: relative;
}

.user-info .form-group .form-control {
    border-radius: 0;
    width: 100%;
    border: 1px solid #d6d6d6;
    font-size: 14px;
    height: 40px;
    color: #000;
}

.user-info .form-group .materials {
    position: relative;
    height: 40px;
    color: #bebebe;
    background: transparent;
    border-radius: 0;
}

.user-info .form-group .materials>select {
    width: 100%;
    height: 37px;
    background: transparent;
    border: 0;
    color: #858585;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 1;
    border: 1px solid #d6d6d6;
    padding-left: 10px;
    font-size: 16px;
}

.user-info .form-group .materials .select-arrow {
    position: absolute;
    z-index: 0;
    border: 8px solid transparent;
    border-bottom: 0;
    right: 11px;
}

.user-info .form-group .materials .select-arrow:nth-child(2) {
    top: 12px;
    border-top-color: #bebebe;
}

.user-info .form-group .materials .select-arrow:nth-child(3) {
    top: 12px;
    border-top-color: white;
}

.user-info .form-group .nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #d6d6d6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    color: #555758;
}

.user-info .form-group .nice-select:focus {
    border: 1px solid var(--hover-color);
}

.user-info .check-box {
    /* Create the checkmark/indicator (hidden when not checked) */
    /* Show the checkmark when checked */
}

.user-info .check-box .container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #1d1d1d;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.user-info .check-box .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.user-info .check-box .container .checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #a5a5a5;
}

.user-info .check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    width: 11px;
    height: 11px;
    background: #cfcfcf;
}

.user-info .check-box .container input:checked~.checkmark:after {
    display: block;
}

.user-info .submit-btn {
    font-weight: 500;
    font-size: 17px;
}

.user-info .submit-btn span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.user-info .submit-btn span .pay {
    padding: 0 40px;
}

.notes-info .check-box {
    /* Create the checkmark/indicator (hidden when not checked) */
    /* Show the checkmark when checked */
}

.notes-info .check-box .container {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 25px;
    line-height: 35px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin-bottom: 32px;
}

.notes-info .check-box .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.notes-info .check-box .container .checkmark {
    position: absolute;
    top: 12px;
    left: 0;
    height: 13px;
    width: 13px;
    border: 1px solid #a5a5a5;
}

.notes-info .check-box .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0px;
    top: 0px;
    width: 11px;
    height: 11px;
    background: #cfcfcf;
}

.notes-info .check-box .container input:checked~.checkmark:after {
    display: block;
}

.note-form .form-group textarea {
    width: 100%;
    resize: none;
    padding: 10px;
}


/* ------------------------------------
Main CSS
-------------------------------------*/

.navbar-nav li {
    font-size: 12px;
}

.slider-content-wrap .title {
    line-height: 1.2;
}

.slider-content-wrap p {
    font-size: 16px;
}

.team-item .title {
    margin-top: 20px;
}

.news-item .content-wrap .published-date {
    margin-bottom: 10px;
}

h3 {
    line-height: 1.4;
}

.info-box p {
    margin-top: 25px;
}

.news-item .btn-wrapper {
    margin-top: 30px;
}

.meet-team-area .slick-dots {
    bottom: 0;
}

.team-item {
    margin-bottom: 50px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-dots {
    text-align: center;
    line-height: 1;
    position: inherit;
}

.slick-dots li {
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: var(--paragraph-color);
    margin: 0px 5px;
    border-radius: 100%;
    opacity: 0.3;
}

.slick-dots li.slick-active {
    background-color: var(--main-color-one);
    opacity: 1;
}

.slick-dots li button {
    display: none;
}

.meet-team-area .slick-dots {
    bottom: inherit;
}

.showcase-follow-icon {
    left: 40%;
}

.showcase2-area {
    height: 90vh;
}

.news-item.style-2 .content-wrap .news-info .date-part {
    width: 15%;
    height: 90px;
}

.news-item.style-2 .content-wrap .news-info .date-part .post-date {
    font-size: 30px;
}

.news-item.style-3 .title {
    font-size: 24px;
    margin-bottom: 20px;
}

.pagination ul li .page-numbers {
    padding: 3px 10px;
}

.research-details h2,
.research-diasease h2 {
    font-size: 30px;
}

.breadcrumb-area .breadcrumb-inner.dark-blue {
    background: rgba(21, 193, 232, 0.8);
}

.contact-area-2 .content-wrapper .text-wrapper {
    background: rgba(21, 193, 232, 0.8);
}

.breadcrumb-area .breadcrumb-inner {
    background: rgba(21, 193, 232, 0.7);
}

.nice-select .option {
    margin: 0;
}

.product-single-item .title {
    font-size: 18px;
}

.date-part strong {
    margin-right: 3px;
}

.news-item .title,
.news-item .title a,
.product-single-item .title,
.product-single-item .title a {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.news-item .title a:hover,
.product-single-item .title a:hover {
    color: var(--main-color-one);
}

.breadcrumb-area .breadcrumb-inner .page-title {
    color: #fff;
}

.breadcrumb-area .page-list li {
    color: #fff;
}

.product-single-item .title a:hover {
    color: var(--main-color-one);
}

.therapy-box .content-wrap p {
    max-width: 100%;
}

.slick-dots li {
    background-color: #ddd;
    margin: 3px;
}

.pulse-icon.pulse {
    -webkit-animation: none;
    animation: none;
}

.research-diasease-area .research-diasease .img-wrap img {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.border-left-top {
    border-radius: 0;
}

.about-us-area.no-bg-style .img-wrap img {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.showcase-4-area {
    position: relative;
}

.showcase4-slider-item-inner {
    height: 100vh;
    position: relative;
}

.showcase4-slider-item-inner .nav-container,
.showcase4-slider-item-inner .row,
.showcase4-slider-item-inner .row [class*='col'],
.showcase4-slider-item-inner .slider-content-wrap {
    height: 100%;
}

.showcase4-slider-item {
    background-color: #ddd;
}

.showcase-4-area .showcase-slider-dot-controls {
    position: absolute;
    bottom: 60px;
    width: 100%;
}

.showcase-4-area .slider-content-wrap {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bg-image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.showcase-4-area .showcase4-slider-item-inner:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.4;
    content: "";
}


/*# sourceMappingURL=style.css.map */


/*board of director style starts here*/

.teachers-01 header .header-body {
    background: url("../images/Single_cources/banner-bg.jpg") no-repeat center center;
    min-height: 360px;
    background-size: cover;
    position: relative;
}

.teachers-01 header .header-body:before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
}

.teachers-01 header .header-body .intro-text {
    text-align: center;
    margin-top: 80px;
}

.teachers-01 header .header-body .intro-text h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.teachers-01 header .header-body .intro-text p {
    margin-top: 15px;
}

.teachers-01 header .header-body .intro-text p span {
    font-size: 14px;
    color: #ffffff;
}

.teachers-01 header .header-body .intro-text p span a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.teachers-01 header .header-body .intro-text p span a:hover {
    color: #ffc501;
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area {
    padding: 0;
}

.teachers-01 .teachers-area .teachers-wapper-01 {
    margin-bottom: 50px;
}

.teachers-01 .teachers-area .teachers-wapper-01:last-child {
    margin-bottom: 0;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body:hover {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body img {
    width: 100%;
    min-height: 290px;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info {
    text-align: center;
    padding: 25px 20px 12px;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info h3 {
    padding: 0;
    font-size: 20px;
    margin-bottom: 4px;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info span {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    color: #727272;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info ul {
    margin-top: 20px;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info ul li {
    margin: 0 5px;
    display: inline-block;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info ul li .teacher-icon {
    background: #f9f9f9;
    border-radius: 100%;
    color: #a7a7a7;
    height: 30px;
    padding: 7px;
    width: 30px;
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area .teachers-wapper-01 .teacher-body .teachars-info ul li .teacher-icon:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    transition: all 0.3s ease-in-out;
    background: #ffc501;
    color: #ffffff;
}

.teachers-01 .teachers-area .teachers-wapper-02 {
    margin-bottom: 50px;
}

.teachers-01 .teachers-area .teachers-wapper-02:last-child {
    margin-bottom: 0;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 100%;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure:hover {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure:hover .teacher-img-02:before {
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure:hover figcaption {
    bottom: 50%;
    visibility: visible;
    opacity: 1;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teacher-img-02 {
    position: relative;
    height: 290px;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teacher-img-02:before {
    background: rgba(17, 17, 17, 0.6);
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    height: 0;
    width: 100%;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    opacity: 0;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teacher-img-02 img {
    width: 100%;
    height: 100%;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teachers-name {
    padding: 10px 15px;
    height: 180px;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teachers-name h3 {
    padding-bottom: 5px;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teachers-name h3 a {
    padding: 0;
    font-size: 17px;
    margin-bottom: 10px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure .teachers-name span {
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    color: #727272;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure figcaption {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure figcaption ul {
    margin: 10px auto;
    text-align: center;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure figcaption ul li {
    display: inline-flex;
    margin: 0px 2px;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure figcaption ul li a {
    background: #f9f9f9;
    border-radius: 100%;
    color: #a7a7a7;
    display: block;
    font-size: 17px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    transition: all 0.4s ease 0s;
    width: 35px;
}

.teachers-01 .teachers-area .teachers-wapper-02 figure figcaption ul li a:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    transition: all 0.3s ease-in-out;
    background: #ffc501;
    color: #ffffff;
}


/*board of director style end here*/


/*event box style starts here*/

.events-area {
    background: #f23276 !important;
}

.events-area h2 {
    padding: 50px 0 0;
}

.events-area .events-single-box .row {
    margin: 0!important;
}

.events-area .events-single-box {
    position: relative;
    padding: 50px 0;
}

.events-area .events-single-box .icon {
    position: absolute;
    left: 0;
}

.events-area .events-single-box .icon i {
    font-size: 30px;
    color: #ffffff;
}

.events-area .events-single-box .event-info {
    padding-left: 50px;
}

.events-area .event-info h3 {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 20px;
}

.events-area .event-info p {
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
    margin-bottom: 10px;
}

.events-area .event-info p span {
    margin-right: 10px;
    line-height: 1.5;
    display: inline-block;
}

.events-area .event-info p span i {
    color: #f7c052;
    margin-right: 5px;
}

.events-area .event-info .event-btn {
    font-size: 16px;
    color: #f7c052;
    text-decoration: underline;
    line-height: 20px;
}

.events-area .event-info .event-btn:hover {
    color: #fff;
}


/*event box style ends here*/


/*wel textbox style strarts here*/

.Welcome-area {
    padding-bottom: 80px;
}

.wel-text-box {
    text-align: center;
}

.wel-text-box .wel-icon {
    background-color: #f7c052;
    border-radius: 100%;
    height: 100px;
    margin: 0 auto;
    position: relative;
    width: 100px;
}

.wel-text-box .wel-text img {
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0 #000;
}

.wel-text-box .wel-text h3 {
    font-size: 24px;
    text-transform: uppercase;
    padding-bottom: 0;
    margin: 30px 0;
}

.wel-text-box .wel-text p {
    padding-bottom: 25px;
    margin: 0;
    text-align: center;
}

.wel-text-box .wel-text a {
    padding: 10px 50px;
    font-size: 18px;
    text-transform: uppercase;
    background: #039dc0;
    color: #ffffff;
    border-radius: 5px;
}

.wel-text-box .wel-text a:hover {
    background: #f7c052;
    color: #039dc0;
}

.wel-text h3 {
    transition: all 0.3s ease-in-out;
    padding-bottom: 15px;
    color: #039dc0;
    font-size: 20px;
}


/*wel text box style ends here*/


/* honary decorate srarts here*/

.honorary-hoctorate {
    background: #039dc0;
    color: #fff;
    padding: 80px 0!important;
}

.honorary-hoctorate {
    background: #039dc0;
    color: #fff;
    padding: 20px 0;
}

.brd {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 25px 15px;
    text-align: right;
    background: #fff;
    margin-bottom: 20px;
    min-height: 200px;
}

.brd h3 {
    text-align: center !important;
}

.honorary-hoctorate .brd .btnreadmore {
    text-align: center;
}

.icon-block h3 {
    line-height: 26px;
    margin: 0;
    padding-bottom: 20px;
    color: #039dc0;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    font-family: 'Righteous', cursive;
}

.honorary-hoctorate h2 {
    color: #f7c052;
    padding-bottom: 15px;
    margin: 0;
    text-align: center;
    font-size: 48px;
    position: relative;
    font-family: 'Righteous', cursive;
}

.btn,
.btn-large {
    text-decoration: none;
    color: #039dc0;
    background-color: #f7c052;
    text-align: center;
    letter-spacing: .5px;
    -webkit-transition: .2s ease-out;
    -moz-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    -ms-transition: .2s ease-out;
    transition: .2s ease-out;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Righteous', cursive;
    font-size: 14px;
}

.btn-large {
    height: 54px;
    line-height: 56px;
}

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}


/*honery decoarte ends here*/


/*regular doctorate style starts here*/

.instraction-area {
    padding: 80px 0;
    background: url(../img/background/yellow_bg.jpg) bottom no-repeat;
    background-size: cover;
}

.instraction-area .section-header h2 {
    margin: 0;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 50px;
    color: #039dc0;
}

.instraction-area .btn-large {
    height: 58px;
    padding: 0 15px;
    border-radius: 50%;
    font-size: 20px;
}

.instraction-area .brd {
    border-radius: 10px;
}

.instraction-area .btnreadmore {
    text-align: center;
}

.instraction-area .btn-large:hover {
    background: #039dc0;
    color: #ffffff;
}

.home_version_02 .instraction-area {
    background: transparent url(../img/slide-04-1920x810.jpg) no-repeat center center/cover !important;
    position: relative;
    background-color: #ededed;
    padding: 40px 0px;
    border-top: 5px solid #f7c052;
    background-attachment: fixed !important;
}

.section-header:before,
.section-header-l:before {
    border-bottom: 1px solid #b2b2b2;
    bottom: 15px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100px;
}

.wpb_content_element {
    margin-bottom: 0px !important;
}

.section-header h2 {
    padding-bottom: 15px;
}

.honorary-hoctorate .brd {
    border-radius: 10px;
}

.honorary-hoctorate h2 {
    margin: 0;
    text-align: center;
    font-size: 48px;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1;
    padding-bottom: 50px;
}

.honorary-hoctorate .btn-large {
    height: 58px;
    padding: 0 15px;
    border-radius: 50%;
    font-size: 20px;
}

.honorary-hoctorate .btn-large:hover {
    background: #039dc0;
    color: #ffffff;
}


/*regular doctorate style ends here*/


/* our journal starts here */

.our-journal {
    float: left;
    width: 100%;
    padding: 80px 0 0;
    xborder-top: 3px dashed #039dc0;
    background: #039dc0;
    xborder-bottom: 3px dashed;
}

.our-journal h2 {
    margin: 0;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 50px;
    color: #fff;
}

.journals-separate {
    padding: 15px 10px;
    min-height: 300px;
}

.journals-separate .boxed-title {
    color: #fff;
    font-weight: 400;
    margin: 20px 0;
    letter-spacing: 1px;
}

.col-md-3 {
    width: 25%;
    float: left;
}

.journal-image h4 {
    font-size: 18px;
    margin-top: 10px;
}

.container {
    width: 1170px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.boxed-title {
    font-size: 18px;
}

.facilitation-centers .row:nth-child(odd) .center-block .col-lg-3:nth-child(odd) .location-index-country,
.facilitation-centers .row:nth-child(even) .center-block .col-lg-3:nth-child(even) .location-index-country {
    background: #f7c052;
}

.facilitation-centers .row:nth-child(even) .center-block .col-lg-3:nth-child(odd) .location-index-country,
.facilitation-centers .row:nth-child(odd) .center-block .col-lg-3:nth-child(even) .location-index-country {
    background: #039dc0;
}

.facilitation-centers .row:nth-child(even) .center-block .col-lg-3:nth-child(odd) .location-index-country h4,
.facilitation-centers .row:nth-child(odd) .center-block .col-lg-3:nth-child(even) .location-index-country h4 {
    color: #ffffff;
}

.facilitation-centers .row:nth-child(even) .center-block .col-lg-3:nth-child(even) .location-index-country p,
.facilitation-centers .row:nth-child(odd) .center-block .col-lg-3:nth-child(odd) .location-index-country p {
    color: #039dc0;
}

.facilitation-centers .row:nth-child(even) .center-block .col-lg-3:nth-child(odd) .location-index-country p,
.facilitation-centers .row:nth-child(odd) .center-block .col-lg-3:nth-child(even) .location-index-country p {
    color: #f7c052;
}

.location-index-country {
    padding: 15px 15px;
    min-height: 175px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 20px !important;
    border-radius: 10px;
}

.location-index-country h4 {
    font-family: 'Righteous', cursive;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.location-index-country p {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}


/* our journal ends here*/


/* contatcus style starts here*/


/*.location-country {
    padding: 15px 15px;
    background: #fff;
    border: 1px solid #ededed;
    height: auto;
	
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    margin-bottom: 20px !important;
}
.hrf-entry {
    border: none !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}
.hrf-title.close-faq {
    cursor: pointer;
}
h3.hrf-title {
    font-size: 18px;
    color: #444444;
    background: #ffffff;
    padding: 10px;
    padding-left: 50px;
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline-style: none;
}
.hrf-content {
    display: none;
    color: #444444;
    background: #ffffff;
    font-size: 14px;
    padding: 10px;
    padding-left: 50px;
    word-break: normal;
}
h3.hrf-title {
    width: 50%;
    float: left;
    font-size: 15px !important;
}
*/


/* contatcus sty;e ends here*/


/* footer style starts here*/


/*footer {
padding-top: 30px;
background: #039dc0 !important;
}
.container {
    width: 1170px;
	padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
footer .footer-content-box {
    border-bottom: 1px solid #a0a0a0;
    padding: 0 0 50px 0;
    color: #a0a0a0;
}
.col-sm-3 {
    width: 25% !important;
	position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.col-sm-12 {
    width: 100%;
}*/


/** footer style ends here*/


/*facilation center starts here*/

.facilitation-centers {
    float: left;
    width: 100%;
    background: #ffffff;
    padding: 80px 0px;
}

.col-lg-3 {
    width: 25%;
    float: left;
}

.location-country h4 {
    font-size: 18px !important;
}

.facilation {
    margin: 0;
    text-align: center;
    color: #039dc0;
    font-size: 48px;
    position: relative;
    padding-bottom: 50px;
    font-family: 'Righteous', cursive;
}

.text18 {
    font-size: 18px;
}

.icardmemeber {
    margin: 0;
    text-align: center;
    color: #039dc0;
    font-size: 48px;
    position: relative;
    font-family: 'Righteous', cursive;
}


/* facilation center ends here*/

.navbar-area {
    background: #ffffff!important;
}

.responsive-mobile-menu {
    justify-content: space-between;
    padding: 10px 0;
}

.responsive-mobile-menu img {
    /* height: 80px;*/
}

.responsive-mobile-menu .head-content {
    width: 40%;
    align-items: center;
    display: flex;
}

.responsive-mobile-menu .logos {
    display: flex;
    align-self: center;
    justify-content: space-between;
    width: 50%;
}

.responsive-mobile-menu .head-content h1 {
    font-size: 30px;
    text-align: center;
    color: #039dc0;
    line-height: 1.1;
    ;
}

.navbar {
    padding: 0!important;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav {
    position: absolute;
    /*top: 100px;*/
    top: 145px;
    left: 0;
    width: 100%;
    background: #039dc0;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
    line-height: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 22px;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li a {
    font-size: 14px;
    padding: 10px 5px;
    font-family: 'Righteous', cursive;
}

.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li:hover a,
.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav li.active a {
    background: #f7c052;
    color: #000;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
    text-decoration: none;
    background: #f7c052;
    color: #000;
}

.navbar-area.navbar-area-fixed .responsive-mobile-menu {
    display: none;
}

.navbar-area.navbar-area-fixed .navbar-nav {
    top: 0!important;
    box-shadow: 1px 1px 5px 1px #fff;
}

.navbar-area.nav-style-01.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li a {
    padding: 20px;
}

.carousel-control-next,
.carousel-control-prev {
    display: inline-block!important;
    top: 65%!important;
    bottom: auto!important;
    width: 20px!important;
    height: 20px!important;
}

.carousel-control-next {
    right: 5%!important;
}

.carousel-control-prev {
    left: 5%!important;
}

.carousel-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
}

.carousel-inner img {
    height: 646px!important;
    width: 100%;
    object-fit: cover;
}

.carousel-indicators li {
    height: 5px!important;
}

.section-header:before,
.section-header-l:before {
    display: none;
}

.carousel-caption {
    bottom: 10%!important;
}

.carousel-caption h3 {
    color: #ffffff;
    font-size: 70px;
    font-weight: 800;
}

.carousel-caption h3 span {
    color: #f7c052;
}

.carousel-control-next,
.carousel-control-prev {
    display: none!important;
}

.Welcome-area .heading {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}

.Welcome-area .heading h2 {
    text-align: center;
    width: 100%;
}

.breadcrumb-area {
    background-image: url(../img/background/inner-bg.png)!important;
}

.breadcrumb-area.about-area-breadcrumb::before {
    background: rgba(0, 0, 0, 0.6)!important;
}

.breadcrumb-area .breadcrumb-inner {
    padding: 80px 40px 0;
    width: 100%;
    text-align: center;
}

.breadcrumb-area .breadcrumb-inner .page-title {
    font-size: 28px;
    line-height: 1;
}

.breadcrumb-area .page-list li {
    font-size: 14px;
    padding-left: 20px;
}

.breadcrumb-area .page-list li:after {
    font-size: 8px;
}

.become-teachers-01 {
    padding: 100px 0;
}

.become-teachers-01 .table-dark {
    background: #ffffff;
    color: #000000;
}

.become-teachers-01 .table-dark td,
.become-teachers-01 .table-dark th,
.become-teachers-01 .table-dark thead th {
    border: 1px solid #00d0ff;
}

.become-teachers-01 .table-dark thead th {
    background: #039dc0;
    color: #f7c052;
    text-transform: uppercase;
}

.become-teachers-01 .table-dark thead tr th:nth-child(1) {
    width: 200px;
}

.become-teachers-01 .table-dark thead tr th:nth-child(2) {
    width: 200px;
}

.location-country .border {
    padding: 20px 30px;
}

.location-country .border h3 {
    text-align: center;
    height: 70px;
}

.location-country .border .hrf-content p {
    text-align: center;
}

.contact-us .location-country {
    display: inline-block;
    margin-top: 30px;
    width: 100%;
}

.contact-us form input,
.contact-us form label,
.contact-us form textarea {
    width: 100%;
}

.contact-us form input[type=submit] {
    display: inherit;
    margin: 0 auto;
    width: 20%;
}

.contact-us form textarea {
    height: 200px;
}

.contact-us .facilitation-centers {
    padding-bottom: 0;
    background: transparent;
}

.about-us-area {
    padding-bottom: 30px;
}

.about-us-area p,
.about-us-area .content-wrapper .text-wrapper {
    text-align: justify;
    width: 100%;
}

.about-us-area .content-wrapper .text-wrapper font {
    font-weight: 800;
    color: #039dc0;
}

.about-us-area p strong {
    color: #039dc0;
}

.board-direct .news-item {
    border-radius: 15px;
    border: 4px solid #039dc0;
    min-height: 500px;
}

.board-direct .news-item .teachers-name h3 {
    font-weight: 400;
    font-size: 20px;
}

.board-direct .news-item .content-wrap strong {
    font-size: 13px;
}

.board-direct .news-item .teachers-name h3,
.board-direct .news-item .teachers-name p {
    margin-bottom: 0;
    text-align: center;
}

.awards-online form label,
.awards-online form input,
.awards-online form select {
    width: 100%;
}

.awards-online form input,
.awards-online form select {
    margin-bottom: 15px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.awards-online form input:focus,
.awards-online form select:focus {
    outline: none;
}

.awards-online form input[type=submit] {
    width: 20%;
}

.awards-online form span {
    color: red;
}

.in-conference input,
.in-conference select,
.in-conference textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}

.in-conference input:focus,
.in-conference select:focus,
.in-conference textarea:focus {
    outline: none;
}

.in-conference input[type=file],
.in-conference input[type=reset],
.in-conference input[type=submit] {
    width: auto;
}

.in-conference input[type=reset],
.in-conference input[type=submit] {
    padding: 5px 20px!important;
    border-radius: 5px;
    background: #039dc0;
    color: #fff;
}

.in-conference input[type=reset]:hover,
.in-conference input[type=submit]:hover {
    background: #f7c052;
    color: #000;
}

.gallery .news-item .img-warpper img {
    height: auto!important;
}

.description-text-right ul li {
    text-align: justify;
}

.awardees .border {
    border-width: 20px!important;
    border-color: #ffffff!important;
}

.awardees .border:nth-child(even) {
    background: #039dc0;
}

.awardees .border:nth-child(odd) {
    background: #f7c052;
}

.awardees .border a {
    color: #ffffff;
}

.past-events .border h3 {
    font-size: 25px
}

.past-events .border h3 span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 10px;
    margin-top: 15px;
    background: #fff;
}

.onlinepayment {
    padding-top: 50px;
    padding-bottom: 200px;
}

.onlinepayment .content-wrapper {
    width: 500px;
    margin: 0 auto;
}

.onlinepayment .content-wrapper select {
    background-color: #039dc0;
    color: #fff;
    padding: 30px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    border: 1px solid;
}

.unesco img {
    /*max-width:none !important;*/
    max-width: 275px;
}

@media (max-width:360px) {
    .sm-text {
        font-size: 8px;
        /* line-height: */
    }
}

.sm-text {
    text-align: justify;
    font-size: 0.8rem !important;
    line-height: 18px !important;
    margin: 0;
}

@media (min-width: 1200px) {
    .logoss {
        display: none !important;
    }
    .sm-text {
        font-size: 11px;
    }
}

.back-to-top {
    display: none !important;
}

.unesco img {
    /* max-width: none !important; */
    max-width: 100% !important;
    height: 55px;
}

.navbar-area.nav-style-01.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li a {
    padding: 30px 15px !important;
}
.float-right{
    float: right;
}

  table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1em;
    }
    th, td {
      padding: 8px 12px;
      border: 1px solid #ccc;
    }
    th {
    background-color: #333;
    vertical-align: middle;
    color: #fff;
}
    .pagination {
      display: flex;
      list-style: none;
      gap: 10px;
      padding: 0;
    }
    .pagination li {
      padding: 6px 12px;
      border: 1px solid #ccc;
      cursor: pointer;
    }
    .pagination li.active {
      background-color: #007bff;
      color: white;
    }
    	/* @media only screen and (min-width: 768px) {
		.navbar-area.nav-style-01 .nav-container .navbar-collapse .navbar-nav{
			box-shadow: none;
    border-radius: 0;
    max-width: 1135px;
    margin: 0 auto;
	display: flex;
	justify-content: space-between;
		}
	} */

    	.description-text-right .blue-text{
		font-weight: 800;
    color: #039dc0;
	}