/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Raleway", sans-serif;
    color: #444444;
}

a {
    color: #0f0f0f;
    text-decoration: none;
}

a:hover {
    color: #558896;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

ul li {
    list-style: none;
}

.padding-9 {
    padding-top: 9%;
}

.top-bg {
    background-color: #0C2B4B !important;
    height: 30px;
}

.small, small {
    font-size: .675em !important;
    padding-bottom: 12px;
}

.text-primary {
    color: #ff9e00 !important;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-link {
    font-weight: 400;
    color: #F3BD00;
    text-decoration: none;
}

.txt-white {
    color: #c1c1c1;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #1e798b;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #328fa2;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: .2s !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    margin-top: 30px;
}

#header.header-scrolled {
    margin-top: 0px;
    z-index: 1000;
    /*padding: 12px 0;*/
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 600;
    margin-left: 2%;
}

#header .logo a {
    color: #111111;
}

#header .logo a span {
    color: #e03a3c;
}

#header .logo img {
    max-height: 50px;
}

/*--------------------------------------------------------------
# Top Boxes
--------------------------------------------------------------*/
.box-margin {
    margin-top: -60px;
    z-index: 999;
    position: relative;
}

.welcome-box-box {
    position: relative;
    text-align: center;
}

.icon-happy {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    top: -9px;
    padding-right: 15px;
}

.icon-happy-text {
    position: relative;
    z-index: 2;
}

.icon-happy-text h3 {
    font-weight: 900;
    font-size: 43px;
}

.icon-happy-text h4 {
    font-size: 21px;
    font-weight: 600;
}

.sm-btn a {
    background-color: transparent;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    padding: 9px 14px;
    cursor: pointer;
    margin: 0px 20%;
    border-radius: 30px;
    vertical-align: middle;
}

.sm-btn a:hover {
    background-color: white;
    cursor: pointer;
    padding: 9px 14px;
    margin: 0px 20%;
    border-radius: 30px;
    color: #259feb;
    box-shadow: 0 1px 10px rgb(42 42 42 / 30%);
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
    margin-left: 30px;
    background: #2399b0;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.get-started-btn:hover {
    background: #33b5ce;
    color: #fff;
}

@media (max-width: 992px) {
    .get-started-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #535252;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #2399b0;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    min-width: 450px;
    left: -303px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 8px 10px 26px 10px;
    z-index: 99;
    opacity: 0;
    border-top: 3px solid #2399b0;
    visibility: hidden;
    background: #fff;
    -webkit-box-shadow: 0 15px 30px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 15px 30px 0 rgb(0 0 0 / 20%);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 150px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #e03a3c;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    /*top: 100%;*/
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.navbar .dropdown1 ul {
    display: block;
    position: absolute;
    left: -44%;
    top: calc(100% + 19px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown1 ul li {
    min-width: 178px;
    height: 184px;
}

.navbar .dropdown1 ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown1 ul a i {
    font-size: 12px;
}

.navbar .dropdown1 ul a:hover, .navbar .dropdown1 ul .active:hover, .navbar .dropdown1 ul li:hover > a {
    color: #e03a3c;
}

.navbar .dropdown1:hover > ul {
    opacity: 1;
    /*top: 100%;*/
    visibility: visible;
}

.navbar .dropdown1 .dropdown1 ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown1 .dropdown1:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

.mega-menu .mega-menu-link a {
    padding: 10px 20px 0px 0px !important;
    font-size: 16px !important;
    letter-spacing: 1px;
}

.mega-menu h4 {
    font-size: 16px;
    color: #2399b0;
    font-weight: 600;
    padding-top: 15px;
}

.fa-ellipsis-h {
    font-weight: bold !important;
    font-size: 18px !important;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #111111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #111111;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #e03a3c;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #e03a3c;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#myVideo {
    position: absolute;
    min-width: 100%;
    top: 98px;
    left: 0px;
    height: 861px;
}


#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 82px;
}

#hero:before {
    content: "";
    /*background:rgb(2 9 18);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    width: 86%;
}

#hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    line-height: 38px;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
}

#hero .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        padding-top: 58px;
    }

    #hero h1 {
        font-size: 28px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e03a3c;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

.section-bg {
    padding: 120px 0;
    color: #fff;
}

.section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #2b2b2b;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #aaaaaa;
}

.breadcrumbs ol a:hover {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #e03a3c;
    content: "/";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    background: #fff;
}


.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #2399b0;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2399b0;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
    max-width: 120%;
    height: auto;
}

.clients .swiper-slide img:hover {
    opacity: 1;
    filter: none;
}

.clients p {
    font-size: 18px;
    line-height: 30px;
}

.clients .about-btn {
    padding: 9px 30px;
    color: #1e798b;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #1e798b;
    margin-top: 20px;
}

.clients .about-btn i {
    font-size: 16px;
    padding-left: 5px;
}

.clients .about-btn:hover {
    background: #1e798b;
    border: 2px solid #1e798b;
    color: #fff;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .container {
    position: relative;
    z-index: 10;
}

.about .content {
    padding: 30px;
}

.about .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.about .content p {
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 30px;
}

.about .content .about-btn {
    padding: 9px 30px;
    color: #1e798b;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #1e798b;
}

.about .content .about-btn i {
    font-size: 16px;
    padding-left: 5px;
}

.about .content .about-btn:hover {
    background: #1e798b;
    border: 2px solid #1e798b;
    color: #fff;
}

.about .icon-boxes .icon-box {
    margin-top: 30px;
}

.about .icon-boxes .icon-box i {
    font-size: 40px;
    color: #e03a3c;
    margin-bottom: 10px;
}

.about .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.about .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #fff;
    padding-right: 20px;
}

@media (max-width: 1200px) {
    /*.about .content {
    padding-right: 0;
  }*/
}

@media (max-width: 768px) {
    .about {
        text-align: center;
    }
}

.font20 {
    font-size: 20px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding-top: 80px;
    background: #a5d7e0;
}

.counts h2 {
    font-size: 40px;
    text-transform: capitalize;
    color: #202A30;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
}

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 80%;
    margin: 0px 23%;
    position: relative;
    text-align: center;
    box-shadow: 0px 2px 34px rgb(61 118 128);
    border-radius: 4px;
}

.counts .count-box i {
    position: absolute;
    width: 54px;
    height: 54px;
    top: -27px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #fff;
    color: #e03a3c;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 700;
    color: #111111;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}


@media (max-width: 575px) {
    .counts .count-box {
        margin: 0px 10%;
    }

    .event .event-content .event-held {
        text-align: left;
    }

    .event .event-title {
        margin-top: 2% !important;
    }
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
    border: 0;
}

.tabs .nav-link {
    border: 1px solid #b9b9b9;
    padding: 15px;
    transition: 0.3s;
    color: #111111;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tabs .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.tabs .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.tabs .nav-link:hover {
    color: #e03a3c;
}

.tabs .nav-link.active {
    background: #e03a3c;
    color: #fff;
    border-color: #e03a3c;
}

@media (max-width: 768px) {
    .tabs .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .tabs .nav-link {
        padding: 15px;
    }

    .tabs .nav-link i {
        font-size: 24px;
    }
}

.tabs .tab-content {
    margin-top: 30px;
}

.tabs .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.tabs .tab-pane ul {
    list-style: none;
    padding: 0;
}

.tabs .tab-pane ul li {
    padding-bottom: 10px;
    text-align: left;
}

.tabs .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #e03a3c;
}

.tabs .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background: #252525;
    transition: 0.3s;
}

.services .icon-box:hover {
    background: #2b2b2b;
}

.services .icon-box i {
    float: left;

    line-height: 0;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #fff;
    transition: 0.3s;
}

.services .icon-box h4 a:hover {
    text-decoration: underline;
}

.services .icon-box .icon-box:hover h4 a {
    color: #e03a3c;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #e03a3c;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(17, 17, 17, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(17, 17, 17, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #e03a3c;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #e03a3c;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 35px;
    width: 310px;
    min-height: 395px;
    box-shadow: 0px 2px 12px rgb(0 0 0 / 52%);
    position: relative;
    background: #fff;
    border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 47px;
    font-size: 40px;
    /* border-radius: 10px; */
    /* border: 6px solid #fff; */
    float: left;
    color: #2399b0;
    margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 18px 0 0px 0;
    color: #2399b0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #fceaea;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    margin: 0px auto 15px auto;
    line-height: 26px;
    font-size: 16px;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #e03a3c;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #e03a3c;
}

.green-txt {
    font-size: 18px;
    color: #47f0c1;
}

.lend-btn {
    padding: 9px 30px;
    color: #1e798b;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #1e798b;
}

.lend-btn i {
    font-size: 16px;
    padding-left: 5px;
}

.lend-btn:hover {
    background: #1e798b;
    border: 2px solid #1e798b;
    color: #fff;
}

@media (max-width: 575px) {
    .testimonials .testimonial-item {
        margin: 0px 0px 20px 30px !important;
        width: 285px !important;
        min-height: 300px !important;
    }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #2b2b2b;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    min-height: 390px;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.5);
    margin: 10px 40px;
}

.pricing .box h3 {
    font-weight: 400;
    color: #fff;
    padding: 15px;
    font-size: 28px;
    text-transform: uppercase;
}

.pricing .box h4 {
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    color: #fff;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
}

.pricing p {
    font-size: 18px;
    line-height: 30px;
}

.pricing .box ul {
    padding: 20px 15px 20px 30px;
    list-style: none;
    text-align: left;
    line-height: 27px;
    font-size: 22px;
    color: #fff;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul i {
    color: #fff;
    font-size: 18px;
    padding-right: 4px;
}

.pricing .box ul .na {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    display: inline-block;
    padding: 10px 40px 12px 40px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing .box .btn-buy:hover {
    border-color: #fff;
}

.pricing .featured {
    background: #e03a3c;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
    background: #fff;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-right: 25px;
    cursor: pointer;
}

.faq .faq-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #e03a3c;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    width: 92%;
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    background: #1e798b;
    height: 27px;
    left: 0;
    bottom: 15px;
    right: 0;
    opacity: 1;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a {
    transition: color 0.3s;
    color: #111111;
    margin: 0 3px;
    border-radius: 50px;
    width: 26px;
    height: 26px;
    background: #1e798b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    color: #fff;
}

.team .member .social a:hover {
    background: #39a0b4;
}

.team .member .social i {
    font-size: 12px;
    line-height: 2;
}

.team .member .member-info {
    padding: 11px 15px 50px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 15px;
    color: #363636;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #767676;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: #444444;
    text-align: center;
    background: #fff;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 32px 0;
    border-radius: 4px;
}

.contact .info-box i {
    font-size: 32px;
    color: #e03a3c;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #f8d4d5;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    background: #fff;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    border-radius: 4px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 25px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #111111;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #e03a3c;
    border: 0;
    padding: 10px 32px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #e35052;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 40px 0 20px 0;
}

.blog .entry {
    padding: 20px 20px 1px 20px;
    /* margin-bottom: 60px; */
    background: #e9e9e9;
    /*box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);*/
}

.blog .entry .entry-img {
    height: 240px;
    overflow: hidden;
}

.img-wrapper {
    width: 360px;
    height: auto;
    overflow: hidden;
}

.img-wrapper1 {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.inner-img {
    transition: 0.4s;
}

.inner-img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.img-wrapper {
    display: inline-block;
    box-sizing: border-box;
}

.blog-section-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
}

.blog-section-title::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e03a3c;
    bottom: 0;
    left: calc(50% - 25px);
}

.blog .entry .entry-title {
    font-size: 19px;
    line-height: 26px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #111111;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {

}

.blog .entry .entry-meta {
    margin-bottom: 15px;
    color: #777777;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li + li {
    padding-left: 20px;
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: #2399b0;
}

.blog .entry .entry-meta a {
    color: #2399b0;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 22px;
    font-size: 14px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    /* background: #e03a3c; */
    color: #0a82ac;
    /* padding: 6px 20px; */
    transition: 0.3s;
    font-size: 13px;
    /* border-radius: 4px;*/
}

.blog .entry .entry-content .read-more a:hover {
    background: #e35052;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #111111;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #5e5e5e;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #1e1e1e;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #e03a3c;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #111111;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(17, 17, 17, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #e03a3c;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #111111;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #2b2b2b;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #ee9293;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #ee9293;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #111111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #1e1e1e;
}

.blog .blog-pagination {
    color: #444444;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: #111111;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
    background: #e03a3c;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 0px;
    background: #e9e9e9;
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #111111;
    font-weight: 600;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.side-scroll {
    height: 1237px;
    overflow-y: scroll;
}

.side-scroll::-webkit-scrollbar {
    display: none;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #e03a3c;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #e34c4d;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li + li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #111111;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #e03a3c;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
    margin-top: 15px;
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 5px;
}

.blog .sidebar .recent-posts img {
    width: 14%;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 78px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: rgb(4, 157, 227);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0px;
    transition: all 0.3s ease 0s;
    text-decoration: underline;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #1a7299;;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 78px;
    font-style: italic;
    font-size: 12px;
    color: #aaaaaa;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #515151;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #c4c4c4;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #e03a3c;
    background: #e03a3c;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog1 {
    padding: 60px 0 60px 0px;
    background: #17798c29;
}

.blog .entry1 {
    padding: 0px;
    /* margin-bottom: 60px; */
    background: #e9e9e9;
    /*box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);*/
}

.blog .entry1 .entry-img1 {
    height: 240px;
    overflow: hidden;
}

.blog .entry1 .entry-title {
    font-size: 19px;
    line-height: 26px;
    font-weight: 600;
    padding: 20px 20px 0px 20px;
}

.blog .entry1 .entry-title a {
    color: #111111;
    transition: 0.3s;
}

.blog .entry1 .entry-title a:hover {

}

.blog .entry1 .entry-meta {
    margin-bottom: 15px;
    color: #777777;
}

.blog .entry1 .entry-content .read-more a:hover {
    background: #e35052;
}

.blog .entry1 .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry1 .entry-content p {
    font-size: 14px;
    padding: 0px 20px;
}

.blog .entry1 .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry1 .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry1 .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #111111;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry1 .entry-meta a {
    color: #2399b0;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}


/*--------------------------------------------------------------
# RoadMap
--------------------------------------------------------------*/

:root {
    --bgColor: #fff;
}

h1 {
    color: #ffffff;
    font-size: 54px;
    font-weight: 300;
    line-height: 58px;
    margin: 0 0 58px;
}

#infographic .circle {
    border-radius: 50%;
    /*display: flex;*/
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 50%;
}

#infographic :not(:nth-child(even)) .circle {
    transform: translateX(-100%);
}

#infographic .circle i {
    font-size: 5em;
    margin-bottom: 20px;
    color: currentColor;
}

#infographic article {
    max-width: 410px;
    margin-bottom: 20px;
    cursor: pointer;
    left: 50%;
    position: relative;
}

#infographic article header {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

#infographic article header i {
    display: flex;
    font-size: 1.3em;
    border-radius: 50%;
    background-clip: padding-box;
    padding: 10px 12px;
    transition: transform 0.4s;
    color: #fff;
    border: 16px solid var(--bgColor);
    margin: -14px 0px -16px -14px;
}

#infographic article header h6 {
    margin: 0 25px;
    padding: 5px;
    text-align: left;
}

#infographic article .body {
    background: var(--bgColor);
    padding: 0 20px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    max-height: 0;
    transition: max-height 0.5s, padding 0.5s;
    overflow: hidden;
}

#infographic article .body .btn {
    padding: 3px 10px;
    text-transform: uppercase;
}

#infographic :nth-child(even) article {
    text-align: right;
    transform: translateX(-100%);
}

#infographic :nth-child(even) article header {
    flex-flow: row-reverse;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#infographic :nth-child(even) article header i {
    margin: -16px -20px -16px 0;
}

#infographic article[data-step="1"] {
    margin-left: 20px;
}

#infographic article[data-step="2"] {
    margin-left: 50px;
}

#infographic article[data-step="3"] {
    margin-left: 46px;
}

#infographic article[data-step="4"] {
    margin-left: 0;
}

#infographic article[data-step="5"] {
    margin-left: -60px;
}

#infographic article[data-step="6"] {
    margin-left: -40px;
}

#infographic article[data-step="7"] {
    margin-left: -70px;
}

#infographic article[data-step="8"] {
    margin-left: -60px;
}

#infographic article[data-step="9"] {
    margin-left: 0;
}

#infographic article[data-step="10"] {
    margin-left: 70px;
}

#infographic article[data-step="11"] {
    margin-left: 60px;
}

#infographic article[data-step="12"] {
    margin-left: 100px;
}

#infographic article[data-step="13"] {
    margin-left: 80px;
}

#infographic article[data-step="14"] {
    margin-left: 30px;
}

#infographic article[data-step="15"] {
    margin-left: -50px;
}

#infographic article[data-step="16"] {
    margin-left: -250px;
}

#infographic .one article header {
    background-color: rgb(35 153 176 / 36%);
    color: #0f0e0d;
}

#infographic .one article header i {
    background-color: #2399b0;
}

#infographic .two article header {
    background-color: rgba(0, 108, 99, 0.1);
    color: #006c63;
}

#infographic .two article header i {
    background-color: #28a745;
}

#infographic .three article header {
    background-color: rgba(69, 80, 162, 0.1);
    color: #dc3545;
}

#infographic .three article header i {
    background-color: #dc3545;
}

#infographic article:hover header i {
    transform: scale(1.2);
}

#infographic article.active header {
    border-bottom-right-radius: 10px;
}

/*--#infographic article.active header {
   border-bottom-right-radius: 0;
}---*/
#infographic article.active header i {
    --opacity: 0.4;
    transform: scale(1) !important;
}

#infographic article.active .body {
    padding: 20px;
    max-height: 300px;
    border: 1px solid;
}

#infographic .two article.active header {
    border-bottom-left-radius: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #ccc;
    font-size: 14px;
    background: #111111;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #1b1b1b;
}

#footer .pb-3 .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #e03a3c;
}

#footer .footer-top .footer-contact p {
    font-size: 13px;
    line-height: 20px;
    padding-left: 11%;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #e03a3c;
    bottom: 0;
    left: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
    margin-right: 5%;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: white;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #aaaaaa;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 5px 10px;
    position: relative;
    border-radius: 4px;
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #e03a3c;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #e35052;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 0px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #1e798b;
    color: #fff;
    text-decoration: none;
}

.footer-txt {
    font-size: 10px;
    line-height: 16px;
    padding: 12px 0px 0px 0px;
    padding-left: 2.5%;
    margin-bottom: 0px;
    text-align: justify;
}

.disclaimer-txt1 {
    font-style: italic;
    font-size: 11px;
    line-height: 17px;
    padding: 7px 0px;
    text-align: center;
}

.fade_rule {
    height: 1px;
    background-color: #E6E6E6;
    width: 100%;
    margin: 0 auto;
    background-image: linear-gradient(left, #191919 2%, #E6E6E6 50%, #191919 98%);
    background-image: -o-linear-gradient(left, #191919 2%, #E6E6E6 50%, #191919 98%);
    background-image: -moz-linear-gradient(left, #191919 2%, #E6E6E6 50%, #191919 98%);
    background-image: -webkit-linear-gradient(left, #191919 2%, #E6E6E6 50%, #191919 98%);
    background-image: -ms-linear-gradient(left, #191919 2%, #E6E6E6 50%, #191919 98%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0.02, #191919), color-stop(0.5, gray), color-stop(0.98, #191919));
}

.w-65 {
    width: 65%;
}

.pt-18 {
    padding-top: 18px !important;
    margin-right: 20px !important;
}


/*--------------------------------------------------------------
# CARDS Section
--------------------------------------------------------------*/
#card {
    width: 100%;
    height: 540px;
    background: url("../img/card-bg.jpg") top center no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 72px;
}

/*---#card:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}---*/
#card h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    width: 80%;
}

#card h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    line-height: 38px;
}

#card .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    width: 220px;
    text-align: center;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    border: 2px solid #ffffff;
}

#card .btn-get-started:hover {
    background: transparent;
    letter-spacing: 1.7px;
    width: 220px;
    border-color: #fff;
}

@media (max-width: 768px) {
    #card {
        text-align: center;
        padding-top: 58px;
    }

    #card h1 {
        font-size: 28px;
    }

    #card h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #card {
        height: 120vh;
    }
}

.box-style {
    background: #f6f6f6;
    box-shadow: 0px 20px 23px #ccc;
    /* border-radius: 100px; */
    padding: 16px;
}

.box-style:hover {
    background: #2399b045;
}

.bcard-txt {
    font-size: 15px;
    line-height: 20px;
    color: #151a1d;
    font-weight: 500;
    padding-top: 17px;
}

.box-margin1 {
    margin-top: 15px;
    z-index: 1;
    position: relative;
}

/*---- Cookies ----*/

.card {
    border-right: 1px solid rgb(0 0 0 / 12%);
}

.card-text {
    font-style: italic;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    color: #000;
}

.cookie-alert {
    position: fixed;
    height: 60px;
    bottom: 0px;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    background: #e9fcff !important;
    box-shadow: 2px -5px 5px #1919191f;
}

.cookie-alert.show {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.btn-primary {
    margin: 0px 12px 5px 12px;
    padding: 0px 16px;
    background: #0f86a1;
}

.btn-primary:hover {
    background: #269cb7;
}

/*Tooltip text*/
.tooltip {
    color: #000 !important;
    opacity: 1 !important;
    z-index: 1 !important;
    position: absolute;
    left: 1%;
}

.tooltip .tooltip-text {
    font-size: 1em;
    line-height: 1.5em;
    visibility: hidden;
    min-width: 110px;
    background-color: #fff;
    color: #575b5d;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1027 !important;
    bottom: 125%;
    left: -38px;
    opacity: 0;
    transition: .3s;
    transform: translate3d(0px, 20px, 0px);
    box-shadow: 4px 5px 13px #cda690;
}

.tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 43%;
    color: #fff !important;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}

.tool-txt {
    min-width: 112px;
    margin-left: -44px;
}

.table-responsive {
    box-shadow: 7px 7px 15px #c3c3c3;
}

.table-info, .table-info > td, .table-info > th {
    background-color: #fff !important;
    border-right: 1px solid #dee2e6 !important;
}

.table-info tbody + tbody, .table-info td, .table-info th, .table-info thead th {
    border-bottom: none !important;
    border-top: none !important;
    border-right: 1px solid #dee2e6 !important;
}

.table td, .table th {
    padding: 1rem !important;
    height: 72px;
    font-size: 15px;
    line-height: 19px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    border-top: none;
    border-bottom: none;
    border-right: 1px solid #e3dfdc;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #fff;
}

.left-16 {
    left: 16.5% !important;
}

@media (min-width: 1400px) {
    .left-16 {
        left: 20.5% !important;
    }
}


/*--- CompareCard ---*/

.select-txt {
    width: 20%;
    font-size: 16px;
}

.select-style {
    border: 1px solid #ccc;
    padding: 9px 12px;
}

.select-style:focus-visible, .select-style:visited {
    border: 1px solid #ccc !important;
}


.switch {
    font-size: 1rem;
    position: relative;
}

.switch input {
    position: absolute;
    height: 1px;
    width: 1px;
    background: none;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    padding: 0;
}

.switch input + label {
    position: relative;
    min-width: calc(calc(2.375rem * .8) * 2);
    border-radius: calc(2.375rem * .8);
    height: calc(2rem * .8);
    line-height: calc(2rem * .8);
    display: inline-block;
    cursor: pointer;
    outline: none;
    user-select: none;
    vertical-align: middle;
    text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
}

.switch input + label::before,
.switch input + label::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(calc(2.3rem * .8) * 2);
    bottom: 0;
    display: block;
}

.switch input + label::before {
    right: 0;
    background-color: #bbbbbb;
    border-radius: calc(2.375rem * .8);
    transition: 0.2s all;
}

.switch input + label::after {
    top: 2px;
    left: 4px;
    width: calc(calc(2rem * .8) - calc(2px * 2));
    height: calc(calc(2rem * .8) - calc(2px * 2));
    border-radius: 50%;
    background-color: white;
    transition: 0.2s all;
}

.switch input:checked + label::before {
    background-color: #0696b4;
}

.switch input:checked + label::after {
    margin-left: calc(2.375rem * .8);
}

.switch input:focus + label::before {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, 0.25);
}

.switch input:disabled + label {
    color: #868e96;
    cursor: not-allowed;
}

.switch input:disabled + label::before {
    background-color: #e9ecef;
}

.switch.switch-sm {
    font-size: 0.875rem;
}

.switch.switch-sm input + label {
    min-width: calc(calc(1.9375rem * .8) * 2);
    height: calc(1.9375rem * .8);
    line-height: calc(1.9375rem * .8);
    text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem);
}

.switch.switch-sm input + label::before {
    width: calc(calc(1.9375rem * .8) * 2);
}

.switch.switch-sm input + label::after {
    width: calc(calc(1.9375rem * .8) - calc(2px * 2));
    height: calc(calc(1.9375rem * .8) - calc(2px * 2));
}

.switch.switch-sm input:checked + label::after {
    margin-left: calc(1.9375rem * .8);
}

.switch.switch-lg {
    font-size: 1.25rem;
}

.switch.switch-lg input + label {
    min-width: calc(calc(3rem * .8) * 2);
    height: calc(3rem * .8);
    line-height: calc(3rem * .8);
    text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem);
}

.switch.switch-lg input + label::before {
    width: calc(calc(3rem * .8) * 2);
}

.switch.switch-lg input + label::after {
    width: calc(calc(3rem * .8) - calc(2px * 2));
    height: calc(calc(3rem * .8) - calc(2px * 2));
}

.switch.switch-lg input:checked + label::after {
    margin-left: calc(3rem * .8);
}

.switch + .switch {
    margin-left: 1rem;
}

.contentC {
    display: none;
}

.contentE {
    display: none;
}

.contentA {
    display: none;
    font-size: 20px;
    font-weight: 500;
    color: #4e4e4e;
}

.contentB {
    font-size: 20px;
    font-weight: 500;
    color: #4e4e4e;
}

.w-75 {
    width: 100% !important;
}

.card-center {
    position: relative;
    left: 9%;
}

.card-center1 {
    position: relative;
    left: 37%;
}

.card-center2 {
    position: relative;
    left: 22%;
}

.card-center3 {
    position: relative;
    left: 7%;
}

.card-center4 {
    position: relative;
    left: 8%;
}

.section-compare-card {
    padding: 40px 0px;
    background: #eeeeee;
}

.section-merchant {
    padding: 40px 0px;
}

.section-merchant h1 {
    position: relative;
    color: #1c2225;
    font-weight: 500;
    text-align: right;
    padding-top: 20%;
    letter-spacing: -2px;
    font-size: 2.8em;
}

.section-merchant p {
    font-size: 18px;
    line-height: 26px;
    color: #1c2225;
    text-align: right;
    font-weight: 400;
    padding-top: 20px;
}


.section-compare-card h1 {
    position: relative;
    color: #3a3b3c;
    font-weight: 500;
    text-align: center;
    font-size: 2.3em;
    margin: 0px;
}

.section-compare-card h2 {
    position: relative;
    color: #3a3b3c;
    font-weight: 500;
    text-align: center;
}

.compare-card {
    box-shadow: 7px 7px 15px #c3c3c3;
    width: 350px;
}

.compare-card .item {
    padding-left: 0px;
    padding-right: 0px;
}

.compare-card .item {
    flex: 1;
    margin: 0px;
    color: #303030;
    background-color: #fff;
    text-align: left;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}


.compare-card .item-card {
    transition: 0.5s;
    cursor: pointer;
}

.compare-card .card {
    padding: 0px;
}

.yellow-img {
    margin-top: 35px;
}

.yellow-bg {
    background-image: linear-gradient(180deg, #eeeeee, #cecece);
    text-align: center;
    font-weight: 500;
    color: #000;
    font-size: 16px;
    line-height: 19px;
    padding-bottom: 20px;
    height: 290px;
}

.white-bg {
    background: #fff;
}

.bottom-bg {
    background: #f2f2f2;
}

.select-txt {
    width: 20%;
    font-size: 16px;
}

.select-style {
    border: 1px solid #ccc;
    padding: 9px 12px;
}

.select-style:focus-visible, .select-style:visited {
    border: 1px solid #ccc !important;
}

.f-20 {
    font-size: 20px;
}

.bottom-bg1 {
    background: #eeeeee;
    font-size: 28px;
    font-weight: 700;
    height: 60px;
    text-align: center;
    padding: 15px 0px 17px 0px;
}

.compare-card .item-card-title {
    font-size: 17px;
    font-weight: 500;
    transition: 1s;
    cursor: pointer;
    text-align: center;
}

.compare-card .item-card-title i {
    font-size: 15px;
    transition: 1s;
    cursor: pointer;
    color: #ffa710
}

.compare-card .card-title i:hover {
    transform: scale(1.25) rotate(100deg);
    color: #18d4ca;
}

.compare-card .card:hover {
    transform: scale(1.05);
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}

.compare-card .card-text {
    height: 60px;
    padding: 21px 0px 18px 0px;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
}

.compare-card .card::before, .card::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: scale3d(0, 0, 1);
    transition: transform .3s ease-out 0s;
    background: rgba(255, 255, 255, 0.1);
    content: '';
    pointer-events: none;
}

.compare-card .card::before {
    transform-origin: left top;
}

.compare-card .card::after {
    transform-origin: right bottom;
}

.compare-card .card:hover::before, .card:hover::after, .card:focus::before, .card:focus::after {
    transform: scale3d(1, 1, 1);
}

.w-16 {
    width: 16.6%;
}

.disclaimer-txt2 {
    font-style: italic;
    font-size: 12px;
    line-height: 17px;
    padding: 7px 0px;
    text-align: left;

}

.padding-10 {
    padding: 0 10%;
}

.faq-padding {
    padding: 0 12%;
}

@media (max-width: 1024px) {
    .navbar a, .navbar a:focus {
        padding: 10px 0 10px 10px;
        font-size: 15px;
    }

    .sm-btn a {
        margin: 0px;
    }

    .icon-happy-text h4 {
        font-size: 19px;
    }

    .padding-10 {
        padding: 0;
    }

    .team .member .member-info h4 {
        font-size: 17px;
    }

    .m-padding {
        padding: 30px 0px;
    }

    #card h1 {
        margin: 0;
        font-size: 40px;
    }

    .box-style {
        padding: 1px;
        min-width: 174px;
    }

    .bcard-txt {
        font-size: 13px;
    }

    .img-responsive2 {
        width: 50%;
    }

    .card-center1 {
        position: relative;
        left: 32%;
    }

    .tooltip {
        left: 14%;
    }

    .m-card-center1 {
        position: relative;
        left: 21% !important;
    }

    .card-center {
        position: relative;
        left: 9%;
    }

    .card-center3 {
        position: relative;
        left: 4.6%;
    }

    .faq {
        padding: 0 11%;
    }

    .academy-p5 {
        padding-top: 25px;
    }

    #philo .card {
        margin: 0px !important;
    }

    .pricing .box {
        margin: 10px 0px;
    }

    .pricing .box ul {
        font-size: 19px;
        padding: 20px 10px 20px 22px;
    }

    .card img {
        vertical-align: middle;
        width: 100%;
    }

    .recent-causes {
        padding: 4% 3% !important;
    }

    .thumb img {
        width: 100%;
    }

    .testimonials .testimonial-item {
        box-sizing: content-box;
        padding: 20px;
        margin: 0px 12px;
        width: 249px;
        min-height: 395px;
    }

    .testimonials .testimonial-item h3 {
        font-size: 19px;
        margin: 15px 0 0px 0;
    }

    .testimonials .testimonial-item p {
        font-size: 14px;
    }

    .img-box img {
        width: 100%;
    }

    .img-wrapper {
        width: 257px;
    }

    .img-wrapper1 {
        width: 536px;
    }

    .career h1 {
        font-size: 45px;
    }

    .career h2 {
        font-size: 32px;
    }

    .gold-bg-height {
        height: 349px !important;
    }
}


@media (max-width: 768px) {
    .px-5 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }

    small {
        font-size: .575em !important;
        padding-bottom: 0px;
        margin-top: -8px;
    }

    #card {
        height: 600px;
    }

    .card-center1 {
        left: 26%;
    }

    .card-center2 {
        left: 14%;
    }

    .w-75 {
        width: 85% !important;
    }

    .card-center3 {
        left: 1.6%;
    }

    #hero h1 {
        width: 100%;
    }

    .padding-9 {
        margin-top: -33%;
    }

    .box-margin {
        margin-top: -218px;
    }

    .m-margin {
        margin: 0 18%;
    }

    .m-mb {
        margin-bottom: 2%;
    }

    #infographic article {
        max-width: 290px;
    }

    #infographic article[data-step="11"] {
        margin-left: 50px;
    }

    #infographic article[data-step="12"] {
        margin-left: 77px;
    }

    #infographic article[data-step="13"] {
        margin-left: 70px;
    }

    .padding-10 {
        padding: 0 12%;
    }

    .h6, h6 {
        font-size: .8rem;
    }

    .d-inline-flex {
        display: block;
    }

    .box-style {
        min-width: 131px;
    }

    .bcard-txt {
        font-size: 10px;
    }

    .m-card-center1 {
        left: 9% !important;
    }

    .pricing .box h3 {
        font-size: 26px;
    }

    .pricing .box ul {
        font-size: 15px;
        padding: 20px 5px 20px 11px;
    }

    #mission h1 {
        width: 100% !important;
    }

    .tab-p5 {
        padding-top: 20%;
    }

    #terms h4 {
        margin-left: 0;
    }

    #terms h1 {
        margin-left: 0;
        width: 100% !important;
    }

    .terms-content ul li {
        text-align: left;
    }

    .career h1 {
        font-size: 37px !important;
    }

    .career h2 {
        font-size: 34px !important;
    }

    .txt-margin {
        margin: 0px 4% !important;
    }
}

@media (max-width: 575px) {

    .f-20 {
        font-size: 15px;
    }

    .select-txt {
        width: 40%;
    }

    .card-center1 {
        left: 8%;
    }

    #card h1 {
        margin: 40% 5% 5% 5%;
    }

    .section-compare-card h1 {
        font-size: 1.8em;
    }

    .about .content {
        padding: 15px;
    }

    #footer .footer-top {
        padding: 20px 0 30px 15px;
    }

    .padding-9 {
        margin-top: -10%;
    }

    #header .logo img {
        max-height: 44px;
    }

    #header {
        padding: 20px 0;
    }

    .m-margin {
        margin: 0 2%;
    }

    #hero h1 {
        font-size: 30px;
        line-height: 42px;
    }

    .clients .swiper-slide img {
        max-width: 75%;
    }

    .about .content h3 {
        font-size: 28px;
    }

    #infographic article {
        left: 28%;
    }

    #infographic article header h6 {
        margin: 0 12px;
    }

    #infographic article {
        max-width: 190px;
    }

    .h6, h6 {
        font-size: .7rem;
    }

    #infographic article[data-step="6"] {
        margin-left: 83px;
    }

    #infographic article[data-step="7"] {
        margin-left: 64px;
    }

    #infographic article[data-step="8"] {
        margin-left: 66px;
    }

    #infographic article[data-step="9"] {
        margin-left: 109px;
    }

    #infographic article[data-step="10"] {
        margin-left: 139px;
    }

    .mega-menu h4 {
        font-size: 12px;
        padding-top: 7px;
    }

    .mega-menu .mega-menu-link a {
        font-size: 12px !important;
    }

    #infographic .circle {
        display: flex;
    }

    .yellow-bg1 {
        height: 150px;
        font-size: 12px;
        font-weight: 500;
    }

    .compare-card .item-card-title {
        font-size: 12px;
    }

    .switch input + label {
        position: relative;
        min-width: calc(calc(1.375rem * .8) * 2);
        border-radius: calc(0.375rem * .8);
        height: calc(1.5rem * .8);
        line-height: calc(1rem * .8);
        display: inline-block;
        cursor: pointer;
        outline: none;
        user-select: none;
        vertical-align: middle;
        text-indent: calc(calc(calc(2.375rem * .8) * 2) + 0.5rem);
    }

    .switch input + label::after {
        top: -1px;
        left: 5px;
        width: calc(calc(2rem * .8) - calc(2px * 2));
        height: calc(calc(2rem * .8) - calc(2px * 2));
        border-radius: 87%;
        background-color: white;
        transition: 0.2s all;
    }

    .tooltip {
        left: 4% !important;
    }

    .card-center3 {
        left: 1.6%;
        width: 80%;
    }

    .card-center4 {
        position: relative;
        left: -1%;
        width: 80%;
    }

    .tooltip .tooltip-text {
        min-width: 91px;
        margin-left: 37px;
        bottom: 175%;
    }

    .tooltip .tooltip-text::after {
        margin-left: -26px;
    }

    .tooltip {
        line-height: 1;
        font-size: .675rem;
    }

    #academy h1 {
        width: 100% !important;
        margin-top: 0px;
    }

    .m-mt {
        margin-top: 5% !important;
    }

    .carousel-item ol li {
        text-align: left;
        font-size: 13px;
    }

    .carousel-inner {
        height: 300px;
    }

    .w-65 {
        width: 56%;
    }

    .career h2 {
        font-size: 29px !important;
    }

    .clients ul li {
        text-align: left;
    }

    #philo .card {
        margin: 0px 20px !important;
    }

    .faq .faq-list a {
        text-align: left;
    }

    .faq-padding {
        padding: 0;
    }

    .team .member {
        margin-left: 19%;
        width: 70%;
    }

    .faq .faq-list a {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .tab-p5 {
        padding-top: 65%;
    }

    .cid ul li {
        text-align: left;
    }

    .terms-content p {
        font-size: 16px;
        line-height: 29px;
    }

    ol, ul {
        padding-left: 1rem;
    }

    .clients p {
        font-size: 16px;
        line-height: 29px;
    }

    .terms-content p {
        font-size: 16px !important;
        line-height: 29px !important;
    }

    .terms-content h4 {
        font-size: 1.2rem !important;
    }

    .sidebar-title {
        font-size: 18px !important;
    }

    .blog .sidebar .recent-posts h4 a {
        font-size: 11px;
    }

    .career h1 {
        font-size: 30px !important;
        line-height: 38px;
    }

    .career h2 {
        font-size: 24px !important;
        line-height: 38px !important;
    }

    .padding-14 {
        padding-top: 54% !important;
    }

    .flexcard1 {
        width: 80% !important;
        margin-bottom: 30px;
    }

    .bcard-txt {
        font-size: 17px;
    }

    #card .btn-get-started {
        margin-top: 20%;
    }

    .pt-30 {
        padding-top: 30px;
    }

    .blog {
        padding: 5px 0 0px 0;
    }

    .blog .entry1 .entry-img1 {
        height: 179px;
    }

    .snip1527 {
        margin: 0 !important;
        max-width: 100% !important;
    }

    .blog .sidebar .recent-posts h4 {
        margin-left: 60px;
    }

    .listar-feature-item-wrapper {
        margin-bottom: 42px !important;
    }

    .dropdown1 {
        display: none;
    }

    .gold-bg-height {
        height: 160px !important;
    }

    .gold-bg1 {
        width: 100% !important;
        padding: 22px !important;
    }

    .gold-bg1 ul li {
        line-height: 28px !important;
        font-size: 15px !important;
    }

    .imageR10 {
        position: absolute;
        top: 16%;
        right: -9%;
    }
}

/*----------Academy Page ----------*/

.academy-bg {
    background-image: url('../img/academy-bg.jpg');
    background-position: center;
    height: 601px;
    width: 100%;
}


.carousel-caption {
    position: absolute;
    top: 32%;
    right: 15% !important;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    font-size: 20px;
    text-align: left;
}

.carousel-caption h3 {
    font-size: 2.5rem;
    text-shadow: 3px 3px 4px #222;
}

.carousel-caption ol li {
    text-shadow: 3px 3px 4px #222;
    font-size: 22px;
}

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(300px, 0, 0);
        transform: translate3d(300px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(300px, 0, 0);
        transform: translate3d(300px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-300px, 0, 0);
        transform: translate3d(-300px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-300px, 0, 0);
        transform: translate3d(-300px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.carousel-item {
    height: 200px;
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/* Image Card */

.card-category-2 ul {
    padding: 0;
}

.card-category-2 ul li {
    list-style-type: none;
    display: inline-block;
    vertical-align: top;
}

.card-category-2 ul li {
    margin: 10px;
}

.img-card {
    position: relative;
    border-radius: 5px;
    text-align: left;
    -webkit-box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
    -moz-box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
    -o-box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
    box-shadow: 0 20px 40px -14px rgb(0 0 0 / 25%);
}

.img-card .card-image {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    height: auto;
}

.img-card .card-image img {
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.img-card .card-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.img-card .card-text {
    padding: 0 15px 15px;
    line-height: 1.5;
}

.img-card .card-link {
    padding: 20px 10px 25px;
}

.img-card .card-link a {
    text-decoration: none;
    position: relative;
    padding: 10px 0;
}

.img-card .card-link a:hover {
    color: #0138aa !important;
}

/*---.img-card .card-link a:after {
                top: 30px;
                content: "";
                display: block;
                height: 1px;
				color:#1e798b;
                left: 50%;
                position: absolute;
                width: 0;

                -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
                -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
                -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
                transition: width 0.3s ease 0s, left 0.3s ease 0s;
            }----*/

.img-card .card-link a:hover:after {
    width: 100%;
    left: 0;
}

.img-card.iCard-style1 .card-title {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    font-size: 30px;
    color: #fff;
}

.img-card.iCard-style1 .card-text {
    color: #795548;
}

.img-card.iCard-style1 .card-link a {
    color: #FF9800;
}

.img-card.iCard-style1 .card-link a:after {
    background: #FF9800;
}

.img-card.iCard-style2 .card-title {
    padding: 15px;
    font-size: 25px;
}

.img-card.iCard-style2 .card-image {
    margin-bottom: 15px;
}

.img-card.iCard-style2 .card-caption {
    text-align: center;
    top: 80%;
    font-size: 17px;
    color: #fff;
    position: absolute;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.img-card.iCard-style2 .card-link a {
    border: 1px solid;
    padding: 8px;
    border-radius: 3px;
    color: black;
    font-size: 13px;

    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.img-card.iCard-style2 .card-link a:hover {
    background: black;
}

.img-card.iCard-style2 .card-link a:hover span {
    color: #fff;
}

.img-card.iCard-style3 {
    text-align: center;
}

.img-card.iCard-style3 .card-title {
    top: 80%;
    font-size: 30px;
    color: #fff;
    position: absolute;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.img-card.iCard-style3 .card-text {
    color: #636060;
}

.img-card.iCard-style3 .card-link {
    font-size: 15px;
    /*---border-top: 1px solid #e8e8e8;---*/
}

.img-card.iCard-style3 .card-link a {
    color: #151617;
    font-weight: 500;
}

.img-card1 {
    width: 300px;
    height: 252px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
}

.img-card1 .card-image {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px;
    height: 183px;
}

.img-card1 .card-image img {
    width: 100%;
    border-radius: 5px 5px 0px 0px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.img-card1 .card-image:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.img-card1 .card-text {
    padding: 0 15px 15px;
    line-height: 1.5;
}

.img-card1 .card-link {
    padding: 10px;
}

.img-card1 .card-link a {
    text-decoration: none;
    position: relative;
    padding: 10px 0;
}

.img-card1 .card-link a:hover {
    color: #0138aa !important;
}

/*---.img-card .card-link a:after {
    top: 30px;
    content: "";
    display: block;
    height: 1px;
    color:#1e798b;
    left: 50%;
    position: absolute;
    width: 0;

    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
}----*/

.img-card1 .card-link a:hover:after {
    width: 100%;
    left: 0;
}


.img-card1.iCard-style3 {
    text-align: center;
}

.img-card1.iCard-style3 .card-title {
    top: 80%;
    font-size: 30px;
    color: #fff;
    position: absolute;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.img-card1.iCard-style3 .card-text {
    color: #636060;
}

.img-card1.iCard-style3 .card-link {
    font-size: 15px;
    line-height: 22px;
    /*---border-top: 1px solid #e8e8e8;---*/
}

.img-card1.iCard-style3 .card-link a {
    color: #151617;
    font-weight: 500;
}


/*---.img-card.iCard-style3 .card-link a:after {
    background: #585858;
}----*/

.img-card.iCard-style4 {
    text-align: right;
}

.img-card.iCard-style4 .card-caption {
    position: absolute;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    z-index: 1;
    top: 10px;
    right: 10px;
    color: #fff;
}

.img-card.iCard-style4 .card-title {
    width: 100%;
    padding: 20px 0px 12px 0;
    color: #E91E63;
}

.img-card.iCard-style4 .card-title span {
    font-size: 25px;
    margin-right: 12px;
}

.img-card.iCard-style4 .toggle {
    cursor: pointer;
    padding: 8px 0px 13px 0px;
    width: 55px;
}

.img-card.iCard-style4 .toggle span, .img-card.iCard-style4 .toggle span:nth-child(2), .img-card.iCard-style4 .toggle span:nth-child(3) {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #E91E63;
    cursor: pointer;
}

.img-card.iCard-style4 .toggle span:nth-child(1) {
    right: 15px;
}

.img-card.iCard-style4 .toggle span:nth-child(2) {
    right: 27px;
}

.img-card.iCard-style4 .toggle span:nth-child(3) {
    right: 39px;
}

.img-card.iCard-style4 .card-text {
    opacity: 0;
    line-height: 0;
    padding-bottom: 0;
    color: #4c4c4c;

    -webkit-transition: ease-in-out 0.5s;
    -moz-transition: ease-in-out 0.5s;
    -o-transition: ease-in-out 0.5s;
    transition: ease-in-out 0.5s;
}

.img-card.iCard-style4 .toggle.active ~ .card-text {
    opacity: 1;
    line-height: 1.5;
    padding-bottom: 10px;
}

.img-card.iCard-style4 .card-link {
    border-top: 1px solid #e8e8e8;
}

.img-card.iCard-style4 .card-link a {
    color: #E91E63;
}

.img-card.iCard-style4 .card-link a:after {
    background: #E91E63;
}

@media (max-width: 1024px) {
    .img-card {
        width: 215px;
    }

    .img-card .card-image {
        height: 131px;
    }

    .h5, h5 {
        font-size: 1rem;
    }

    p {
        font-size: .8rem;
    }

    .carousel-caption h3 {
        font-size: 2rem;
    }

    .carousel-caption ol li {
        font-size: 16px;
    }

    .carousel-caption {
        top: 25%;
    }
}

@media (max-width: 768px) {
    .carousel-caption h3 {
        font-size: 1.5rem;
    }

    .carousel-caption ol li {
        margin-top: -20px;
    }

    .carousel-caption ol li {
        font-size: 14px;
    }

    .carousel-caption {
        top: 15%;
    }
}

@media (max-width: 575px) {
    .recomended .column {
        margin-left: 13% !important;
    }

    .card5 h4 {
        text-align: center;
    }

    .img-card {
        width: 280px;
    }

    .img-card .card-image {
        height: 172px;
    }

    .carousel-caption {
        top: 5%;
    }

    .carousel-caption h3 {
        font-size: 1rem;
    }

    .carousel-caption ol li {
        font-size: 10px;
        line-height: 13px;
        text-align: left;
    }

    .carousel-caption ol li {
        margin-top: -30px;
    }

    .p-left {
        padding-left: 4%;
    }

    #academy-inner h1 {
        margin-top: -10% !important;
    }

    .sharelink-txt {
        font-size: 12px;
    }
}

.carousel-control-prev button:hover, button:active, button:visited, button:target, button:focus-visible, button:focus-within {
    background-color: transparent !important;
    border-left: 0px !important;
}

.carousel-control-prev {
    left: -75px !important;
}

.carousel-control-next {
    right: -75px !important;
}

#academy {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 98px;
}

#academy:before {
    content: "";
    /*background:rgb(2 9 18);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#academy h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    width: 86%;
}

#academy h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    line-height: 38px;
}

#academy .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #2399b0;
    border: 2px solid #2399b0;
}

#academy .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

@media (max-width: 768px) {
    #academy {
        text-align: center;
        padding-top: 58px;
    }

    #academy h1 {
        font-size: 28px;
    }

    #academy h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #academy {
        height: 120vh;
    }
}


/*----------Career Page ----------*/

.career-bg {
    background: url('../img/career-banner.jpg') top center no-repeat;
    height: 575px;
    width: 100%;
    margin-top: 82px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.career h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #000;
    width: 100% !important;
    text-align: center !important;
}

.career h2 {
    margin-top: 30px;
    font-size: 36px;
    line-height: 45px;
    font-weight: 500;
    color: #000;
    width: 100% !important;
    text-align: center !important;
}

.padding-14 {
    padding-top: 14%;
}

.career .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: transparent !important;
    border: 3px solid #fff !important;
}

.career .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
    font-weight: 600 !important;
}

.accordion--home {
    margin: 0;
    padding: 0;
    width: 100%;
}

.accordion--home::after {
    clear: both;
    content: "";
    display: table;
}

.accordion--home img {
    display: block;
    max-width: 100%;
}

.accordion--home li.slide {
    position: relative;
    width: calc(85.4% / 6);
    display: block;
    overflow: hidden;
    float: left;
    transition: all 0.5s;
    height: 400px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.accordion--home li.slide:after {
    content: "";
    display: none;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    left: 0;
    top: 0;
    transition: opacity 0.5s;
    z-index: 10;
    position: absolute;
}

.accordion--home:hover li.slide {
    width: calc(50% / 6);
}

.accordion--home:hover li.slide:after {
    opacity: 1;
    display: block;
}

.accordion--home li.slide img {
    display: block;
}

.accordion--home li.slide:hover {
    width: 50%;
}

.accordion--home li.slide:hover:after {
    opacity: 0;
    display: none;
}

.accordion--home .image--content {
    position: absolute;
    top: 80%;
    left: 25px;
    text-align: left;
    width: 100%;
    display: block;
}

.accordion--home .image--content h2 {
    text-align: left;
    color: white;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.accordion--home .image--content h2:before, .accordion--home .image--content h2:after {
    content: "";
    display: block;
    height: 1px;
    width: 40%;
    background-color: #fff;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.accordion--home .image--content h2:before {
    margin-bottom: 15px;
}

.accordion--home .image--content h2:after {
    margin-top: 10px;
}

.accordion--home .image--content ul {
    margin: 0;
    padding: 0;
}

.accordion--home .image--content ul li {
    display: inline-block;
    clear: right;
}

.margin7 {
    margin: 0px 7%;
}

.open-position h4 {
    font-size: 20px;
    color: #403f3f;
}

.open-position {
    border: 1px solid #ccc;
    margin: 1%;
    padding: 10px 15px;
    border-left: 4px solid #ccc;
}

.open-position:hover {
    border-left: 4px solid #2399b0;
    background: #f9f9f9;
}

.fa-angles-right {
    color: #2399b0;
    padding-top: 30px;
    font-size: 20px;
}

/*----------------*/

.listar-map-button {
    width: 100%;
    position: absolute;
    display: table;
    right: 0;
    top: 0;
    height: 200px;
    line-height: 164px;
    white-space: nowrap;
    font-size: 0;
}

.listar-map-button {
    right: auto;
    /***
    box-shadow: 0 0 65px rgba(0,0,0,.07) inset, 0 0 35px rgba(0,0,0,.05) inset;**/
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
}

.listar-page-header-content .listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 300px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

header .footer-wave {
    max-width: 102%;
    width: 100%;
    height: 187.8px;
    left: 0;
    z-index: 1;
    bottom: -67px;
    background: url(https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png) repeat-x;
    animation: wave 10s cubic-bezier(0.44, 0.66, 0.67, 0.37) infinite;
}

@keyframes wave {
    0% {
        background-position: 0;
    }
    100% {
        background-position: 1440px;
    }
}

.listar-feature-item-wrapper {
    margin-bottom: 10px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item {
    height: calc(100% - 20px);
}

.listar-feature-item.listar-feature-has-link
~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
}

.listar-feature-item a {
    position: absolute;
    top: -44px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% + 4px);
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item a:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 1000px;
    z-index: 10;
    animation: ripple 0.7s linear infinite;
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
}


@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3), 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.01);
    }
    100% {
        box-shadow: 0 0 0 1em rgba(163, 177, 198, 0.3), 0 0 0 3em rgba(163, 177, 198, 0.03), 0 0 0 5em rgba(163, 177, 198, 0.03), 0 0 0 8em rgba(163, 177, 198, 0.01);
    }
}


.listar-feature-item .listar-feature-item-inner {
    padding: 50px 10px;
    border-radius: 6px;
    z-index: 5;
    position: relative;
    height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
    padding-top: 70px;
    padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
    border: 0;
    box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
    border-radius: 1000px;
    background: rgba(255, 255, 255, 0);
    background: -moz-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%
    );

    background: -webkit-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%
    );
    background: -o-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%
    );
    background: -ms-linear-gradient(
            left,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%
    );
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.listar-feature-right-border {
    position: absolute;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    top: 56px;
    left: 50%;
    overflow: hidden;
}

.listar-feature-items {
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
.listar-feature-item
a:hover
~ .listar-feature-item-inner
.listar-feature-right-border:before {
    border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
.listar-feature-item
a:hover
~ .listar-feature-item-inner
.listar-feature-right-border:before,
.listar-hovering-features-grey
.listar-feature-item
a:hover
~ .listar-feature-item-inner
.listar-feature-right-border:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
    border: 11px solid #258bd5;
    border-radius: 800px;
    left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
    position: relative;
    display: block;
    text-decoration: none;
    margin: -30px;
    padding: 30px;
    height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
    margin-bottom: 120px;
    padding-left: 27px;
    padding-right: 27px;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    content: "";
    background-color: #fff;
    z-index: 6;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
}

.listar-feature-icon-wrapper {
    width: 148px;
    height: 148px;
    line-height: 148px;
    border-radius: 500px;
    position: relative;
    background-color: #fff;
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    left: 50%;
    vertical-align: middle;
    margin-left: -74px;
    top: -66px;
    margin-top: -74px;
}

.listar-feature-icon-inner {
    width: 120px;
    height: 120px;
    line-height: 120px;
    border-radius: 500px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.14);
    background: #fff;
}

.listar-feature-icon-inner div {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: left;
}

.listar-feature-icon-inner i {
    position: relative;
    left: 31%;
    top: 7%;
    font-size: 50px;
}


.listar-feature-icon-inner img {
    position: relative;
    margin: 0 auto;
    vertical-align: middle;
    display: inline-block;
    width: auto;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
    position: relative;
    display: inline-block;
    border-bottom: 0;
    font-size: 40px;
    top: 0;
    padding: 0;
    color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
    top: 0;
}

.listar-feature-content-wrapper {
    position: relative;
    margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
    padding-top: 0;
    margin: 0 0 15px;
    text-align: center;
    line-height: 1.5;
    margin-top: -40px;
}

.listar-feature-item
.listar-feature-item-title.listar-feature-counter-added
> span {
    margin-left: 25px;
    border-radius: 0 50px 50px 0;
}

.listar-feature-item .listar-feature-item-title > span {
    box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
    5px 0px 40px rgba(80, 80, 80, 0.1);
    padding: 10px 20px;
    display: inline-block;
    position: relative;
    background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
    box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
    5px 0px 80px rgba(80, 80, 80, 0.15);
    padding: 10px 0;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 30px;
    white-space: nowrap;
    position: absolute;
    top: -3px;
    left: -40px;
    border-radius: 50px;
    background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    text-shadow: none;
    border-radius: 50px;
    color: #252525;
    font-size: 18px;
}

.listar-feature-item-excerpt {
    padding: 0 20px;
}

.listar-feature-item-excerpt {
    color: #252525;
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.pset {
    padding-top: 80px;
}

.listar-map-button-text span {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    height: 44px;
    line-height: 1.6;
    padding: 10px 25px;
    box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    background-color: rgba(35, 40, 45, 0.9);
    color: #fff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
    background-color: #fff;
    color: #252525;
    text-shadow: none;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
    border: 12px solid #fff;
}

.listar-map-button-text span:after {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: calc(100% + 28px);
    height: calc(100% + 28px);
    border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
    padding: 10px 43px 10px 51px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    margin-left: -74px;
    width: 148px;
    height: 148px;
    border-radius: 1000px;
    z-index: 10;
}

.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    box-shadow: 10px 10px 40px rgba(80, 80, 80, 0.15),
    15px 15px 30px rgba(80, 80, 80, 0.05), 0 0 120px rgba(80, 80, 80, 0.6);
    bottom: 3px;
    background-image: url("https://image.flaticon.com/icons/svg/2316/2316674.svg");
    background-size: 40%;
    color: #555;
    line-height: 52px;
}


.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    align-self: flex-start;
}

/*----------------*/


/*-----our value------*/

.our-value h1 {
    text-align: center;
}

.our-value ul {
    --col-gap: 2rem;
    --barH: 1rem;
    --roleH: 2rem;
    --flapH: 2rem;

    width: min(100rem, 100%);
    margin-inline: auto;

    display: flex;
    flex-wrap: wrap;

    gap: var(--col-gap);
    padding-inline: calc(var(--col-gap) / 2);

    justify-content: center;
    align-items: flex-start;
    list-style: none;
}

.our-value ul li {
    width: 10em;
    display: grid;
    grid-template:
    "role"
    "icon"
    "title"
    "descr";
    align-items: flex-start;
    gap: 1rem;
    padding-block-end: calc(var(--flapH) + 1rem);
    text-align: center;
    background: var(--accent-color);
    background-image: linear-gradient(
            rgba(0, 0, 0, 0.6) var(--roleH),
            rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
            rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem)
    );
    clip-path: polygon(
            calc(var(--col-gap) / -2 - 5px) 0,
            calc(100% + var(--col-gap) / 2 + 5px) 0,
            calc(100% + var(--col-gap) / 2 + 5px) calc(100% - var(--flapH)),
            50% 100%,
            calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH))
    );
}

/* bar */
.our-value ul li::before {
    content: "";
    grid-area: role;
    height: var(--barH);
    width: calc(100% + var(--col-gap));
    margin-left: calc(var(--col-gap) / -2);
    margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
    background: grey;
    z-index: -1;
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.4)
    );
}

.our-value ul li::before:hover {
    background: #ccc;
}

/* role */
.our-value ul li::after {
    content: "";
    grid-area: role;
    background: var(--accent-color);
    background-image: linear-gradient(
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.4)
    );
    height: var(--roleH);
}

.our-value ul li .icon,
.our-value ul li .title,
.our-value ul li .descr {
    padding-inline: 1rem;
    color: white;
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.our-value ul li .icon {
    font-size: 3rem;
}

.our-value ul li .title {
    font-size: 1.25rem;
    line-height: 1.5rem;
    font-weight: 500;
}

.our-value ul li .descr {
    font-size: 0.9rem;
}

.credits {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}


/*-------Career1 Page---------*/

.career-top-bg {
    background-image: url('../img/career1-img.jpg');
    background-position: center;
    height: 273px;
    width: 100%;
}


::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #bababa;
}

.item {
    flex: 1;
    margin: 0px;
    color: #303030;
    background-color: #fff;
    text-align: left;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.item-content {
    text-align: left;
    padding: 12px 22px;
}

.item-content p {
    text-align: left;
    font-size: 16px;
    line-height: 26px;
}

.page-division {
    display: flex;
    padding: 0;
}

.web3-txt {
    background: #fff;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    padding: 12px;
    height: 50px;
}


.tab {
    float: left;
    width: 100%;
    height: 100%;
    border: 0px;
}

.tablinks button {
    width: 100%;
    padding: 6px;
    font-size: 16px;
    text-align: left;
    font-weight: 500;
    border: 0px;
    background-color: #fff;
}

.tablinks button:hover, button:active, button:visited, button:target, button:focus-visible, button:focus-within {
    background-color: #f3f3f3;
    padding-left: 20px;
    border-left: 4px solid #ccc;
    transition: 0.5s ease;
}

.tabcontent {
    height: 100%;
    float: left;
    padding: 20px;
    width: 100%;
    animation: anime 1s;
}

.tabcontent h2 {
    border-bottom: 1px solid #e9e9e9;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 14px;
    margin: 20px 0;
}

.tabcontent p {
    margin-top: 20px
}

.tabcontent h5 {
    font-size: 18px;
    font-weight: 500;
}

.tabcontent ul li {
    list-style-image: url('../img/right-img.png');
    line-height: 30px;
}

.tabcontent li {
    padding-right: 10px;
}

.tablinks .but.active {
    background-color: #f5f5f5;
}

@keyframes anime {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.link-heading {
    background: #a6c9e1;
    color: #344145;
    /* padding: 1px 7px; */
    font-size: 17px;
    border-left: 6px solid #57809c;
    margin: 20px 0px 14px 0px;
}

.fa-solid, .fas {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;

}

.defaultOpen {
    background-color: #f3f3f3;
    padding-left: 20px;
    border-left: 4px solid #ccc;
    transition: 0.5s ease;
}


/*-------Charity Page------*/
.padding30 {
    padding-top: 30%;
    text-align: right;
    text-shadow: 3px 2px 3px #000;
}

/* 9 .call-to-action styles */

.call-to-action .container-fluid {
    padding: 0;
}

.call-to-action-corner {
    /*width: 35%;*/
    position: relative;
    /*float: left;*/

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all .3s ease;
}

.call-to-action-corner:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: rgb(17 112 110 / 90%);
}

.call-to-action-corner:hover:before {
    background: rgb(17 112 110 / 95%);
}

.call-to-action-center {
    /*width: 30%;*/
    position: relative;
    /*float: left;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: all .3s ease;
}

.call-to-action-center:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(6 120 116);
}

.call-to-action-center:hover:before {
    background: rgb(15 92 89 / 92%);
}

.single-call-to-action {
    position: relative;
    text-align: center;
    min-height: 250px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-call-to-action .icon-box,
.single-call-to-action .content-box {
    display: inline-block;
    vertical-align: top;
}

.single-call-to-action .icon-box {
    width: 50px;
    position: relative;
    bottom: 15px;
}

.single-call-to-action .icon-box i.fa-solid {
    bottom: 39px;
    border: 3px solid #fff;
    position: relative;
    padding: 5px 6px;
}

.single-call-to-action .icon-box i.fa-solid user {
    position: relative;
    bottom: 25px;
}

.single-call-to-action .icon-box i.flaticon-medical {
    position: relative;
    bottom: 25px;
}

.single-call-to-action .icon-box i:before {
    font-size: 25px;
    color: #fff;
}

.single-call-to-action .content-box {
    width: 65%;
    text-align: left;
    padding-left: 15px;
}

.single-call-to-action .content-box h3 {
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin: 0;
    margin-bottom: 15px;
}

.single-call-to-action .content-box p {
    font-size: 13px;
    color: #fff;
    line-height: 24px;
}

.single-call-to-action .content-box ul {
    margin: 0;
    padding: 0;
}

.single-call-to-action .content-box ul li {
    list-style: none;
    display: block;
    color: #fff;
    font-size: 13px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.single-call-to-action .content-box .thm-btn.inverse {
    border-color: #fff;
    background-color: transparent;
    padding: 7px 22px;
    color: #fff;
}

.single-call-to-action .content-box .thm-btn.inverse:hover {
    background: #fff;
    color: #f14b05;
}

.call-to-action.boxed .single-call-to-action .content-box {
    width: 70%;
}

.thm-btn {
    background: #2399b0;
    border-radius: 30px;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    padding: 8px 25px;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.thm-btn:hover {
    background: #33b5ce;
    color: #fff;
}

.thm-btn1 {
    background: #e24648;
    border-radius: 30px;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    padding: 8px 25px;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.thm-btn1:hover {
    background: #f35e60;
    color: #fff;
}

.event {
    margin-bottom: 15px;
}

.event .event-thumb {
    position: relative;
}

.event .event-title {
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 18px;
}

.event .event-title a {
    color: #000000;
    text-transform: uppercase;
    transition: all .3s ease;
    font-weight: 600;
}

.event:hover .event-title a {
    color: #eb5310;
}

.event .event-content .event-held {
    font-size: 12px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.event .event-content .event-held li i {
    color: #eb5310;
}

.event .event-thumb .event-date {
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}

.event .event-thumb .date {
    background-color: #eb5310;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    line-height: 20px;
    list-style: none;
    padding: 15px 15px 10px;
}

.event .event-thumb .month {
    background-color: #333;
    color: #ddd;
    font-size: 12px;
    font-weight: 600;
    list-style: none;
    padding: 7px 15px;
    text-transform: uppercase;
}

/* bx-event-carousel style-two */
.event.style-two {
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
}

.event.style-two .event-thumb .event-date {
    left: 0;
    padding-left: 0;
}

.event.style-two .event-thumb .date {
    font-size: 28px;
    padding: 20px 0;
}

/* event slider */
.bx-wrapper {
    margin: 0 auto 7px;
    padding: 0;
    position: relative;
}

.bx-wrapper .bx-viewport {
    background: transparent;
    border: none;
    box-shadow: none;
    left: 0;
}

/* bx top nav style */
.bx-controls .bx-controls-direction > a {
    background: #eb5310;
    background-image: none;
    border: 2px solid #eb5310;
    color: #fff;
    height: auto;
    line-height: 26px;
    padding: 0 11px;
    width: auto;
    text-indent: 0;
    top: -34px;
    z-index: 0;
}

.bx-controls .bx-controls-direction > a:hover {
    background: #fff;
    color: #eb5310;
}

.bx-controls .bx-controls-direction > a:hover i {
    color: #eb5310;
}

.bx-controls .bx-controls-direction > a i {
    color: #fff;
}

.bx-controls .bx-controls-direction .bx-prev {
    right: 35px;
    left: auto;
}

.bx-controls .bx-controls-direction .bx-next {
    right: 0;
}

/* .event images style */

.img-masonary {
    margin-left: -3px;
    margin-right: -3px;
}

.img-masonary .img-w1 {
    padding: 3px;
}

.img-masonary .img-w1 img {
    width: 280px;
}

.img-masonary .img-h1 img {
    height: 220px;
}

.double-line {
    display: block;
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
}

.sec-title {
    margin-bottom: 63px;
}

.sec-title h2 {
    font-size: 40px;
    text-transform: capitalize;
    color: #202A30;
    font-weight: bold;
    margin: 0;
    margin-bottom: 15px;
}

.sec-title p {
    font-size: 16px;
    color: #747474;
    margin: 0;
    margin-bottom: 20px;
}

.sec-title span.decor {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #2399b0;
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.sec-title span.inner {
    width: 6px;
    height: 6px;
    background: #2399b0;
    border-radius: 50%;
    display: block;
    margin: auto;
    margin-top: 3px;
}

.sec-title span.decor:before,
.sec-title span.decor:after {
    content: '';
    position: absolute;
    top: 5px;
    width: 50px;
    height: 2px;
    background: #2399b0;
    z-index: -1;
}

.sec-title span.decor:before {
    left: 14px;
}

.sec-title span.decor:after {
    right: 14px;
}

.sec-title.text-left span.decor {
    margin-left: 50px;
}

.sec-title.style-two span.decor {
    border-color: #f14b05;
}

.sec-title.style-two span.decor .inner {
    background: #f14b05;
}

.sec-title.style-two span.decor:after {
    right: -94px;
}

.sec-title.style-two span.decor:before,
.sec-title.style-two span.decor:after {
    background: #DCDCDC;
}

.sec-title.colored span.decor {
    border-color: #eb5310;
}

.sec-title.colored span.decor span.inner {
    background: #eb5310;
}

.sec-title.colored span.decor:before,
.sec-title.colored span.decor:after {
    background: #eb5310;
}

.sec-color {
    color: #202a30;
    font-weight: 700;
}

.double-line {
    display: block;
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
}

.double-line::before,
.double-line::after {
    border: 1px solid #eb5310;
    bottom: -7px;
    content: "";
    height: 1px;
    left: 0;
    margin: 1px auto auto;
    position: absolute;
    right: 0;
    width: 50px;
}

.double-line::before {
    bottom: -10px;
}

.double-line.line-left::before,
.double-line.line-left::after {
    left: 0;
    right: auto;
}

.featured-causes .thumb .causes-progress {
    background-color: rgba(255, 255, 255, 0.65);
    bottom: 0;
    padding: 20px 12px;
    position: absolute;
    top: 445px;
    width: 18%;
}

.featured-causes .causes-details h3 {
    margin-top: 3%;
}

/* 35 .causes recent style */

.recent-causes {
    padding: 4% 11%;
    background: #e8e8e869;
}

.causes {
    border: 4px solid #eee;
}

.causes .thumb {
    position: relative;
}

.causes .thumb .donate-piechart {
    bottom: -25px;
    display: table;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
}

.causes .thumb .donate-piechart .piechart-block {
    background-color: #2399b0;
    border-radius: 50%;
}

.causes .thumb .donate-piechart .piechart {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.causes .thumb .donate-piechart .piechart canvas {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-height: 51px;
}

.causes .thumb .donate-piechart .piechart-block .piechart {
    min-height: 50px;
    min-width: 50px;
}

.causes .thumb .donate-piechart .piechart-block .piechart span {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 51px;
}

.causes .thumb .donate-piechart .piechart-block .piechart span:after {
    color: #fff;
    /*--content: "%";--*/
    font-size: 13px;
    font-weight: 600;
}

.causes .causes-details {
    padding: 40px 20px 30px;
}

.causes .causes-details .title {
    margin: 0;
}

.causes .causes-details .title a {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    line-height: 26px;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.causes .causes-details .about-causes {
    font-size: 12px;
    margin-bottom: 15px;
    margin-top: 10px;
}

.causes .causes-details .causes-raised {
    float: left;
    font-weight: 600;
    padding-right: 10px;
}

.causes .causes-details .causes-goal {
    color: #eb5310;
    float: left;
    font-weight: 600;
    padding-right: 0px;
}

.causes .causes-details .thm-btn {
    font-family: "Poppins", sans-serif;
    font-size: 10px !important;
    line-height: 16px;
    margin-right: 12px;
    margin-top: 12px;
    padding: 8px 11px !important;
}

.causes .causes-details p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 14px;
}


/* causes style */
.causes .thumb .donate-target {
    background-color: rgba(255, 255, 255, 0.75);
    bottom: 0;
    left: 0;
    padding-bottom: 20px;
    padding-left: 30px;
    position: absolute;
    right: -5px;
    -webkit-transition: all 0.15s ease-in-out 0s;
    -o-transition: all 0.15s ease-in-out 0s;
    transition: all 0.15s ease-in-out 0s;
}

.causes .thumb .donate-target .title {
    margin-bottom: 0px;
}

.causes .thumb .overlay::after {
    background: rgba(255, 255, 255, 0.95);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.15s ease-in-out 0s;
    -o-transition: all 0.15s ease-in-out 0s;
    transition: all 0.15s ease-in-out 0s;
    width: 102%;
}

/* causes style-two */
.causes.style-two .causes-details .title a {
    font-size: 16px;
}

.causes.style-two .causes-details .thm-btn {
    padding: 6px 13px !important;
}

/* 14 .fact-counter-wrapper styles */


.fact-counter-wrapper:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #2399b0;
    opacity: .95;
}

.fact-counter-wrapper h2 {
    font-size: 36px;
    line-height: 42px;
    color: #fff;
    margin: 0;
    margin-bottom: 27px;
}

.fact-counter-wrapper .thm-btn.inverse:hover {
    border-color: #fff;
    color: #fff;
}

.single-fact {
    text-align: center;
    display: inline-block;
    padding: 0 35px;
}

.single-fact .icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
    line-height: 98px;
    margin-bottom: 14px;
}

.single-fact .icon-box i:before {
    font-size: 50px;
}

.single-fact span {
    font-size: 48px;
    font-weight: 500;
    color: #fff;
}

.single-fact p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

.sec-title.colored span.decor {
    border-color: #eb5310;
}


.parallax {
    background-image: url('../img/parallax-img.jpg');
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* 17 .single-blog-post styles */


.single-blog-post .content-box {
    margin-top: 27px;
}

.single-blog-post .img-box {
    position: relative;
}

.single-blog-post .img-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(226, 70, 72, .75);
    transform: scale(0);
    transition: all .5s ease;
}

.single-blog-post:hover .img-box .overlay {
    transform: scale(1);
}

.single-blog-post .img-box .overlay .box {
    display: table;
    width: 100%;
    height: 100%;
}

.single-blog-post .img-box .overlay .box .content {
    display: table-cell;
    vertical-align: middle;
}

.single-blog-post .img-box .overlay .box .content ul {
    text-align: center;
    margin: 0;
    padding: 0;
}

.single-blog-post .img-box .overlay .box .content ul li {
    display: inline-block;
    list-style: none;
}

.single-blog-post .img-box .overlay .box .content ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    background: #fff;
    color: #f14b05;
    border: 1px solid #fff;
    line-height: 38px;
    font-size: 18px;
    border-radius: 50%;
    transition: all .3s ease;
}

.single-blog-post .img-box .overlay .box .content ul li a:hover {
    background: #f14b05;
    border-color: #fff;
    color: #fff;
}

.single-blog-post .content-box .date-box,
.single-blog-post .content-box .content {
    display: table-cell;
    vertical-align: top;
}

.single-blog-post .content-box .date-box {
    padding-right: 25px;
}

.single-blog-post .content-box .date-box .inner {
    width: 65px;
    text-align: center;
}

.single-blog-post .content-box .date-box .inner .date {
    background: #e24648;
    padding: 15px 0;
}

.single-blog-post .content-box .date-box .inner .date b {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
}

.single-blog-post .content-box .date-box .inner .date {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
}

.single-blog-post .content-box .date-box .comment {
    font-size: 20px;
    color: #202A30;
    line-height: 17px;
    font-weight: 500;
    padding: 16px 0;
    border: 1px solid #E6E6E6;
    border-top: 0px;
}

.single-blog-post .content-box .date-box .comment i:before {
    color: #374045;
    font-size: 16px;
}

.single-blog-post .content-box .content h3 {
    font-size: 20px;
    color: #000000;
    text-transform: capitalize;
    margin: 0;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 12px;
}

.single-blog-post .content-box .content p {
    font-size: 14px;
    color: #9C9C9C;
    line-height: 26px;
}

.single-blog-post .content-box .content span {
    color: #222222;
    font-size: 13px;
}

.single-blog-post .content-box .content span a {
    color: #f3530f;
}

.single-blog-post .content-box .content .btn-details {
    color: #f3530f;
    font-size: 13px;
}

.single-blog-post .share {
    margin: 0;
    padding: 0;
}

.single-blog-post .share li {
    display: inline;
    list-style: none;
}

.single-blog-post .share li a,
.single-blog-post .share li span {
    display: inline-block;
    color: #D5DADD;
    font-size: 16px;
    margin-right: 10px;
}

.single-blog-post .share li a:hover {
    color: #eb5310;
}

.single-blog-post .share li span {
    color: #222222;
    font-size: 12px;
    text-transform: capitalize;
}

.single-blog-post .bottom-box {
    margin-top: 35px;
}

.blog-page .single-blog-post,
.blog-details .admin-info,
.blog-details .comment-box {
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid #F1F1F1;
}

.blog-details .admin-info .img-box,
.blog-details .admin-info .content {
    display: table-cell;
    vertical-align: top;
}

.blog-details .admin-info .inner-box {
    width: 100px;
}

.blog-details .admin-info .content {
    padding-left: 45px;
}

.blog-details .admin-info .content h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    margin: 0;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: #222E35;
}

.blog-details .admin-info .social {
    padding: 0;
    margin: 0;
}

.blog-details .admin-info .social li {
    display: inline-block;
    list-style: none;
}

.blog-details .admin-info .social li a {
    font-size: 16px;
    margin-right: 7px;
    color: #D5DADD;
}

.blog-details .admin-info .social li a:hover {
    color: #eb5310;
}

.blog-details .comment-box .title {
    margin-bottom: 50px;
}

.blog-details .comment-box .title h2 {
    font-size: 32px;
    text-transform: capitalize;
    color: #272727;
    font-weight: bold;
    margin: 0;
    line-height: 25px;
}

.blog-details .comment-box .single-comment-box {
    margin-bottom: 34px;
}

.blog-details .comment-box .single-comment-box:last-child {
    margin-bottom: 0;
}

.blog-details .comment-box .single-comment-box .img-box,
.blog-details .comment-box .single-comment-box .content-box {
    display: table-cell;
    vertical-align: top;
}

.blog-details .comment-box .single-comment-box .img-box .inner-box {
    width: 70px;
    margin-right: 30px;
}

.blog-details .comment-box .single-comment-box .content-box h3 {
    color: #272727;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 20px;
    margin: 0;
}

.blog-details .comment-box .single-comment-box .content-box span {
    color: #272727;
    display: inline-block;
    font-weight: 500;
}

.blog-details .comment-box .single-comment-box .content-box p {
    color: #9C9C9C;
    line-height: 26px;
}

.blog-details .comment-box .single-comment-box .content-box a.reply {
    font-size: 13px;
    font-weight: bold;
    font-family: 'Raleway';
    text-transform: uppercase;
    color: #262F36;
}

.blog-details .comment-box .single-comment-box .content-box .meta-box {
    margin-bottom: 15px;
    margin-top: 8px;
}

/*---- About Page ----*/

/*---- Philosophies ----*/

#philo {
    background: transparent !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #108d6f;
    border-color: #108d6f;
    box-shadow: none;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #2399b0;
    border-color: #2399b0;
    padding: 10px 20px;
}

#philo .card {
    border: none;
    background: #ffffff;
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    min-height: 350px;
    margin: 0px 15px;
}

#philo .card-text {
    line-height: 23px !important;
    padding-bottom: 12px;
    font-size: 16px;
    padding: 0px 20px;
}

.image-flip:hover .backside,
.image-flip.hover .backside {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    border-radius: .25rem;
}

.image-flip:hover .frontside,
.image-flip.hover .frontside {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);

}

.mainflip {
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -ms-transition: 1s;
    -moz-transition: 1s;
    -moz-transform: perspective(1000px);
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;
    position: relative;

}

.frontside {
    position: relative;
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    z-index: 2;
    margin-bottom: 30px;
}

.backside {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    -moz-box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
    box-shadow: 5px 7px 9px -4px rgb(158, 158, 158);
}

.frontside,
.backside {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 1s;
    -webkit-transform-style: preserve-3d;
    -moz-transition: 1s;
    -moz-transform-style: preserve-3d;
    -o-transition: 1s;
    -o-transform-style: preserve-3d;
    -ms-transition: 1s;
    -ms-transform-style: preserve-3d;
    transition: 1s;
    transform-style: preserve-3d;

}

.frontside .card,
.backside .card {
    min-height: 312px;

}

.backside .card a {
    font-size: 18px;
    color: #0a768e !important;
}

.frontside .card .card-title,
.backside .card .card-title {
    color: #007b5e !important;
}

.frontside .card .card-body img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0px 25px 50px rgb(0 0 0 / 41%);
}

.card .fa-brands:hover {
    color: #0a768e !important;
    opacity: .8;
}

/*------missionPage-----*/

#mission {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 82px;
}

#mission:before {
    content: "";
    /*background:rgb(2 9 18);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#mission h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    width: 86%;
}

#mission h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
    line-height: 38px;
}

#mission .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #2399b0;
    border: 2px solid #2399b0;
}

#mission .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

@media (max-width: 768px) {
    #mission {
        text-align: center;
        padding-top: 58px;
    }

    #mission h1 {
        font-size: 28px;
    }

    #mission h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #mission {
        height: 120vh;
    }
}

.mission-bg {
    background-image: url('../img/mission-banner.jpg');
    background-position: center;
    height: 601px;
    width: 100%;
}

.sec-value {
    background-color: #f6f6f6;
}

.mbr-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.cid .bg-black {
    background-color: #2e2e2e;
}

.cid .card {
    display: flex;
    word-wrap: break-word;
    background-clip: border-box;
    border-radius: 0;
    padding: 70px 50px 70px 50px;
    min-height: 825px;
}

.cid .white-col {
    background-color: #ffffff;
}

.card-img {
    text-align: center;
    flex-shrink: 0;
}

.display-5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
}

.cid .card-box {
    padding-top: 2rem;
}

.cid h4 {
    margin: 0 0 20px 0;
}


.cid ul {
    padding-left: 0rem;
}

.mbr-text {
    font-style: normal;
    line-height: 1.6;
}

.mbr-bold {
    font-weight: 500;
    font-size: 1.3rem;
}

.align-center {
    text-align: center;
}

.mbr-white {
    color: #ffffff;
}


.sticky-icon {
    z-index: 1;
    position: fixed;
    top: 29%;
    right: 0%;
    width: 256px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(210px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 8px;
    font-size: 16px;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/

.Instagram {
    background-color: #2399b0;
    color: #FFF;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 30px;
    width: 30px;
    color: #000;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 4px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-instagram {
    background-color: #FFF !important;
    color: #FD1D1D;
}

.sticky-icon img {
    width: 26px;
    background: #fff;
    padding: 1px 5px;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 2px;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 30px;
    width: 30px;
    color: #000;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 4px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-instagram {
    background-color: #FFF !important;
    color: #FD1D1D;
}

.sticky-icon img {
    width: 26px;
    background: #fff;
    padding: 1px 5px;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 2px;
}


.sticky-icon1 {
    z-index: 1;
    position: fixed;
    top: 24%;
    right: 0%;
    width: 176px;
    display: flex;
    flex-direction: column;
}

.sticky-icon1 a {
    transform: translate(130px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 8px;
    font-size: 16px;
    transition: all 0.8s;
}

.sticky-icon1 a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon1 a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/

.Instagram {
    background-color: #2399b0;
    color: #FFF;
}

.sticky-icon1 a i {
    background-color: #FFF;
    height: 30px;
    width: 30px;
    color: #000;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 4px;
    transition: all 0.5s;
}

.sticky-icon1 a i.fa-instagram {
    background-color: #FFF !important;
    color: #FD1D1D;
}

.sticky-icon1 img {
    width: 26px;
    background: #fff;
    padding: 1px 5px;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 2px;
}

.sticky-icon1 a i {
    background-color: #FFF;
    height: 30px;
    width: 30px;
    color: #000;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-right: 4px;
    transition: all 0.5s;
}

.sticky-icon1 a i.fa-instagram {
    background-color: #FFF !important;
    color: #FD1D1D;
}

.sticky-icon1 img {
    width: 26px;
    background: #fff;
    padding: 1px 5px;
    border-radius: 12px;
    margin-right: 10px;
    margin-bottom: 2px;
}


#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 30px;
}

#myBtn:hover {
    background-color: #555;
}


/*--------termsPage------*/

#terms {
    margin-top: 98px;
}

#terms:before {
    content: "";
    /*background:rgb(2 9 18);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#terms h1 {
    margin-left: 2%;
    font-size: 48px;
    font-weight: 600;
    color: #1a2328;
    width: 100%;
    text-shadow: 1px 1px 9px #ffffffc2;
}

#terms h4 {
    color: #1a2328;
    margin-left: 2%;
    font-size: 24px;
    font-weight: 600;
}

#terms .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #2399b0;
    border: 2px solid #2399b0;
}

#terms .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

@media (max-width: 768px) {
    #terms {
        text-align: center;
        padding-top: 58px;
    }

    #terms h1 {
        font-size: 28px;
    }

    #terms h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #terms {

    }
}


.risk-bg {
    background: url('../img/risk-banner.jpg') top center no-repeat;
    height: 466px;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}


.terms-bg {
    background: url('../img/terms-banner.jpg') top center no-repeat;
    height: 466px;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.terms-content h4 {
    font-size: 1.4rem;
    padding: 12px 0 6px 0;
    color: #2399b0;
}

.terms-content p {
    font-size: 18px;
    line-height: 30px;
}

.privacy-bg {
    background: url('../img/privacy-bg.jpg') top center no-repeat;
    height: 466px;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.news-bg {
    background: url('../img/news-bg.jpg') top center no-repeat;
    height: 466px;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}

/*--------Academy Inner------*/

.academy-inner-bg {
    background: url('../img/academy-inner-bg.jpg') top center no-repeat;
    height: 360px;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}


#academy-inner {
    margin-top: 98px;
}

#academy-inner:before {
    content: "";
    /*background:rgb(2 9 18);*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#academy-inner h1 {
    margin-top: 5%;
    font-size: 40px;
    text-align: left;
    font-weight: 600;
    color: #1a2328;
}

#academy-inner h4 {
    color: #1a2328;
    margin-left: 2%;
    font-size: 24px;
    font-weight: 600;
}

#academy-inner .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: #2399b0;
    border: 2px solid #2399b0;
}

#academy-inner .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

@media (max-width: 768px) {
    #academy-inner {
        text-align: center;
        padding-top: 58px;
    }

    #academy-inner h1 {
        font-size: 28px;
        text-align: center;
        line-height: 35px;
        margin-top: -1%;
    }

    #academy-inner h2 {
        font-size: 18px;
        line-height: 24px;
    }

    section {
        padding: 30px 0;
    }
}

@media (max-height: 500px) {
    #academy-inner {

    }
}

.recomended .column {
    margin: 15px 0;
    padding: 0 2%;
}

.recomended p {
    font-size: 15px;
    line-height: 19px;
    width: 90%;
}

.inner-social li a {
    color: #485052;
}

.disclaimer-txt {
    font-style: italic;
    font-size: 13px;
    line-height: 17px;
    padding-top: 15px;
    text-align: justify;
}


.mt-8 {
    margin-top: 5rem;
}

.btn-gold {
    background-image: linear-gradient(#d7c000, #d99400);
    padding: 5px 16px;
    font-weight: 500;
    color: #fff !important;
}

.btn-gold:hover, .btn-gold:visited, .btn-gold:focus, .btn-gold:target, .btn-gold:active {
    background-image: linear-gradient(#e8cf00, #d99400);
    box-shadow: none !important;
}

.modal.show .modal-dialog {
    top: 10%;
}

.modal-backdrop {
    z-index: 950;
}

.modal-title {
    line-height: 1 !important;
    font-size: 17px;
}

.gold-bg {
    background: url('../img/coin-gold-banner.jpg') top center no-repeat;
    height: auto;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.gold-bg-height {
    height: 500px;
}

.jurisdiction-policy-bg {
    background: url('../img/jurisdiction-policy-bg.jpg') top center no-repeat;
    height: 500px;
    width: 100%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.gold-bg1 {
    background: url('../img/gold-bg.jpg') top center no-repeat;
    height: 442px;
    width: 50%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    position: relative;
    padding: 60px 50px 50px 50px;
    color: #fff;
}

.gold-bg1 ul li {
    line-height: 30px;
    font-size: 18px;
}


#cards_landscape_wrap-2 {
    text-align: left;
    background: #F7F7F7;
}


#cards_landscape_wrap-2 .gallery-title {
    color: #454a4f;
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 20px;
}

#cards_landscape_wrap-2 .container {
    padding-top: 80px;
    padding-bottom: 100px;
}

#cards_landscape_wrap-2 a {
    text-decoration: none;
    outline: none;
}

#cards_landscape_wrap-2 .card-flyer {
    border-radius: 5px;
}

#cards_landscape_wrap-2 .card-flyer .image-box {
    background: #ffffff;
    overflow: hidden;
    border: 1px solid #ececec;
}

#cards_landscape_wrap-2 .card-flyer .image-box img {
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -o-transition: all .9s ease;
    -ms-transition: all .9s ease;
    width: 100%;
    height: 130px;
}

#cards_landscape_wrap-2 .card-flyer:hover .image-box img {
    opacity: 0.7;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

#cards_landscape_wrap-2 .card-flyer .text-box {
    text-align: center;
}

#cards_landscape_wrap-2 .card-flyer .text-box .text-container {
    padding: 10px 18px;
}

#cards_landscape_wrap-2 .card-flyer {
    background: #FFFFFF;
    margin-top: 50px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.14);
}

#cards_landscape_wrap-2 .card-flyer:hover {
    background: #fff;
    box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.20);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 50px;
}

#cards_landscape_wrap-2 .card-flyer .text-box p {
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: left;
    color: #000000;
}

#cards_landscape_wrap-2 .card-flyer .text-box h6 {
    margin-top: 0px;
    margin-bottom: 4px;
    font-size: 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2399b0;
}

.giftcard-bg {
    background: #f6f6f6;
}

.pl-20 {
    padding-left: 20px;
}

.btn-check:focus + .btn, .btn:focus {
    box-shadow: none !important;
}

nav.breadcrumb {
    padding: 0.8em 0em;
    font-size: 16px;
}

nav.breadcrumb ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

nav.breadcrumb li {
    display: inline;
    border-bottom: none !important;
}

nav.breadcrumb li + li::before {
    display: inline-block;
    margin: 0 0.25em !important;
    transform: rotate(15deg);
    border-right: 1px solid currentColor;
    height: 0.8em;
    content: "";
}

nav.breadcrumb [aria-current="page"] {
    color: #2399b0;
    font-weight: 500;
    text-decoration: none;
}

.crypto-btn {
    font-size: 13px;
    font-weight: 500;
    background: #2399b0;
    padding: 7px 20px;
    cursor: pointer;
    color: #fff;
    border-radius: 3px;
}

.crypto-btn:hover {
    color: #e3e3e3;
}

.academy-guide-img1 {
    width: 90%;
    transition: all 0.8s;
}

.academy-guide-img1:hover {
    transform: scale(1.1);
}

.txt-margin {
    margin: 0px 10%;
}


/*------toggleMenu-------*/

#fixed-social {
    position: fixed;
    top: 6px;
    left: 6px;
    font-size: 20px;
}

#fixed-social a {
    color: #fff;
    display: block;
    height: 40px;
    position: relative;
    text-align: center;
    line-height: 40px;
    width: 40px;
    margin-bottom: 1px;
    z-index: 2;
}

#fixed-social a:hover > span {
    visibility: visible;
    top: 50px;
    left: 10px;
    opacity: 1;
    font-size: 16px;
}

#fixed-social a span {
    font-size: 14px;
    top: 50px;
    left: -10px;
    position: absolute;
    text-align: left;
    width: 210px;
    visibility: hidden;
    transition-duration: 0.15s;
    z-index: 1;
    opacity: 0;
}

.btn11 {
    color: #fff;
    font-weight: 400;
    letter-spacing: 1.3px;
    border: 1px solid #35a1a2;
    text-align: left !important;
    padding-left: 15px;
    cursor: pointer;
    background-color: #30c0c2;
    position: relative !important;
    width: 200px !important;
    text-decoration: none;
    left: 48%;
    top: 20px;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn11:hover {
    color: #000 !important;
    font-weight: 500;
}

.btn11 span {
    color: #000;
    display: block;
    padding-left: 35px;
    text-transform: uppercase;
    font: bold 18px/66px Arial;
    transform: scaleX(0.6);
    letter-spacing: 3px;
    transform-origin: center left;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn11 em {
    position: absolute;
    height: 1px;
    background: #fff;
    color: #000;
    width: 47%;
    right: 23px;
    top: 50%;
    transform: scaleX(0.25);
    transform-origin: center right;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn11:before,
.btn11:after {
    content: '';
    background: #58d4d6;
    height: 50%;
    width: 0;
    position: absolute;
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.btn11:before {
    top: 0;
    left: 0;
    right: auto;
    z-index: -1;
}

.btn11:after {
    bottom: 0;
    right: 0;
    left: auto;
    z-index: -1;
}

.btn11:hover:before {
    width: 100%;
    right: 0;
    left: auto;
}

.btn11:hover:after {
    width: 100%;
    left: 0;
    right: auto;
}

.btn11:hover span {
    color: #000;
}

.btn11:hover em {
    background: #000;
    color: #000;
    transform: scaleX(1);
}

.order-last {
    margin-right: 2%;
}

.filter-heading {
    font-size: 24px;
    font-weight: 500;
}

.hide-btn {
    background: none;
    border: none;
    color: #047a91;
    font-size: 14px;
    font-weight: 500;
    padding: 0.8rem 0.4rem 0 0;
}

.w-90 {
    width: 90% !important;
}

.gallery-title {
    font-size: 36px;
    color: teal;
    text-align: center;
    font-weight: 500;
    margin-bottom: 70px;
}

.gallery-title:after {
    content: "";
    position: absolute;
    width: 7.5%;
    left: 46.5%;
    height: 45px;
    border-bottom: 1px solid teal;
}

.filter-button {
    font-size: 15px;
    border: 1px solid teal;
    border-radius: 3px;
    margin: 0px 2px;
    text-align: center;
    color: teal;
    margin-bottom: 16px;
}

.filter-button:hover {
    color: #ffffff;
    background-color: teal !important;
}

.btn-default:active .filter-button:active, .filter-button:target, .filter-button:focus-visible, .filter-button:visited,
.filter-button:focus-within {
    color: #ffffff;
    background-color: teal !important;
    border: 1px solid teal !important;
    padding-left: 11px !important;
}


.port-image {
    width: 100%;
}

.gallery_product {
    margin-bottom: 30px;
}


.filters ul {
    display: flex;
    justify-content: center;
    list-style: none;
    border-bottom: 2px solid #D9D9D9;
    margin: 30px 15px
}

.filters ul li {
    display: inlnie-block;
    text-align: center;
    margin-right: 12px;
    padding: 0 5px 8px 5px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
    color: #777;
    transition: 0.3s;
    text-transform: uppercase;
}

.filters ul li:hover {
    color: #EB2D3A;
}

.filters ul li.is-checked {
    background-color: #EB2D3A;
}

.filters ul li:last-child {
    margin-right: 0;
}


.grid .grid-item h1 {
    background: #EEEEEE;
    height: 150px;
    line-height: 150px;
    color: white;
    font-size: 3em;
    text-align: center;
    margin-bottom: 30px;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    background: #f1f1f1;
    color: #444;
    font-family: "Lato", sans-serif;
    font-size: 1em;
    line-height: 1.625;
}

img {
    max-width: 100%;
    height: auto;
}

.wrap {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
}

h1 {
    margin: 50px 0;
}

.gallery-wrap,
#gallery {
    overflow: hidden;
}

#filters {
    margin: 1%;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

#filters li {
    float: left;
}

#filters li span {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
    transition: all ease-in-out 0.25s;
}

#filters li:hover span {
    color: #000;
}

#filters li span.active {
    background: #1fbae7;
    color: #fff;
}

.gallery-item {
    float: left;
    width: 33.333%;
    padding: 10px;
    position: relative;
    z-index: 10;
    display: none;
}

.flexbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    flex-wrap: wrap;
}

.flexcard {
    /*--display: flex;--*/
    flex-direction: column;
    justify-content: flex-start;
    width: 22%;
    align-items: baseline;
    height: 240px;
}

.flexcard1 {
    flex-direction: column;
    justify-content: flex-start;
    width: 18%;
    align-items: baseline;
    height: 220px;
}

@media only screen and (max-width: 800px) {
    .flexcard {
        width: 35%;
        margin-top: 20px;
    }
}

@media only screen and (max-width: 500px) {

    .flexcard {
        width: 70%;
    }
}

.snip1527 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #fff;
    float: left;
    font-family: Lato, Arial, sans-serif;
    font-size: 16px;
    margin: 1%;
    max-width: 23%;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
}

.snip1527 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.snip1527 img {
    max-width: 100%;
    vertical-align: top;
    position: relative;
}

.snip1527 figcaption {
    padding: 25px 20px;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.snip1527 figcaption:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background: -moz-linear-gradient(343deg, #bec1b7 0, #096f82 100%, #01252c 50%);
    background: -webkit-linear-gradient(343deg, #bec1b7 0, #096f82 100%, #01252c 50%);
    background: linear-gradient(343deg, #bec1b7 0, #096f82 100%, #01252c 50%);
    opacity: 0.8;
    z-index: -1;
}

.snip1527 .date {
    background-color: #fff;
    border-radius: 50%;
    color: #454545;
    font-size: 18px;
    font-weight: 700;
    min-height: 48px;
    min-width: 48px;
    padding: 10px 0;
    position: absolute;
    right: 15px;
    text-align: center;
    text-transform: uppercase;
    top: -25px;
}

.snip1527 .date span {
    display: block;
    line-height: 14px;
}

.snip1527 .date .month {
    font-size: 11px;
}

.snip1527 h3,
.snip1527 p {
    margin: 0;
    padding: 0;
}

.snip1527 h3 {
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.4px;
    margin-bottom: 5px;
}

.snip1527 p {
    font-size: 0.8em;
    line-height: 1.6em;
    margin-bottom: 0;
}

.snip1527 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

.snip1527.hover img,
.snip1527:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.table {
    margin-bottom: 0rem !important;
}


@media (min-width: 1200px) {

}
