

/* var( --first-color ) */
#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}
#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid var( --first-color );
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid var( --first-color );
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}
a:hover,
a:active {
    color: var( --first-color );
    text-decoration: none;
}
h1 {
    color: var( --first-color );
}
h1 a {
    color: var( --first-color );
}
h1 a:hover {
    color: var( --first-color );
}
h1 a:active {
    color: var( --first-color );
}
h1 a:focus {
    color: var( --first-color );
}
h2 {
    color: var( --first-color );
}
h2 a {
    color: var( --first-color );
}
h2 a:hover {
    color: var( --first-color );
}
h2 a:active {
    color: var( --first-color );
}
h2 a:focus {
    color: var( --first-color );
}
h3 {
    color: var( --first-color );
}
h3 a {
    color: var( --first-color );
}
h3 a:hover {
    color: var( --first-color );
}
h3 a:active {
    color: var( --first-color );
}
h3 a:focus {
    color: var( --first-color );
}
h4 {
    color: var( --first-color );
}
h4 a {
    color: var( --first-color );
}
h4 a:hover {
    color: var( --first-color );
}
h4 a:active {
    color: var( --first-color );
}
h4 a:focus {
    color: var( --first-color );
}
h5 {
    color: var( --first-color );
}
h5 a {
    color: var( --first-color );
}
h5 a:hover {
    color: var( --first-color );
}
h5 a:active {
    color: var( --first-color );
}
h5 a:focus {
    color: var( --first-color );
}
h6 {
    color: var( --first-color );
}
h6 a {
    color: var( --first-color );
}
h6 a:hover {
    color: var( --first-color );
}
h6 a:active {
    color: var( --first-color );
}
h6 a:focus {
    color: var( --first-color );
}
.h1 {
    color: var( --first-color );
}
.h1 a {
    color: var( --first-color );
}
.h1 a:hover {
    color: var( --first-color );
}
.h1 a:active {
    color: var( --first-color );
}
.h1 a:focus {
    color: var( --first-color );
}
.h2 {
    color: var( --first-color );
}
.h2 a {
    color: var( --first-color );
}
.h2 a:hover {
    color: var( --first-color );
}
.h2 a:active {
    color: var( --first-color );
}
.h2 a:focus {
    color: var( --first-color );
}
.h3 {
    color: var( --first-color );
}
.h3 a {
    color: var( --first-color );
}
.h3 a:hover {
    color: var( --first-color );
}
.h3 a:active {
    color: var( --first-color );
}
.h3 a:focus {
    color: var( --first-color );
}
.h4 {
    color: var( --first-color );
}
.h4 a {
    color: var( --first-color );
}
.h4 a:hover {
    color: var( --first-color );
}
.h4 a:active {
    color: var( --first-color );
}
.h4 a:focus {
    color: var( --first-color );
}
.h5 {
    color: var( --first-color );
}
.h5 a {
    color: var( --first-color );
}
.h5 a:hover {
    color: var( --first-color );
}
.h5 a:active {
    color: var( --first-color );
}
.h5 a:focus {
    color: var( --first-color );
}
.h6 {
    color: var( --first-color );
}
.h6 a {
    color: var( --first-color );
}
.h6 a:hover {
    color: var( --first-color );
}
.h6 a:active {
    color: var( --first-color );
}
.h6 a:focus {
    color: var( --first-color );
}
.min-height-300 {
    min-height: 300px;
}
.h-100vh {
    height: 100vh;
}
.primary-overlay[data-overlay-dark]:before {
    background: var( --second-color );
}
.secondary-overlay[data-overlay-dark]:before {
    background: var( --first-color );
}
.theme-overlay-dark-blue[data-overlay-dark]:before {
    background: var( --first-color );
}
.left-overlay-dark[data-overlay-dark]:before {
    background: rgba(36, 34, 112, 0.9);
    background: linear-gradient(-80deg, transparent, var( --first-color ) 55%);
}
.text-primary,
.text-primary-hover:hover {
    color: var( --first-color ) !important;
}
.bg-primary {
    background-color: var( --first-color ) !important;
}
.border-primary {
    border-color: var( --first-color ) !important;
}
.text-secondary,
.text-secondary-hover:hover {
    color: var( --second-color ) !important;
}
.bg-secondary {
    background: var( --second-color ) !important;
}
.border-secondary {
    border-color: var( --second-color ) !important;
}
.bg-dark {
    background-color: var( --first-color ) !important;
}
.text-dark,
.text-dark-hover:hover {
    color: var( --first-color ) !important;
}
.border-dark {
    border-color: var( --first-color ) !important;
}
.primary-shadow {
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
}
.rounded-start-md-10px {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.rounded-top-10px {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}
@media screen and (max-width: 767px) {
    .rounded-start-md-10px {
        border-top-left-radius: 0px;
        border-bottom-left-radius: 0px;
    }
    .rounded-top-sm-10px {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
}
.border-radius-10 {
    border-radius: 10px !important;
}
.section-bg {
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 420px;
    background-position: center center;
    background-repeat: no-repeat;
}
.min-vh-100 {
    min-height: 100vh;
}
.height-300 {
    height: 300px;
}
@media screen and (min-width: 992px) {
    .overlap-column {
        margin-bottom: 3rem;
    }
    .overlap-column > [class*="col-"]:first-child {
        position: relative;
        left: 2rem;
    }
    .overlap-column > [class*="col-"]:last-child {
        position: relative;
        left: -2rem;
        top: 3rem;
    }
}
.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #000;
    border: 1px solid #2a2a2a;
    width: 35px;
    height: 35px;
    line-height: 30px;
    z-index: 9999;
    outline: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.scroll-to-top i {
    color: #fff;
}
.scroll-to-top:hover {
    color: #1e2022;
    background: #fff;
}
.scroll-to-top:hover i {
    color: #1e2022;
}
.scroll-to-top:visited {
    color: #1e2022;
    text-decoration: none;
}
.icon-box {
    font-size: 30px;
    margin-bottom: 33px;
    display: inline-block;
    color: #ffffff;
    height: 65px;
    width: 65px;
    line-height: 65px;
    background-color: var( --second-color );
    text-align: center;
}
.icon-box.medium {
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.icon-box.small {
    font-size: 13px;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
@media screen and (max-width: 991px) {
    .icon-box {
        height: 55px;
        width: 55px;
        line-height: 55px;
        font-size: 23px;
    }
}
@media screen and (max-width: 575px) {
    .icon-box {
        height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 18px;
    }
}
.list-style1 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dee2e6;
    padding: 20px 35px;
}
.list-style1 li:last-child {
    border-bottom: unset;
}
@media screen and (max-width: 575px) {
    .list-style1 li {
        padding: 20px;
    }
}
.list-style2 {
    list-style: none;
    padding-left: 0;
}
.list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
}
.list-style2 li:last-child {
    margin-bottom: 0;
}
.list-style2 li:before {
    content: "\e64d";
    font-family: var( --body-fonts );
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 35px;
    color: var( --second-color );
}
.butn {
    padding: 13px 20px;
    background: var( --second-color );
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    display: inline-block;
    min-width: 170px;
    text-align: center;
    border-radius: 50%;
    border-radius: 60px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: capitalize;
    transition: box-shadow 0.5s;
}
.butn:hover,
.butn:active,
.butn:focus {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    background: var( --second-color );
    border: none;
    transition: box-shadow 0.5s;
    -webkit-box-shadow: inset 0 0 0 2em var( --first-color );
    -moz-box-shadow: inset 0 0 0 2em var( --first-color );
    box-shadow: inset 0 0 0 2em var( --first-color );
}
.butn.primary {
    background: var( --first-color );
}
.butn.primary:hover,
.butn.primary:active,
.butn.primary:focus {
    background: var( --first-color );
    -webkit-box-shadow: inset 0 0 0 2em var( --second-color );
    -moz-box-shadow: inset 0 0 0 2em var( --second-color );
    box-shadow: inset 0 0 0 2em var( --second-color );
}
.butn.small {
    padding: 8px 20px !important;
    font-size: 15px;
    min-width: 125px;
}
.butn.medium {
    padding: 13px 20px !important;
    font-size: 15px;
    min-width: 140px;
}
.btn-style2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var( --second-color );
    color: #fff;
    border: 2px solid var( --second-color );
    line-height: 1;
    font-weight: 800;
    position: relative;
    outline: none;
    transition: all 0.4s ease;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px !important;
    padding: 18px 28px;
    z-index: 9;
    border-radius: 0;
    text-transform: uppercase;
}
.btn-style2:after {
    content: "";
    position: absolute;
    height: 0%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: -1;
    transition: all 0.35s ease 0s;
    background: #ffffff;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-25deg);
    transform: translateX(-50%) translateY(-50%) rotate(-25deg);
}
.btn-style2:hover,
.btn-style2:active,
.btn-style2:focus {
    color: #fff !important;
    border-color: var( --first-color );
    background: var( --first-color );
}
.btn-style2:hover:after,
.btn-style2:active:after,
.btn-style2:focus:after {
    height: 450%;
    transition: all 1s ease 0s;
    background: var( --first-color );
}
.btn-style2.primary {
    background: var( --first-color );
    color: #fff;
    border: 2px solid var( --first-color );
}
.btn-style2.primary:after {
    background: #ffffff;
}
.btn-style2.primary:hover,
.btn-style2.primary:active,
.btn-style2.primary:focus {
    color: #fff !important;
    border-color: var( --second-color );
    background: var( --second-color );
}
.btn-style2.primary:hover:after,
.btn-style2.primary:active:after,
.btn-style2.primary:focus:after {
    background: var( --second-color );
}
.btn-style2.medium {
    padding: 13px 22px !important;
}
.btn-style2.small {
    padding: 10px 18px !important;
}
.btn-style3 {
    display: inline-block;
    background-color: var( --first-color );
    color: #fff !important;
    padding: 16px 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    transition-duration: 0.3s;
}
.btn-style3.secondary {
    background-color: var( --second-color );
}
.btn-style3.secondary:hover {
    background-color: var( --first-color );
}
.btn-style3:hover {
    background-color: black;
    color:white;
}
.btn-style3.white:hover {
    background-color: #fff;
    color: var( --first-color ) !important;
}
.btn-style3.white:hover span {
    color: var( --first-color );
}
.btn-style3.medium {
    padding: 13px 22px !important;
    font-size: 14px;
}
.btn-style3.small {
    padding: 10px 18px !important;
    font-size: 14px;
}
.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}
.top-bar-info ul {
    margin-bottom: 0;
}
.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0;
}
.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
}
#top-bar {
    display: block;
    position: relative;
    z-index: 999;
    background: var( --first-color );
    padding: 7px 0;
}
.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}
.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px;
}
.top-social-icon li:last-child {
    padding-right: 0;
}
.top-social-icon li:last-child a {
    padding-right: 0;
}
.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 0 3px;
}
.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.85);
}
.top-social-icon li a:active {
    color: rgba(255, 255, 255, 0.85);
}
.top-social-icon li a:focus {
    color: rgba(255, 255, 255, 0.85);
}
.navbar-nav li.current > a {
    color: var( --second-color );
}
.navbar-nav li.active > a {
    color: var( --second-color );
}
.attr-nav > ul > li > a.butn {
    color: #fff;
}
.navbar > ul > li.current > a:after {
    border-color: transparent var( --second-color ) var( --second-color ) transparent;
}
.menu_area-light .navbar-nav li.current > a {
    color: var( --second-color );
}
.menu_area-light .navbar-nav li.active > a {
    color: var( --second-color );
}
.menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent var( --second-color ) var( --second-color ) transparent;
}
.menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: var( --second-color );
}
.menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: var( --second-color );
}
.menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: var( --second-color );
}
.menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent var( --second-color ) var( --second-color ) transparent;
}
.navbar ul ul > li.has-sub:hover > a:before {
    top: 15px;
}
.navbar ul ul li.has-sub > a:before {
    top: 15px;
    right: 26px;
    width: 2px;
    height: 10px;
    background: var( --second-color );
}
.navbar ul ul li.has-sub > a:after {
    top: 19px;
    right: 22px;
    width: 10px;
    height: 2px;
    background: var( --second-color );
}
@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a {
        color: var( --second-color );
    }
    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
        border-color: var( --second-color );
    }
    .menu_area-light .navbar-nav li.has-sub a:hover {
        color: white;
    }
    .menu_area-light .navbar-nav li.has-sub ul li a:hover {
        color: black;
        margin-left: 10px;
        delay: 100ms;
    }
    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: var( --second-color );
    }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
        color: var( --second-color );
    }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
        border-color: transparent var( --second-color ) var( --second-color ) transparent;
    }
    .header-style2.scrollHeader .navbar-nav li.current > a {
        color: var( --second-color );
    }
    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
        color: var( --second-color );
    }
    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
        border-color: transparent var( --second-color ) var( --second-color ) transparent;
    }
    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
        border-color: transparent var( --second-color ) var( --second-color ) transparent;
    }
    .header-style2 .navbar > ul > li.has-sub > a:hover:after {
        border-color: transparent var( --second-color ) var( --second-color ) transparent;
    }
    .header-style2 .navbar > ul > li.has-sub > a:active:after {
        border-color: transparent var( --second-color ) var( --second-color ) transparent;
    }
    .header-style2 .navbar > ul > li.has-sub > a:focus:after {
        border-color: transparent var( --second-color ) var( --second-color ) transparent;
    }
    .header-style2 .navbar ul ul li.active > a {
        color: var( --second-color );
    }
    .header-style2 .navbar-nav li.has-sub a:hover {
        color: var( --second-color );
    }
    .header-style2 .navbar-nav li.has-sub a:active {
        color: var( --second-color );
    }
    .header-style2 .navbar-nav li.has-sub a:focus {
        color: var( --second-color );
    }
    .header-style2 .navbar-nav li.current > a {
        color: var( --second-color );
    }
    .header-style2 .navbar-nav li.active > a {
        color: var( --second-color );
    }
    .navbar-nav li > ul {
        min-width: 270px;
        -webkit-box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
    }
    .navbar ul ul li {
        margin-bottom: 0;
        padding: 0;
    }
    .navbar-nav li > ul {
        padding: 15px 0;
        margin-left: 0;
    }
    .navbar-nav li a {
        font-size: 18px;
        font-weight: 600;
        padding: 8px 42px 8px 32px;
    }
    .navbar-nav > li > a {
        font-size:16px;
        font-weight: 800;
        padding: 18px 1.1rem;
    }
    .navbar-nav li.has-sub > ul:after {
        position: absolute;
        z-index: 1;
        height: 23px;
        width: 11px;
        bottom: 0px;
        right: 0px;
        background: var( --first-color );
    }
    .navbar-nav li.has-sub > ul:before {
        position: absolute;
        z-index: 1;
        height: 19px;
        width: 8px;
        bottom: 12px;
        right: 11px;
        background: var( --second-color );
    }
}
@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: var( --first-color );
    }
    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
    .header-style1 .navbar-toggler:before {
        background: #fff;
    }
    .header-style1 .navbar-toggler.menu-opened:after {
        background: #fff;
    }
    .header-style1 .navbar-toggler.menu-opened:before {
        background: #fff;
    }
}
.header-style2 .navbar-nav li.current > a {
    color: var( --second-color );
}
.header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent var( --second-color ) var( --second-color ) transparent;
}
.header-style2.scrollHeader .navbar-nav li.current > a {
    color: var( --second-color );
}
.header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: var( --second-color );
}
.header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent var( --second-color ) var( --second-color ) transparent;
}
@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
        color: var( --second-color );
    }
    .header-style2 .butn.secondary:before {
        background: #ffffff;
    }
    .header-style2 .butn.secondary:hover {
        color: #18455d !important;
    }
    .header-style2 .butn.secondary:focus {
        color: #18455d !important;
    }
    .header-style2 .butn.secondary:active {
        color: #18455d !important;
    }
    .header-style2.scrollHeader .butn.secondary:before {
        background: var( --second-color );
    }
    .header-style2.scrollHeader .butn.secondary:hover {
        color: #fff !important;
    }
    .header-style2.scrollHeader .butn.secondary:focus {
        color: #fff !important;
    }
    .header-style2.scrollHeader .butn.secondary:active {
        color: #fff !important;
    }
}
.sec-title {
    position: relative;
    display: block;
    padding-bottom: 3.5rem;
}
.sec-title .border-box {
    position: relative;
    display: block;
    width: 80px;
    height: 7px;
}
.sec-title .border-box:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    content: "";
    background: var( --first-color );
}
.sec-title .border-box:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    content: "";
    background: var( --first-color );
}
.sec-title .border-box.center {
    margin: 0 auto;
}
.sec-title .border-box.center:after {
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.sec-title span {
    color: var( --first-color );
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    z-index: 1;
    font-weight: 800;
    text-transform: uppercase;
    padding-right: 15px;
}
.sec-title span:before {
    position: absolute;
    content: "";
    z-index: 1;
    height: 5px;
    width: 3px;
    bottom: 9px;
    right: 5px;
    background: var( --second-color );
}
.sec-title span:after {
    position: absolute;
    content: "";
    z-index: 1;
    height: 7px;
    width: 3px;
    bottom: 6px;
    right: 0px;
    background: var( --first-color );
}
.sec-title span.white {
    color: #fff;
}
.sec-title span.white:before {
    background: #fff;
}
.sec-title span.white:after {
    background: #fff;
}
.sec-title.half {
    padding-bottom: 2.2rem;
}
.sec-title2 span {
    position: relative;
    z-index: 1;
    padding-left: 10px;
    padding-bottom: 15px;
    display: inline-block;
}
.sec-title2 span:before {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: 8px;
    height: 8px;
    top: -1px;
    content: "";
    left: -10px;
    background-color: var( --second-color );
    border-radius: 50%;
}
.sec-title2.white span:before {
    background-color: #fff;
}
.sec-title2.orange span:before {
    background-color: var( --first-color );
}
.small-title {
    padding: 3px 15px;
    background-color: var( --second-color );
    margin-bottom: 15px;
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
}
.small-title.white {
    background-color: rgba(255, 255, 255, 0.2);
}
.sidebar-title {
    color: var( --first-color );
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}
.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: var( --first-color );
    opacity: 0.7;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
.slider-fade .banner-sub-title {
    animation-delay: 0.6s;
}
.slider-fade h1 {
    margin-bottom: 25px;
    animation-delay: 1.6s;
}
.slider-fade p {
    animation-delay: 1.2s;
    position: relative;
    text-transform: uppercase;
    font-weight: 800;
}
.slider-fade a {
    animation-delay: 2s;
}
.slider-fade .owl-dots {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 !important;
}
.slider-fade.owl-theme .owl-dots {
    counter-reset: dots;
    font-size: 1.7rem;
    color: #fff;
}
.slider-fade.owl-theme .owl-dots .owl-dot {
    position: relative;
}
.slider-fade.owl-theme .owl-dots .owl-dot.active {
    color: #fff;
}
.slider-fade.owl-theme .owl-dots .owl-dot:before {
    counter-increment: dots;
    position: absolute;
    right: 25px;
    font-weight: 700;
    z-index: 2;
    font-size: 28px;
    top: 3px;
}
.slider-fade.owl-theme .owl-dots .owl-dot span {
    transition: all 0.4s ease;
    background: var( --first-color );
    height: 53px;
    width: 46px;
    border-radius: 0;
    position: relative;
    margin: 0 20px 0 0;
}
.slider-fade.owl-theme .owl-dots .owl-dot.active:before,
.slider-fade.owl-theme .owl-dots .owl-dot:hover:before {
    top: 18px;
}
.slider-fade.owl-theme .owl-dots .owl-dot.active span,
.slider-fade.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var( --second-color );
    height: 70px;
}
.slider-fade.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    right: inherit;
    top: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border: none;
    background: var( --second-color );
    border-radius: 60px;
    line-height: 65px;
    transition-duration: 500ms;
    left: 15px;
    text-align: center;
    margin: auto;
    opacity: 0.35;
}
.slider-fade.owl-theme .owl-nav .owl-next {
    top: 0;
    bottom: 0;
    left: inherit;
    right: 15px;
}
.slider-fade.owl-theme .owl-nav .owl-next:hover {
    opacity: 1;
    background: var( --second-color );
}
.slider-fade.owl-theme .owl-nav .owl-prev:hover {
    opacity: 1;
    background: var( --second-color );
}
.slider-fade .owl-nav i,
.slider-fade .owl-nav span {
    font-weight: 600;
    color: #fff;
    transition-duration: 500ms;
    font-size: 20px;
}
.slider-fade .owl-nav .owl-next:hover i,
.slider-fade .owl-nav .owl-prev:hover i {
    color: #fff;
}
.slider-fade .banner-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    line-height: 110px;
    margin: -25px auto 20px auto;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    display: inline-block;
    left: 0;
    right: 0;
    animation-delay: 0.6s;
    transition: 0.3s;
}
.slider-fade .main-banner-area {
    transition: 0.3s;
}
.slider-fade .main-banner-area:hover .banner-icon {
    background: var( --first-color );
}
.page-title-section {
    padding: 160px 0 100px 0;
}
.page-title-section h1 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 0;
    word-break: break-word;
    font-size: 64px;
    text-align: left;
}
.page-title-section ul {
    margin: 0;
    list-style: none;
    display: inline-block;
    line-height: 1.2;
    text-transform: uppercase;
    position: absolute;
    bottom: -100px;
    background: #fff;
    padding: 15px 30px;
    left: 0;
    max-width: 90%;
}
.page-title-section ul li {
    display: inline-block;
    color: var( --second-color );
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
    padding-right: 25px;
    font-size: 14px;
}
.page-title-section ul li:last-child {
    padding-right: 0;
}
.page-title-section ul li:last-child:before {
    content: none;
}
.page-title-section ul li:last-child:after {
    content: none;
}
.page-title-section ul li:last-child a {
    color: var( --second-color );
}
.page-title-section ul li:before {
    position: absolute;
    content: "";
    z-index: 1;
    height: 5px;
    width: 3px;
    bottom: 7px;
    right: 10px;
    background: var( --second-color );
}
.page-title-section ul li:after {
    position: absolute;
    content: "";
    z-index: 1;
    height: 7px;
    width: 3px;
    bottom: 4px;
    right: 5px;
    background: var( --first-color );
}
.page-title-section ul li:last-child:after {
    content: none;
}
.page-title-section ul li a {
    color: var( --first-color );
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-title-section .shape-one {
    position: absolute;
    height: 60px;
    width: 30px;
    background: var( --second-color );
    bottom: 45px;
    right: 30px;
    overflow: hidden;
    z-index: 9;
}
.page-title-section .shape-one:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.page-title-section .shape-one:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.page-title-section .shape-two {
    background: var( --first-color );
    bottom: 75px;
    right: 68px;
    height: 38px;
    width: 18px;
    position: absolute;
    overflow: hidden;
    z-index: 9;
}
.page-title-section .shape-two:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.page-title-section .shape-two:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.page-title-section > .container > ul {
    left: 15px;
}
.page-title-section > .container .shape-one {
    bottom: -105px;
}
.page-title-section > .container .shape-two {
    bottom: -75px;
}
@media screen and (max-width: 1199px) {
    .page-title-section {
        padding: 150px 0 100px 0;
    }
    .page-title-section h1 {
        font-size: 54px;
    }
    .page-title-section .shape-one {
        bottom: 15px;
    }
    .page-title-section .shape-two {
        bottom: 55px;
    }
}
@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 130px 0 100px 0;
    }
    .page-title-section h1 {
        font-size: 48px;
    }
}
@media screen and (max-width: 767px) {
    .page-title-section {
        padding: 130px 0 100px 0;
    }
    .page-title-section h1 {
        font-size: 40px;
    }
}
.page-title-section.style2 ul {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
}
.card-style1 {
    transition: 0.3s;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    position: relative;
    height: 100%;
}
.card-style1:before {
    content: "";
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}
.card-style1:hover:before {
    opacity: 1;
}
.card-style1:hover .card-body {
    background-color: transparent;
}
.card-style1:hover h3,
.card-style1:hover p,
.card-style1:hover a,
.card-style1:hover .card-footer i {
    color: #fff;
}
.card-style1 .card-body {
    background-color: #fff;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
.card-style1 .card-footer {
    background-color: #fff;
    border-top-color: #eee;
}
.card-style1:hover .card-footer {
    background-color: transparent;
    border-top-color: rgba(255, 255, 255, 0.5);
}
.card-style1:hover .card-icon {
    -webkit-transform: translateY(-10px) translate3d(0, -10px, 0);
    -moz-transform: translateY(-10px) translate3d(0, -10px, 0);
    -ms-transform: translateY(-10px) translate3d(0, -10px, 0);
    transform: translateY(-10px) translate3d(0, -10px, 0);
    background: var( --first-color );
}
.card-style1 .card-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    text-align: center;
    background: var( --second-color );
    line-height: 110px;
    margin: -100px auto 20px auto;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -moz-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -ms-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    -o-transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
    transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}
.card-style1 .card-border::before {
    position: absolute;
    content: "";
    background: #eee;
    width: 1px;
    height: 45px;
    top: 10%;
    transition: 0.3s;
}
.card-style1 .card-border::after {
    position: absolute;
    content: "";
    background: #eee;
    width: 1px;
    height: 45px;
    transition: 0.3s;
    bottom: 30px;
    opacity: 0;
    transition: 0.3s;
}
.card-style1:hover .card-border::after {
    background: var( --first-color );
    opacity: 1;
    bottom: -45px;
    transition: 0.3s;
}
.card-style2 {
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease-out 0s;
}
.card-style2:hover {
    background-color: var( --second-color );
}
.card-style2 .card-icon {
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 120px;
    line-height: 1;
    z-index: 0;
    opacity: 0.1;
    color: var( --second-color );
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.card-style2:hover .card-icon,
.card-style2:hover p,
.card-style2:hover a {
    color: #fff;
}
.card-style2 .card-body .card-btn a {
    background-color: var( --second-color );
    color: #fff;
    line-height: 50px;
    display: block;
    text-align: center;
    height: 50px;
    width: 50px;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    z-index: 5;
    transition: all 0.5s ease-in-out;
    position: relative;
}
.card-style2:hover .card-body .card-btn a {
    background-color: #fff;
    color: var( --second-color );
}
@media screen and (max-width: 991px) {
    .card-style2 .card-icon {
        font-size: 100px;
    }
}
.services-top {
    margin-top: -90px;
    z-index: 9;
}
@media screen and (max-width: 1199px) {
    .services-top {
        margin-top: -70px;
    }
}
.card-style3 .card-body {
    padding: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.card-style3 .card-body:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(28, 191, 170, 0.9);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s 0.5s;
}
.card-style3:hover .card-body:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
    transition: transform 0.5s cubic-bezier(0.57, 0.04, 0.06, 0.84), opacity 0s;
}
.card-style3 .card-body .portfolio-icon {
    overflow: hidden;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 1;
}
.card-style3 .card-body .portfolio-icon .top-icon {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
    will-change: transform, opacity;
}
.card-style3:hover .card-body .portfolio-icon .top-icon {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s, opacity 0.2s 0.2s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.2s, opacity 0.2s 0.2s;
}
.card-style3 .card-body .portfolio-icon .top-icon a {
    border: 2px solid transparent;
    display: inline-block;
    position: relative;
    transition: all 0.2s ease;
    color: #fff;
    font-size: 24px;
    height: 73px;
    line-height: 70px;
    text-align: center;
    width: 75px;
    background-color: var( --first-color );
}
.card-style3 .card-body .portfolio-content {
    position: absolute;
    bottom: 33px;
    z-index: 9;
    left: 25px;
    right: 25px;
}
.card-style3 .card-body .portfolio-content span {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
    will-change: transform, opacity;
    padding-bottom: 10px;
    display: block;
}
.card-style3:hover .card-body .portfolio-content span {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
}
.card-style3 .card-body .portfolio-content h3 {
    position: relative;
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.2s;
    transition: transform 0.4s, opacity 0.2s;
    will-change: transform, opacity;
}
.card-style3:hover .card-body .portfolio-content h3 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
    transition: transform 0.6s cubic-bezier(0.57, 0.04, 0.06, 0.84) 0.1s, opacity 0.2s 0.1s;
}
.card-style3 .card-body.round:after {
    border-radius: 0.3rem;
}
@media screen and (max-width: 1199px) {
    .card-style3 .card-body .portfolio-content {
        bottom: 15px;
        left: 25px;
    }
    .card-style3 .card-body .portfolio-icon .top-icon a {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 17px;
    }
}
@media screen and (max-width: 575px) {
    .card-style3 .card-body .portfolio-icon .top-icon a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
    }
}
.card-style4 {
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    word-break: break-word;
}
.card-style4 .blog-img .category {
    color: #fff;
    text-align: center;
    background-color: var( --first-color );
    font-size: 16px;
    display: block;
    padding: 8px 15px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}
.card-style4 .blog-img .category:hover {
    color: #fff;
    background-color: var( --second-color );
}
.card-style4 .blog-img:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.card-style4:hover .blog-img:before {
    -webkit-animation: circle 0.75s;
    animation: circle 0.75s;
}
.card-style4 .blog-img .category {
    color: inherit;
    background-color: inherit;
    padding: 0;
    right: 15px;
    position: absolute;
    top: 16px;
    text-align: left;
}
.card-style4 .blog-img .category a {
    color: #fff;
}
.card-style4 .blog-img .category:hover {
    background: transparent;
    color: inherit;
}
.card-style4 .blog-img .category a {
    color: #fff;
    text-align: center;
    background-color: var( --second-color );
    font-size: 14px;
    display: inline-block;
    padding: 6px 12px;
    margin-left: 4px;
    margin-top: 4px;
    font-weight: 700;
    text-transform: uppercase;
}
.card-style4 .blog-img .category a:last-child {
    margin-right: 0;
}
.card-style4 .blog-img .category a:hover {
    color: #fff;
    background-color: var( --first-color );
}
.card-style4 .blog-img .category.rounded-pill a {
    border-radius: 50rem;
    font-size: 12px;
}
.card-style4 .blog-img > span:first-child {
    position: inherit;
    left: 0;
    top: -4px;
    display: inline-block;
    text-align: left;
}
.card-style5 .card-body .icon-holder .box {
    position: absolute;
    top: -6px;
    right: -3px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    background-color: rgba(28, 191, 170, 0.2);
    transition: all 500ms ease;
}
.card-style5:hover .icon-holder .box {
    background-color: var( --first-color );
}
.card-style5 .card-body .icon-holder span:before {
    position: relative;
    display: inline-block;
    color: var( --second-color );
    font-size: 65px;
    line-height: 65px;
    transform: scale(1);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}
.card-style5:hover .icon-holder span:before {
    color: #232323;
    transform: scale(0.9);
}
.card-style5 .card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.card-style6 {
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.5s ease-in-out;
    border: none;
    height: 100%;
}
.card-style6 .card-image {
    width: 190px;
    margin: 0 auto;
    border-radius: 50% !important;
    position: relative;
    overflow: hidden;
    height: 190px;
}
.card-style6 .card-image:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}
.card-style6:hover .card-image:before {
    -webkit-animation: circle 0.95s;
    animation: circle 0.95s;
}
.card-style6 .card-icon {
    width: 60px;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    background-color: var( --first-color );
    color: #fff;
    position: absolute;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.card-style6:hover .link-box .overlay-btn {
    opacity: 1;
    transform: translateX(-50%) scale(1, 1);
    color: var( --second-color );
}
.card-style6 .link-box .overlay-btn {
    left: 50%;
    transform: translateX(-50%) scale(0, 0);
    bottom: 0px;
    opacity: 0;
    padding-right: 30px;
    min-width: 125px;
    transition: all 500ms ease;
}
.card-style6 .link-box .overlay-btn i {
    top: 7px;
    right: 0px;
}
.card-style6:hover .link-box .link-btn {
    opacity: 0;
}
@-webkit-keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
@keyframes circle {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}
.card-style7 .card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
    text-align: left;
    opacity: 0;
    transition: 0.5s;
    overflow: hidden;
}
.card-style7:hover .card-body {
    opacity: 1;
}
.card-style7 .portfolio-content {
    position: absolute;
    left: -80px;
    bottom: 0;
    background-color: #fff;
    padding: 30px 40px;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}
.card-style7:hover .portfolio-content {
    left: 0;
    visibility: visible;
    opacity: 1;
}
.card-style7 .portfolio-content span {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}
.card-style7 .portfolio-content .content-inner {
    border-left: 3px solid var( --second-color );
    padding: 0 0 0 20px;
}
.card-style7:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s;
    background-color: rgba(19, 136, 215, 0.7);
}
.card-style7:hover:before {
    opacity: 1;
}
@media screen and (max-width: 1199px) {
    .card-style7 .portfolio-content {
        padding: 20px;
    }
}
.card-style8 {
    height: 100%;
}
.card-style8 .social-icon {
    position: absolute;
    left: 0;
    bottom: -45px;
    padding: 30px 0 0 0;
    right: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    text-align: center;
}
.card-style8 .social-icon ul li {
    display: inline-block;
    margin: 0 5px 0 0;
}
.card-style8:hover .social-icon {
    bottom: 15px;
}
.card-style8 .social-icon ul li a {
    display: inline-block;
    color: #ffffff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var( --second-color );
}
.card-style8 .social-icon ul li a:hover {
    background-color: var( --first-color );
}
.card-style11 {
    border-radius: 10px;
    height: 100%;
}
.card-style11 .icon i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var( --first-color );
    text-align: center;
    color: #fff;
    font-size: 36px;
    position: absolute;
    top: -38px;
    right: 30px;
}
.card-style12 .team-img span {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var( --first-color );
    color: #fff;
    padding: 10px 20px;
    line-height: 35px;
    right: 0;
    margin: 0 auto;
    text-align: center;
    max-width: 210px;
}
.card-style12 .card-body {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.card-style12 .card-body:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var( --second-color );
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    transition: all 0.4s ease;
    opacity: 0;
}
.card-style12:hover .card-body:before {
    content: "";
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}
.card-style12:hover .card-body h3,
.card-style12:hover .card-body a {
    color: #fff;
}
.card-style12:hover .card-body ul li .icon-box.small {
    background-color: #fff;
    color: var( --second-color );
}
.card-style13 .card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 10px;
    background: rgba(28, 191, 170, 0.9);
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
    transition: all 0.4s ease;
    opacity: 0;
}
.card-style13:hover .card-body {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.card-style13 .card-body .hover-content .hover-inner {
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all 700ms ease 500ms;
}
.card-style13:hover .card-body .hover-content .hover-inner {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.card-style14 {
    transition: 0.3s;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    position: relative;
    height: 100%;
}
.card-style14 .card-body {
    padding: 1.5rem;
}
.about-main-img:before {
    width: 20px;
    height: 40px;
    content: "";
    background-color: var( --second-color );
    position: absolute;
    right: 72px;
    bottom: 20px;
}
.about-main-img:after {
    width: 35px;
    height: 60px;
    background-color: #ffffff;
    position: absolute;
    bottom: -20px;
    right: 30px;
    content: "";
}
.about-bg {
    top: 0;
    left: 0;
    width: 40%;
    content: "";
    height: 100%;
    position: absolute !important;
    z-index: 0;
}
.shape1 {
    width: 45px;
    height: 70px;
    background-color: var( --second-color );
    position: absolute;
    top: -40px;
    right: 30px;
}
.shape2 {
    width: 25px;
    height: 50px;
    background-color: var( --first-color );
    position: absolute;
    right: 85px;
    top: -60px;
}
.about2-yearbox {
    background-color: #232323;
    color: #fff;
    position: absolute;
    width: 200px;
    padding: 30px;
    bottom: 20px;
    left: 25%;
}
blockquote:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 10px;
    background-color: #fff;
}
p.quote-box:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 10px;
    background-color: #575a7b;
}
.about-3 .about-img-content {
    position: absolute;
    text-align: center;
    box-shadow: 0px 5px 83px 0px rgba(27, 26, 26, 0.06);
    background-color: #fff;
    top: 20%;
    width: 230px;
    padding: 25px;
    left: -30px;
}
.about-3 .about-img:before {
    width: 18px;
    height: 34px;
    position: absolute;
    background: var( --second-color );
    right: 50px;
    bottom: 30%;
}
.about-3 .about-img:after {
    width: 35px;
    height: 54px;
    position: absolute;
    background: #ffffff;
    right: 10px;
    bottom: 24%;
}
.about-3 .about-text {
    padding: 20px 50px 20px 20px;
    transition-duration: 0.3s;
}
.about-3 .about-text:hover {
    box-shadow: 4px 4px 36px 0px rgba(0, 0, 0, 0.07);
}
.about-3 .about-text i {
    position: relative;
    z-index: 9;
}
.about-3 .about-text i:after {
    content: "";
    top: 0px;
    right: -3px;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    background-color: rgba(19, 136, 215, 0.2);
    transition: all 500ms ease;
    position: absolute;
    z-index: -1;
}
.about-3 .about-text:hover i:after {
    background-color: var( --second-color );
}
@media screen and (max-width: 575px) {
    .about-3 .about-img:before {
        right: 101px;
        bottom: 35px;
    }
    .about-3 .about-img:after {
        right: 60px;
        bottom: 0;
    }
    .about-3 .about-text {
        padding: 20px;
    }
}
.about-4 img {
    position: absolute;
    top: 0;
    left: 0;
}
.about-5 .about-shape1 {
    position: absolute;
    height: 60px;
    width: 30px;
    background: var( --first-color );
    bottom: 0;
    right: 30px;
    overflow: hidden;
}
.about-5 .about-shape1:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape1:before {
    background: var( --first-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape2 {
    background: var( --second-color );
    bottom: 40px;
    right: 68px;
    height: 38px;
    width: 18px;
    position: absolute;
    overflow: hidden;
}
.about-5 .about-shape2:after {
    background: var( --first-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape2:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape3 {
    position: absolute;
    content: "";
    height: 52px;
    width: 35px;
    background: #fff;
    left: 20px;
    top: 0;
    overflow: hidden;
}
.about-5 .about-shape3:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape3:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape4 {
    position: absolute;
    content: "";
    height: 38px;
    width: 20px;
    background: var( --second-color );
    top: -18px;
    left: 61px;
    overflow: hidden;
}
.about-5 .about-shape4:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-shape4:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.about-5 .about-image {
    position: relative;
}
.about-5 .about-img-text {
    margin: 0 auto;
    position: absolute;
    width: 90%;
    left: 0;
    right: 0;
    bottom: 40px;
}
.about-5 .list-style2 li {
    line-height: 1.7;
    padding-left: 35px;
    position: relative;
    margin-bottom: 2rem;
}
.about-5 .list-style2 li:last-child {
    margin-bottom: 0;
}
.about-5 .list-style2 li:before {
    top: 2px;
    line-height: normal;
    content: "\e64c";
}
.about-5 h6 {
    font-size: 18px;
    font-weight: 700;
}
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
    padding-bottom: 75%;
}
.fullscreen-bg {
    position: absolute;
    top: -15px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}
.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%;
    }
}
@media (max-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%;
    }
}
@supports (-webkit-touch-callout: none) {
    @media (min-aspect-ratio: 16 / 9) {
        .fullscreen-bg__video {
            height: 400%;
            top: -100%;
        }
    }
    @media (max-aspect-ratio: 16 / 9) {
        .fullscreen-bg__video {
            width: 400%;
            left: -100%;
        }
    }
}
.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: var( --first-color );
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}
.video_btn:hover i,
.video_btn:focus i {
    color: #fff;
}
.video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid var( --first-color );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: pulse-border 1500ms ease-out infinite;
}
.video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid var( --first-color );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: pulse-border 1500ms ease-out infinite;
}
.video_btn.small {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.video_btn.small:after {
    height: 50px;
    width: 50px;
}
.video_btn.small:before {
    height: 65px;
    width: 65px;
}
@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 75px;
    }
    .video_btn:after {
        height: 75px;
        width: 75px;
    }
    .video_btn:before {
        height: 90px;
        width: 90px;
    }
}
@media screen and (max-width: 991px) {
    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
    .video_btn:after {
        height: 70px;
        width: 70px;
    }
    .video_btn:before {
        height: 85px;
        width: 85px;
    }
    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
        }
    }
}
@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 60px;
    }
    .video_btn:after {
        height: 60px;
        width: 60px;
    }
    .video_btn:before {
        height: 75px;
        width: 75px;
    }
}
.filtering {
    margin-bottom: 40px;
}
.filtering span {
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
    margin: 5px;
    padding: 6px 15px;
    background: transparent;
    color: var( --second-color );
    border-radius: 0.3rem;
    border: 2px solid var( --second-color );
}
.filtering .active {
    color: #ffffff;
    background: var( --first-color );
    border: 2px solid var( --first-color );
}
.portfolio-details {
    position: relative;
}
.portfolio-details .box-shape1 {
    position: absolute;
    width: 17px;
    height: 35px;
    bottom: -15px;
    background-color: var( --first-color );
    right: 47px;
    overflow: hidden;
}
.portfolio-details .box-shape1:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.portfolio-details .box-shape1:before {
    background: var( --first-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.portfolio-details .box-shape2 {
    position: absolute;
    width: 35px;
    height: 50px;
    bottom: 0;
    background-color: #fff;
    right: 5px;
    overflow: hidden;
}
.portfolio-details .box-shape2:after {
    background: var( --first-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.portfolio-details .box-shape2:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.pagination {
    border-radius: 0;
    padding: 0;
}
.pagination li {
    display: inline-block;
    margin-left: 5px;
    margin-top: 1rem;
}
.pagination a,
.pagination span.current {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    border-radius: 0;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #dbdbdb;
    background: #fff;
}
.pagination a:hover {
    background-color: var( --first-color );
    color: #fff;
}
.pagination .active a {
    background-color: var( --first-color );
    color: #fff;
    cursor: default;
}
.pagination span.current {
    background-color: var( --first-color );
    color: #fff;
    border-color: transparent;
}
.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f7ff;
    padding: 0;
}
.prev-page,
.next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px;
}
.prev-page:before,
.next-page:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: 0.3s ease-in-out;
    pointer-events: none;
}
.prev-page .page-info > a,
.next-page .page-info > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s;
}
.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    border-radius: 4px;
    overflow: hidden;
}
.next-page .page-info .image-prev,
.next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    transition: inherit;
    overflow: hidden;
}
.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}
.next-page .page-info .prev-title,
.next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 16px;
    line-height: 1.5;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s;
}
.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
    display: none;
}
.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
    display: none;
}
.prev-page:hover:before,
.next-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1);
}
.prev-page a {
    justify-content: flex-start;
    text-align: left;
}
.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1;
}
.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0;
}
.prev-page .image-prev {
    margin-right: 20px;
}
.prev-page .image-prev:after {
    background-color: var( --second-color );
}
.next-page .image-next:after {
    background-color: var( --second-color );
}
.prev-page .image-prev:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: 20px;
    content: "\e64a";
    font-family: var( --body-fonts );
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.prev-page .image-prev:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.next-page {
    margin-left: auto;
}
.next-page a {
    justify-content: flex-end;
    text-align: right;
}
.next-page a:hover .image-next:after {
    visibility: visible;
    opacity: 1;
}
.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0;
}
.next-page .image-next {
    margin-left: 20px;
}
.next-page .image-next:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-right: 20px;
    content: "\e64a";
    font-family: var( --body-fonts );
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    transform: scaleX(-1);
}
.next-page .image-next:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
}
.next-page .next-title {
    text-align: right;
}
.prev-link-page-info > span,
.next-link-page-info > span {
    display: block;
}
.prev-link-page-info .date-details,
.next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 20px;
    margin-bottom: -2px;
}
.prev-link-page-info .date-details > div,
.prev-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}
.next-link-page-info .date-details > div,
.next-link-page-info .date-details > span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500;
}
.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
    margin-top: 0;
}
@media (max-width: 767px) {
    .prev-page,
    .next-page {
        width: calc(100% - 20px);
        max-width: unset;
    }
    .prev-page + .next-page {
        margin-top: 0;
    }
    .page-navigation {
        flex-direction: column;
    }
}
@media (max-width: 575px) {
    .prev-page .page-info > a,
    .next-page .page-info > a {
        padding: 10px;
    }
    .prev-page .page-info .prev-title,
    .prev-page .page-info .next-title {
        max-width: 168px;
    }
    .next-page .page-info .prev-title,
    .next-page .page-info .next-title {
        max-width: 168px;
    }
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var( --first-color );
}
.owl-nav i,
.owl-nav span {
    color: #232323;
    font-size: 28px;
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.accordion-style .card {
    background: transparent;
    box-shadow: none;
    margin-top: 0 !important;
    border-radius: 0.3rem;
}
.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: none;
}
.accordion-style .btn-link {
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    border-radius: 0;
    padding: 20px 55px 20px 25px;
    font-weight: 400;
    text-decoration: none;
    background-color: var( --first-color );
}
.accordion-style .btn-link.collapsed {
    color: #212121;
    font-size: 18px;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
    padding: 20px 25px;
    font-weight: 400;
    text-decoration: none;
    background-color: transparent;
}
.accordion-style .btn-link:hover {
    text-decoration: none;
}
.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 17px;
    position: absolute;
    color: #212121;
    background-color: #ececec;
    border-radius: 0.3rem;
    line-height: 24px;
    width: 25px;
    height: 25px;
    text-align: center;
}
.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 17px;
    position: absolute;
    color: var( --first-color );
    background-color: #fff;
    border-radius: 0.3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center;
}
.accordion-style .card-body {
    padding: 25px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
}
@media screen and (max-width: 991px) {
    .accordion-style .btn-link {
        padding: 20px 50px 20px 18px;
    }
    .accordion-style .btn-link:after,
    .accordion-style .btn-link.collapsed:after {
        top: 20px;
    }
}
@media screen and (max-width: 575px) {
    .accordion-style .btn-link.collapsed {
        padding: 20px 50px 20px 18px;
    }
}
ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
    padding-left: 0;
}
.resp-tabs-list li {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    padding: 8px 15px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    min-width: 180px;
}
.resp-tabs-list li:last-child {
    margin-right: 0;
}
.resp-tabs-list li i {
    font-size: 28px;
    margin-bottom: 8px;
    color: #6f6f6f;
}
.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
}
.resp-tab-content {
    display: none;
    padding: 0;
}
.resp-tabs-list li.resp-tab-active i {
    color: #fff;
}
.resp-content-active,
.resp-accordion-active {
    display: block;
}
.resp-tab-content {
    float: left;
    width: 100%;
}
h2.resp-accordion {
    background: #fff !important;
    cursor: pointer;
    display: none;
    font-size: 16px;
    border: 1px solid #e4e4e4;
    border-top: 1px solid #e4e4e4;
    margin: 0px;
    padding: 15px 21px;
    float: left;
    width: 100%;
}
h2.resp-tab-active {
    border-bottom: 0px solid #e4e4e4 !important;
    background: var( --first-color ) !important;
    color: #fff;
}
h2.resp-tab-title:last-child {
    border-bottom: 12px solid #e4e4e4 !important;
    background: #00baee;
}
.resp-arrow {
    border-color: transparent #232323 #232323 transparent;
    border-style: solid;
    border-width: 0 1px 1px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 4px;
}
h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 1px 0 0 1px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
}
.tab-style2 .resp-tabs-list li {
    text-align: center;
    padding: 6px 16px;
    position: relative;
    border-radius: 50rem;
    margin: 0 4px 0 0;
    min-width: auto;
}
.tab-style2 .resp-tabs-list li.resp-tab-active {
    background-color: var( --first-color );
    color: #fff;
}
.tab-style2 .resp-tab-content {
    border-radius: 0.3rem;
    padding: 25px 0;
}
.tab-style2 h2.resp-tab-active {
    background: var( --first-color ) !important;
}
@media screen and (max-width: 991px) {
    .tab-style2 .resp-tab-content {
        padding: 20px;
    }
}
@media screen and (max-width: 991px) {
    ul.resp-tabs-list {
        display: none;
    }
    h2.resp-accordion {
        display: block;
    }
    h2.resp-accordion i {
        margin-right: 8px;
        font-size: 18px;
    }
    h2.resp-tab-active h3 {
        color: #fff;
    }
    .resp-vtabs .resp-tab-content {
        border: 1px solid #e4e4e4;
        padding: 10px;
    }
    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: none;
        width: 100%;
        min-height: 100px;
        clear: none;
    }
    .resp-accordion-closed {
        display: none !important;
    }
    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }
    .resp-tab-content {
        background-color: #fff;
        border: 1px solid #eee;
        padding: 20px;
    }
}
.team-style-01 {
    position: relative;
}
.team-style-01:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(23, 23, 23, 0.55) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#8c171717', GradientType=0);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.team-style-01:hover:before {
    opacity: 1;
}
.team-style-01 .team-social {
    right: 80px;
    position: absolute;
    top: inherit;
    bottom: -10px;
    transition: all 0.5s ease-in-out;
    right: 20px;
}
.team-style-01 .side-icons {
    position: relative;
    perspective: 1000px;
    z-index: 9;
}
.team-style-01 .side-icons .icon-share {
    border-radius: 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    background: var( --first-color );
    outline: none;
    z-index: 100000;
    transition: all 0.3s;
}
.team-style-01 .team-social .side-icons .icons-social {
    opacity: 0;
    transition: all 0.5s ease;
    visibility: hidden;
    border-radius: 0px;
    position: absolute;
    margin: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition-delay: 0.1s;
    transform: rotate(-180deg);
    bottom: 40px;
    right: 0;
}
.team-style-01:hover .team-social .side-icons .icons-social {
    opacity: 1;
    visibility: visible;
}
.team-style-01 .side-icons .icons-social:after {
    content: "";
    background: var( --second-color );
    width: 1px;
    height: 70px;
    padding: 0;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -95px;
    display: inline-block;
    margin: 0 auto;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.team-style-01:hover .team-social .side-icons .icons-social {
    display: block;
}
.team-style-01 .side-icons .icons-social ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: -1;
}
.team-style-01 .side-icons .icons-social ul li {
    margin-top: 10px;
    position: relative;
    opacity: 0;
    transition: all 0.5s;
    opacity: 1;
    z-index: 4;
}
.team-style-01 .side-icons .icons-social ul li a {
    transform: rotate(180deg);
    display: inline-block;
    color: #fff;
    text-align: center;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var( --first-color );
    transition: all 0.3s;
}
.team-style-01 .side-icons .icons-social ul li a i {
    transition: none;
}
.team-style-01 .side-icons .icons-social ul li a:hover {
    color: #fff;
    background-color: var( --second-color );
}
.team-style-01 .side-icons .icons-social ul li:nth-of-type(1) {
    transition-delay: 0s;
    z-index: 4;
}
.team-style-01 .side-icons .icons-social ul li:nth-of-type(2) {
    transition-delay: 0.2s;
    z-index: 3;
}
.team-style-01 .side-icons .icons-social ul li:nth-of-type(3) {
    transition-delay: 0.3s;
    z-index: 2;
}
.team-style-01 .side-icons .icons-social ul li:nth-of-type(4) {
    transition-delay: 0.4s;
    z-index: 1;
}
.team-style {
    position: relative;
    z-index: 1;
    padding: 0;
    background: #ffffff;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    transition: 0.3s;
    height: 100%;
}
.team-details {
    padding: 25px 0 21px;
    transition: 0.4s;
    text-align: center;
}
.team-shape1 {
    position: absolute;
    width: 16px;
    height: 32px;
    top: 50px;
    left: 58px;
    background-color: var( --first-color );
    overflow: hidden;
}
.team-shape1:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-shape1:before {
    background: var( --first-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-shape2 {
    position: absolute;
    width: 32px;
    height: 50px;
    top: 62px;
    left: 80px;
    background-color: var( --second-color );
    overflow: hidden;
}
.team-shape2:after {
    background: var( --first-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-shape2:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-details-shape1 {
    position: absolute;
    width: 32px;
    height: 50px;
    top: 0;
    right: 10px;
    background-color: #ffffff;
    overflow: hidden;
}
.team-details-shape1:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-details-shape1:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-details-shape2 {
    position: absolute;
    width: 18px;
    height: 35px;
    top: -14px;
    right: 49px;
    background-color: var( --second-color );
    overflow: hidden;
}
.team-details-shape2:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.team-details-shape2:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.energy-type ul li {
    margin-bottom: 15px;
}
.energy-type ul li a {
    display: block;
    border: 1px solid #dee2e6;
    padding: 16px 18px 16px 30px;
    transition: all 0.5s ease;
    border-radius: 0.3rem;
    font-weight: bold;
    border-radius: 0px;
}
.energy-type ul li:last-child {
    margin-bottom: 0;
}
.energy-type ul li.active a {
    color: #ffffff !important;
    border-color: var( --first-color );
    background: var( --first-color );
    position: relative;
}
.energy-type ul li a:hover {
    color: #ffffff !important;
    border-color: var( --first-color );
    background: var( --first-color );
}
.energy-type ul li.active a:before {
    content: "";
    position: absolute;
    background: #fff;
    width: 4px;
    height: 100%;
    top: 0px;
    left: 10px;
}
.modal-backdrop {
    z-index: 99999;
}
.modal {
    z-index: 999999;
}
.icon-gallery .d-table {
    margin-top: 30px;
}
.icon-gallery .d-table-cell {
    width: 125px;
    height: 125px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    vertical-align: middle;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    background: #fff;
}
.icon-gallery i {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    color: var( --second-color );
}
pre[class*="language-"] {
    max-height: 45vh;
    height: 100%;
    margin: 35px 0 15px 0;
    padding-top: 0;
}
.html-code {
    background-color: #fbfbfb;
    position: relative;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ededed;
}
.html-code:before {
    color: #c8dfab;
    content: "•••";
    font-size: 30px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px;
}
.copy-element {
    position: absolute;
    top: 0;
    right: 85px;
    transition: opacity 0.3s ease-in-out;
}
.source-element {
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease-in-out;
}
.html-code .copy-element {
    top: 15px;
    right: 30px;
}
.html-code:hover .copy-element,
.html-code:hover .source-element {
    opacity: 1;
}
.box-hover:hover .copy-element,
.box-hover:hover .source-element {
    opacity: 1;
}
.copy-element > a,
.source-element > a {
    border-radius: 0.25rem;
    background: #dde1e6;
    color: #777 !important;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: capitalize;
    cursor: pointer !important;
    font-weight: 600;
}
.copy-element > a:hover,
.source-element > a:hover {
    background: var( --first-color );
    color: #fff !important;
}
.copy-clipboard {
    cursor: pointer;
    padding: 5px 15px;
}
.white-popup-block {
    background-color: #fbfbfb;
    position: relative;
    max-width: 650px;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 60px 30px 30px 30px;
    border-radius: 5px;
    margin: 40px auto;
    border: 1px solid #ededed;
}
.white-popup-block.popup-copy.mfp-hide {
    display: block !important;
    height: 0;
    position: absolute;
    z-index: -1;
    padding: 0;
    opacity: 0;
    margin: 0;
}
.white-popup-block:before {
    color: rgba(3, 169, 245, 0.2);
    content: "•••";
    font-size: 30px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px;
}
.white-popup-block:hover .copy-element {
    opacity: 1;
}
.white-popup-block .copy-element {
    top: 45px;
    right: 30px;
}
.box-hover {
    position: relative;
}
.box-hover .container {
    position: relative;
}
.inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .elements-block .inner-title {
        margin-bottom: 65px;
    }
    .copy-element,
    .source-element {
        top: 83px;
    }
}
ul.countdown li {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    padding: 0 30px;
    text-align: center;
}
ul.countdown li:first-child {
    padding-left: 0;
}
ul.countdown li:last-child {
    border: medium none;
    padding-right: 0;
}
ul.countdown li span {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    position: relative;
}
ul.countdown li span::before {
    content: "";
    height: 1px;
    position: absolute;
    width: 100%;
}
ul.countdown li p.timeRefDays,
ul.countdown li p.timeRefHours,
ul.countdown li p.timeRefMinutes,
ul.countdown li p.timeRefSeconds {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
@media screen and (max-width: 767px) {
    ul.countdown li {
        padding: 0 5px;
    }
    ul.countdown li span {
        font-size: 22px;
    }
}
.sidebar .input-group .form-control {
    min-height: 50px;
}
.sidebar .blog-tags a {
    border: 1px solid var( --second-color );
    background-color: #fff;
    padding: 7px 25px;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 10px 0 0;
    display: inline-block;
    border-radius: 0.3rem;
}
.sidebar .blog-tags a:hover {
    border: 1px solid var( --first-color );
    background-color: var( --first-color );
    color: #fff;
}
.sidebar .blog-insta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(28, 191, 170, 0.8);
    opacity: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    z-index: 1;
    border-radius: 0.3rem;
}
.sidebar .blog-insta:hover:before {
    opacity: 0.85;
}
.sidebar .blog-insta .insta-icon {
    position: absolute;
    font-size: 25px;
    color: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 55%;
    transform: translateY(-55%);
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}
.sidebar .blog-insta:hover .insta-icon {
    opacity: 1;
    visibility: visible;
}
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.category-listing {
    margin: -0.5rem 0 0 0;
    padding: 0;
    list-style: none;
}
.cat-item {
    margin-top: 15px;
    border-top: 1px solid #efefef;
    padding-top: 15px;
    list-style: none;
    word-wrap: break-word;
}
.cat-item:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}
.cat-item ul.children {
    margin-top: 0.5rem;
    margin-left: 10px;
}
.wp-tag-cloud li {
    display: inline-block;
}
.wp-tag-cloud a {
    border: 1px solid var( --first-color );
    padding: 7px 21px;
    font-size: 14px !important;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block;
}
.wp-tag-cloud a:hover {
    background-color: var( --second-color );
    border-color: var( --second-color );
    color: #fff;
}
.sidebar .widget {
    margin-bottom: 3rem;
}
.sidebar .widget:last-child {
    margin-bottom: 0;
}
.sidebar .widget_custom_html {
    padding: 0;
}
.sidebar .widget:last-child {
    margin-bottom: 0 !important;
}
.sidebar .widget p:last-child {
    margin-bottom: 0;
}
.blog-comment:before {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 10px;
    background-color: var( --second-color );
}
.author-thumb img {
    border-radius: 50%;
    width: 80px;
}
.comment-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
}
.comment-inner .avatar {
    width: 65px;
    min-width: 65px;
    margin-right: 20px;
    display: inline-block;
    border-radius: 50%;
}
.comment-inner .comment-box {
    overflow: hidden;
    position: relative;
    margin-left: 0;
    flex-grow: 1;
    vertical-align: top;
    display: inline-block;
}
.comment-inner .comment-box p:last-child {
    margin-bottom: 0;
}
.comment-reply-link {
    color: var( --first-color );
    background: rgba(19, 136, 215, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 18px;
    display: inline-block;
}
.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
    color: #fff;
    background: var( --first-color );
}
a#cancel-comment-reply-link {
    color: var( --first-color );
    background: rgba(19, 136, 215, 0.1);
    padding: 9px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
    transition: 0.3s;
    float: right;
    margin: 6px 0;
}
a#cancel-comment-reply-link:hover,
a#cancel-comment-reply-link:active,
a#cancel-comment-reply-link:focus {
    color: #fff;
    background: var( --first-color );
}
.tags a {
    border: 1px solid var( --second-color );
    padding: 7px 21px;
    font-size: 14px;
    line-height: 20px;
    margin: 5px 10px 5px 0;
    display: inline-block;
}
.tags a:hover,
.tags a:active,
.tags a:focus {
    border-color: var( --first-color );
    background: var( --first-color );
    color: #fff;
}
.contact-info-block {
    position: relative;
    text-align: center;
}
.contact-info-block .contact-img {
    width: 100%;
    padding: 50px 30px;
    position: relative;
    background-size: cover;
    background-position: 50%;
    overflow: hidden;
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    transition: all 300ms ease-in-out;
    height: 100%;
}
.contact-info-block .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: background-color 0.4s ease;
}
.contact-info-block:hover .bg-overlay:before {
    opacity: 0;
    transform: translate(-100%, -100%);
}
.contact-info-block .bg-overlay:before {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 0.6s ease, opacity 0.6s ease;
}
.contact-info-block:hover .bg-overlay:after {
    opacity: 1;
    transform: translate(0, 0);
}
.contact-info-block .bg-overlay:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: translate(100%, 100%);
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}
.contact-info-block .content-text {
    position: relative;
    padding: 0 50px;
}
.contact-info-block i {
    color: var( --second-color );
}
.contact-info-block:hover p,
.contact-info-block:hover h3,
.contact-info-block:hover i {
    color: #fff;
}
@media screen and (max-width: 1199px) {
    .contact-info-block .content-text {
        padding: 0;
    }
}
.contact-info {
    position: relative;
}
.contact-info .contact-shape1 {
    content: "";
    position: absolute;
    background: var( --second-color );
    height: 33px;
    width: 18px;
    right: 50px;
    top: -13px;
    overflow: hidden;
}
.contact-info .contact-shape1:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.contact-info .contact-shape1:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.contact-info .contact-shape2 {
    content: "";
    position: absolute;
    background: #ffffff;
    height: 50px;
    width: 35px;
    right: 10px;
    top: 0;
    overflow: hidden;
}
.contact-info .contact-shape2:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.contact-info .contact-shape2:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.contact-map {
    height: 400px;
    width: 100%;
    vertical-align: top;
    border: 0;
}
.sidebar-logo {
    width: 190px;
}
.feature-style01 {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    margin-top: -60px;
    background-color: #fff;
    z-index: 9;
    position: relative;
    padding: 40px;
}
@media screen and (max-width: 575px) {
    .feature-style01 {
        padding: 25px;
    }
}
.testimonial-style01 {
    position: relative;
}
.testimonial-style01 .testimonial-shape3 {
    content: "";
    height: 50px;
    width: 28px;
    position: absolute;
    background: #ffffff;
    top: -20px;
    right: 40px;
    overflow: hidden;
}
.testimonial-style01 .testimonial-shape3:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-style01 .testimonial-shape3:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-style01 .testimonial-shape4 {
    content: "";
    height: 35px;
    width: 15px;
    position: absolute;
    background: var( --second-color );
    top: -34px;
    right: 76px;
    overflow: hidden;
}
.testimonial-style01 .testimonial-shape4:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-style01 .testimonial-shape4:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-shape1 {
    height: 50px;
    width: 28px;
    position: absolute;
    background: #ffffff;
    bottom: 0px;
    right: 40px;
    z-index: 3;
    overflow: hidden;
}
.testimonial-shape1:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-shape1:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-shape2 {
    height: 35px;
    width: 15px;
    position: absolute;
    background: var( --second-color );
    bottom: 28px;
    right: 76px;
    z-index: 3;
    overflow: hidden;
}
.testimonial-shape2:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-shape2:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.testimonial-carousel2.owl-theme .owl-dots .owl-dot span {
    background-color: var( --first-color );
    width: 30px;
    height: 5px;
    border-radius: 0;
}
.testimonial-carousel2.owl-theme .owl-dots .owl-dot.active span,
.testimonial-carousel2.owl-theme .owl-dots .owl-dot:hover span,
.testimonial-carousel2.owl-theme .owl-dots .owl-dot:focus span {
    background-color: var( --second-color ) !important;
}
.testimonial-carousel1 .testimonial-text {
    position: relative;
}
.testimonial-carousel1 .testimonial-text:before {
    content: "\e67f";
    font-family: var( --body-fonts );
    position: absolute;
    font-size: 60px;
    top: -12px;
    color: var( --second-color );
    z-index: -1;
    line-height: 1;
    opacity: 0.2;
}
.facts-block .fact-icon span {
    text-align: center;
    padding: 5px 20px;
    transition-duration: 0.4s;
    background: var( --first-color );
    color: #fff;
    display: inline-block;
}
.facts-block .fact-icon:hover span {
    background: var( --second-color );
}
.facts-block .bg-plus {
    position: absolute;
    right: -20px;
    top: -30px;
}
.save-money .video-img {
    margin-bottom: -90px;
}
.cursor-helper {
    height: 0;
}
.cursor-helper-outer {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var( --first-color );
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 25px;
    top: 25px;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999999;
}
.cursor-helper-inner {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: transparent;
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999999;
}
.cursor-link {
    background-color: var( --first-color );
    opacity: 0.4;
}
.cursor-light {
    background-color: #fff;
    opacity: 1;
}
.cursor-slider {
    background-color: var( --first-color );
    border-radius: 100%;
    padding: 30px;
}
.cursor-slider:after {
    content: "\e658";
    font-family: var( --body-fonts );
    font-size: 24px;
    position: absolute;
    top: 13px;
    left: 19px;
    line-height: 35px;
    color: #fff;
}
.cursor-helper-innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}
@media screen and (max-width: 1199px) {
    .cursor-helper {
        display: none;
    }
}
.error-wrapper .number-wrap h1 {
    color: #fff;
    font-size: 250px;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width: 1199px) {
    .error-wrapper .number-wrap h1 {
        font-size: 230px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 991px) {
    .error-wrapper .number-wrap h1 {
        font-size: 220px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767px) {
    .error-wrapper .number-wrap h1 {
        font-size: 200px;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 575px) {
    .error-wrapper .number-wrap h1 {
        font-size: 150px;
    }
}
.client-carousel {
    transition: 0.4s;
}
.client-carousel img {
    transition: 0.3s;
}
.client-carousel .image-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: inherit;
}
.client-carousel .image-wrapper > img {
    border-radius: inherit;
}
.client-carousel .hover-image {
    display: block;
    transform: translateY(-100%);
    opacity: 0;
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    visibility: hidden;
}
.client-carousel .image-wrapper:hover .hover-image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}
.client-carousel .image-wrapper:hover .hover-image + .main-image {
    opacity: 0;
    transform: translateY(100%);
}
.vertical-timeline {
    position: relative;
    z-index: 1;
}
.vertical-timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(28, 191, 170, 0.4);
    margin-left: -4px;
}
.vertical-timeline:after {
    content: "\e64b";
    font-family: var( --body-fonts );
    font-size: 14px;
    position: absolute;
    left: 50%;
    bottom: -19px;
    color: var( --second-color );
    margin-left: -6px;
}
.vertical-timeline .timeline-items {
    padding-bottom: 40px;
}
.vertical-timeline .timeline-items:before {
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    background: #efefef;
}
.vertical-timeline .item {
    display: flex;
    position: relative;
    transition: 0.3s;
}
.vertical-timeline .item:hover .count {
    background: var( --second-color );
    transition: 0.3s;
}
.vertical-timeline .item:not(:last-child) {
    margin-bottom: 70px;
}
.vertical-timeline .item:nth-child(even) .text {
    margin-left: 45px;
    margin-right: 0px;
    padding-left: 40px;
    padding-right: 50px;
    border-radius: 5px 5px 5px 5px;
}
.vertical-timeline .item:nth-child(odd) .count {
    margin-right: -30px;
}
.vertical-timeline .item:nth-child(odd) .icon {
    justify-content: flex-end;
}
.vertical-timeline .item:nth-child(odd) .timeline-circle:before {
    left: 100%;
}
.vertical-timeline .item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}
.vertical-timeline .item:nth-child(even) .count {
    margin-left: -30px;
}
.vertical-timeline .item:nth-child(even) .icon {
    justify-content: flex-start;
}
.vertical-timeline .item:nth-child(even) .timeline-content {
    flex-direction: row-reverse;
}
.vertical-timeline .item:nth-child(even) .timeline-circle:before {
    right: 100%;
}
.vertical-timeline .icon,
.vertical-timeline .timeline-content {
    flex-basis: calc(50% - 1px);
    transition: 0.5s;
    display: flex;
    align-items: center;
}
.vertical-timeline .timeline-circle {
    position: relative;
    margin: 0px 100px 0px 100px;
}
.vertical-timeline .timeline-circle .circle {
    position: absolute;
    top: 50%;
    transition: 0.4s;
    top: calc(50% - 7px);
    left: -7px;
    width: 15px;
    height: 15px;
    background: rgba(28, 191, 170, 0.4);
}
.vertical-timeline .timeline-circle:before {
    content: "";
    height: 1px;
    position: absolute;
    top: 50%;
    background: #efefef;
    width: calc(100px + 30px);
}
.vertical-timeline .timeline-circle:after {
    content: "";
    position: absolute;
    transition: 0.4s;
    top: calc(50% - 4px);
    left: -4px;
    width: 9px;
    height: 9px;
    background: #fff;
}
.vertical-timeline .text {
    box-shadow: 0px 3px 10px 0px rgba(41, 45, 194, 0.08);
    margin: 0px 45px 0px 0px;
    padding: 31px 40px 33px 50px;
    border-radius: 5px 5px 5px 5px;
    background-color: #ffffff;
}
.vertical-timeline .count {
    position: relative;
    font-size: 19px;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    flex: 1 0 auto;
    color: #fff;
    background: var( --first-color );
}
@media screen and (max-width: 991px) {
    .vertical-timeline .timeline-circle:before {
        width: calc(100px + -20px);
    }
    .vertical-timeline .text {
        margin: 0;
        padding: 20px 20px 20px 40px;
    }
    .vertical-timeline .count {
        width: 50px;
        height: 50px;
        font-size: 14px;
        line-height: 50px;
    }
    .vertical-timeline .item:nth-child(even) .text {
        margin: 0;
        padding-left: 20px;
        padding-right: 40px;
    }
    .vertical-timeline .timeline-circle {
        margin: 0px 30px 0px 30px;
    }
}
@media screen and (max-width: 767px) {
    .vertical-timeline:before,
    .vertical-timeline:after,
    .vertical-timeline .timeline-items:before {
        left: 10px;
    }
    .vertical-timeline .item:not(:last-child) {
        margin-bottom: 40px;
    }
    .vertical-timeline .timeline-content {
        order: 2;
        flex-basis: 100%;
    }
    .vertical-timeline .icon {
        order: 3;
        flex-basis: 30%;
    }
    .vertical-timeline .text {
        padding: 20px 20px 20px 30px;
    }
    .vertical-timeline .item:nth-child(even) {
        flex-direction: row;
        text-align: left;
    }
    .vertical-timeline .item:nth-child(even) .text {
        padding-left: 30px;
        padding-right: 20px;
    }
    .vertical-timeline .item:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }
    .vertical-timeline .item:nth-child(even) .count,
    .vertical-timeline .item:nth-child(odd) .count {
        margin-right: -20px;
        margin-left: 0;
    }
    .vertical-timeline .item:nth-child(even) .timeline-content,
    .vertical-timeline .item:nth-child(odd) .timeline-content {
        flex-direction: row;
    }
    .vertical-timeline .item:nth-child(even) .icon,
    .vertical-timeline .item:nth-child(odd) .icon {
        justify-content: center;
    }
}
.why-choose-01 {
    margin-top: -70px;
}
.why-choose-01 .why-choose-icon i {
    position: relative;
    color: #fff;
    opacity: 0.8;
}
.why-choose-01 .why-choose-icon i:after {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    content: "";
    position: absolute;
    border-radius: 50px;
    top: -2px;
    right: -4px;
    z-index: -1;
    transition: all 500ms ease;
}
.why-choose-01 .why-choose-icon:hover i {
    opacity: 1;
}
.why-choose-01 .why-choose-icon:hover i:after {
    background-color: var( --first-color );
}
@media screen and (max-width: 991px) {
    .why-choose-01 {
        margin-top: 0;
        background: none;
        padding-top: 0;
    }
}
.why-choose-right .why-choose-box {
    position: absolute;
    bottom: -50px;
    right: 50px;
    width: 160px;
    height: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
    padding: 0 15px;
}
.why-choose-right:after {
    position: absolute;
    content: "";
    height: 90%;
    width: 70%;
    border-radius: 0.25rem;
    background: var( --second-color );
    left: -15px;
    top: -15px;
}
@media screen and (max-width: 767px) {
    .why-choose-right .why-choose-box {
        width: 130px;
        height: 130px;
    }
}
@media screen and (max-width: 575px) {
    .why-choose-right .why-choose-box {
        width: 105px;
        height: 105px;
        right: 15px;
    }
}
.progress-style1 .progress {
    height: 5px;
}
.progress-style1 .progress .progress-bar {
    background-color: var( --first-color );
}
.portfolio-style1 {
    margin-bottom: -100px;
    position: relative;
    z-index: 9;
}
.contact-info-text {
    display: flex;
    align-items: center;
}
.contact-info-text i {
    font-size: 60px;
    color: var( --second-color );
    line-height: 1;
    display: inline-block;
    margin-right: 35px;
}
.contact-info-text p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}
.contact-info-text h3 {
    font-size: 55px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0;
}
.contact-info-text .bar::before {
    position: absolute;
    width: 100px;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.4);
    left: -180px;
    top: 50%;
}
.call-to-action-shape1 {
    left: 70px;
    position: relative;
    overflow: hidden;
}
.call-to-action-shape1:after {
    background: var( --second-color );
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.call-to-action-shape1:before {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.call-to-action-shape2 {
    position: absolute;
    background: var( --second-color );
    height: 40px;
    width: 20px;
    left: 110px;
    bottom: 25px;
    overflow: hidden;
}
.call-to-action-shape2:after {
    background: #fff;
    animation: move 3s infinite;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
.call-to-action-shape2:before {
    background: var( --second-color );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
}
@media screen and (max-width: 1399px) {
    .contact-info-text h3 {
        font-size: 42px;
    }
    .contact-info-text .bar::before {
        left: -150px;
    }
}
@media screen and (max-width: 1199px) {
    .contact-info-text h3 {
        font-size: 36px;
    }
    .contact-info-text .bar::before {
        content: none;
    }
}
@media screen and (max-width: 991px) {
    .contact-info-text i {
        font-size: 50px;
        margin-right: 15px;
    }
    .contact-info-text h3 {
        font-size: 32px;
    }
}
@media screen and (max-width: 575px) {
    .contact-info-text h3 {
        font-size: 26px;
    }
}
.testimonials1 button {
    border: 2px solid #fff;
    padding: 5px;
}
.testimonials1 button img {
    opacity: 0.5;
}
.testimonials1 button.active {
    border: 2px solid var( --second-color );
    padding: 5px;
}
.testimonials1 button.active img {
    opacity: 1;
}
.testimonials-left span {
    font-size: 140px;
}
.testimonials-left .left-icon i {
    width: 150px;
    height: 150px;
    display: block;
    line-height: 150px;
    margin: 0 auto;
    font-size: 90px;
    background: rgba(28, 191, 170, 0.9);
}
.testimonials-left .testimonials-inner {
    padding: 30px;
    display: inline-block;
}
@media screen and (max-width: 991px) {
    .testimonials-left .testimonials-inner {
        padding: 15px;
    }
    .testimonials-left .left-icon i {
        width: 120px;
        height: 120px;
        line-height: 120px;
        font-size: 72px;
    }
    .testimonials-left span {
        font-size: 110px;
    }
}
@media screen and (max-width: 575px) {
    .testimonials-left span {
        font-size: 80px;
    }
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    margin-bottom: 0.5rem;
}
.form-control:focus {
    border-color: var( --first-color );
}
.form-check-input:checked {
    border-color: var( --first-color );
    background-color: var( --first-color );
}
.quform-input {
    position: relative;
}
.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1;
}
.quform-element > label {
    font-weight: normal;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 15px;
}
.quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px;
}
.quform-inner input {
    width: 100%;
}
.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top;
}
.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px;
}
.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal;
}
.quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}
.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
}
.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type="file"],
.quform-has-error .custom-file-label {
    border-color: #f5543f;
}
.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
}
.quform-submit-inner {
    float: none;
}
.quform-loading-wrap {
    float: none;
}
.quform-loading-wrap .quform-loading {
    display: inline-block;
}
.quform-element {
    margin-bottom: 1rem;
}
.newsletter-rounded .quform-elements {
    position: relative;
}
.newsletter-rounded .quform-submit-inner {
    position: absolute;
    right: 0px;
    top: 6px;
    width: auto;
}
.newsletter-rounded .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-rounded input {
    border: 3px solid rgba(255, 255, 255, 0.1);
    height: 60px;
    min-height: auto;
    padding: 0.5rem 4rem 0.5rem 1.5rem;
}
.newsletter-rounded .quform-has-error input,
.newsletter-rounded .quform-has-error textarea,
.newsletter-rounded .quform-has-error select {
    border-color: #f5543f;
}
.newsletter-rounded .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-rounded i {
    font-size: 1.5rem;
    line-height: 2rem;
}
.newsletter-content {
    padding: 45px 45px 45px 0;
}
.newsletter-content i.ti-email {
    height: 80px;
    width: 100px;
    background-color: var( --first-color );
    color: #fff;
    display: block;
    font-size: 35px;
    line-height: 80px;
    text-align: center;
}
@media screen and (max-width: 575px) {
    .newsletter-content {
        padding: 25px;
    }
}
.newsletter-form .quform-elements {
    position: relative;
}
.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: var( --first-color );
    height: 48px;
}
.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-form input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
}
.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
    border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}
.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none;
}
.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    height: 41px;
    line-height: 41px;
    width: 41px;
}
.social-icon-style1 li a:hover,
.social-icon-style1 li a:focus,
.social-icon-style1 li a:active {
    background: var( --first-color );
    color: #fff;
}
.social-icon-style1 li:last-child {
    margin-right: 0;
}
.social-icon-style2 {
    margin-bottom: 0;
    list-style: none;
}
.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
}
.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: var( --second-color );
    height: 41px;
    line-height: 41px;
    width: 41px;
}
.social-icon-style2 li a:hover,
.social-icon-style2 li a:active,
.social-icon-style2 li a:focus {
    background: var( --first-color );
    color: #fff;
}
.social-icon-style2 li:last-child {
    margin-right: 0;
}
.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px;
}
.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.social-icon-style2.small li a {
    font-size: 14px;
    height: 41px;
    line-height: 41px;
    width: 41px;
}
@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
.lg-backdrop {
    z-index: 99999;
}
.lg-outer {
    z-index: 999999;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var( --first-color );
}
.lg-progress-bar .lg-progress {
    background-color: var( --first-color );
}
.lg-backdrop.in {
    opacity: 0.85;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.img-windmolen {
    position: relative;
    width: 500px;
    margin: 0 auto;
}
.img-windmolen svg {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    overflow: visible;
}
.img-windmolen .wieken {
    animation: spin 2s infinite linear;
    transform-origin: 61% 55%;
}
.ani-left-right {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: LeftRight;
    animation-timing-function: ease-in-out;
}
@keyframes LeftRight {
    0% {
        transform: translate(0px, 0px);
    }
    65% {
        transform: translate(30px, 0);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.ani-top-bottom {
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-name: TopBottom;
    animation-timing-function: ease-in-out;
}
@keyframes TopBottom {
    0% {
        transform: translate(0px, 0px);
    }
    65% {
        transform: translate(0, 30px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}
.search-form_input {
    color: var( --first-color );
}
.search-frame h4 a:hover {
    color: var( --first-color );
}
.search-frame .search_list .match {
    color: var( --first-color );
}
.search-frame .search_list li:before {
    color: var( --first-color );
}
.search-frame .search_list li + li {
    border-top: 3px solid var( --first-color );
}
.search-frame .search {
    color: var( --first-color );
}
.rotation {
    animation: rotation infinite 30s linear;
}
@keyframes rotation {
    to {
        transform: rotate(360deg);
    }
}
@keyframes move {
    0% {
        transform: translate3d(-200%, 0, 0);
    }
    60% {
        transform: translate3d(100%, 0, 0);
    }
    100% {
        transform: translate3d(100%, 0, 0);
    }
}
.c-1 {
    -webkit-animation-name: ScaleMe;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: ScaleMe;
    -moz-animation-duration: 5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: ScaleMe;
    -ms-animation-duration: 5s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: ScaleMe;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.c-2 {
    -webkit-animation-name: ScaleMe;
    -webkit-animation-delay: 3ms;
    -webkit-animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: ScaleMe;
    -moz-animation-delay: 3s;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: ScaleMe;
    -ms-animation-delay: 3s;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: ScaleMe;
    animation-delay: 3s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-webkit-keyframes ScaleMe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
@-moz-keyframes ScaleMe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}
footer {
    word-break: break-word;
    background: var( --first-color );
}
footer .newsletter-form input {
    border: none;
}
.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block;
}
.footer-bar {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 80px;
    text-align: center;
    background: #0c0c0c;
}
footer .sec-title h3 {
    position: relative;
    display: inline-block;
    padding-right: 15px;
}
footer .sec-title h3:after {
    position: absolute;
    content: "";
    z-index: 1;
    height: 7px;
    width: 3px;
    bottom: 2px;
    right: 0px;
    background: var( --first-color );
}
footer .sec-title h3:before {
    position: absolute;
    content: "";
    z-index: 1;
    height: 5px;
    width: 3px;
    bottom: 5px;
    right: 5px;
    background: var( --second-color );
}
footer address {
    color: rgba(255, 255, 255, 0.7);
}
footer .email {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding-bottom: 5px;
}
footer .email a {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: all 0.8s ease;
}
footer .email a:hover:after {
    width: 100%;
}
footer .email a:active:after {
    width: 100%;
}
footer .email a:focus:after {
    width: 100%;
}
footer .email a:hover {
    color: var( --second-color );
}
footer .email a:active {
    color: var( --second-color );
}
footer .email a:focus {
    color: var( --second-color );
}
footer .email a:after {
    border-bottom: 1px solid #fff;
    transition: all 0.8s ease;
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 0;
}
footer .phone {
    padding-bottom: 0;
    margin-bottom: 0;
}
footer .phone a {
    padding-bottom: 0;
    letter-spacing: -0.05rem;
    color: #fff;
}
footer .phone a:hover {
    color: var( --second-color );
}
footer .phone a:active {
    color: var( --second-color );
}
footer .phone a:focus {
    color: var( --second-color );
}
@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px;
    }
    .footer-bar {
        margin-top: 60px;
    }
    footer address {
        color: rgba(255, 255, 255, 0.7);
    }
    footer .email a:after {
        bottom: -10px;
    }
}
.newsletter-rounded .quform-elements {
    position: relative;
}
.newsletter-rounded .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-rounded input {
    border: 3px solid rgba(255, 255, 255, 0.1);
    height: 60px;
    min-height: auto;
    padding: 0.5rem 4rem 0.5rem 1.5rem;
}
.newsletter-rounded .quform-has-error input,
.newsletter-rounded .quform-has-error textarea,
.newsletter-rounded .quform-has-error select {
    border-color: #f5543f;
}
.newsletter-rounded .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-rounded i {
    font-size: 1.5rem;
    line-height: 2rem;
    vertical-align: middle;
}
.newsletter-content {
    padding: 45px 45px 45px 0;
}
.newsletter-content i.ti-email {
    height: 80px;
    width: 100px;
    background-color: var( --first-color );
    color: #fff;
    display: block;
    font-size: 35px;
    line-height: 80px;
    text-align: center;
}
@media screen and (max-width: 575px) {
    .newsletter-content {
        padding: 25px;
    }
}
.newsletter-form .quform-elements {
    position: relative;
}
.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: var( --first-color );
    height: 48px;
}
.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
}
.newsletter-form input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
}
.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
    border-color: #f5543f;
}
.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
}
.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
}
.footer1 {
    margin-top: -5.5rem;
}
.footer-link li a {
    color: #fff;
}
.footer-link li a:hover {
    color: var( --first-color );
}
.input-height {
    min-height: 52px;
}
.footer-bg-left {
    position: absolute;
    top: 0;
    left: -100px;
    max-height: 100%;
}
.footer-bg-right {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%;
}
.footer-link.bottom-link li {
    display: inline-block;
    margin-right: 20px;
}
.footer-link.bottom-link li:last-child {
    margin-right: 0;
}
.footer-three .sec-title {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.footer-three h3 {
    font-size: 1.25rem;
    margin-bottom: 2.2rem;
    font-weight: 800;
}
.footer-three .sec-title h3 {
    padding-right: 0;
}
.footer-three .sec-title h3:after,
.footer-three .sec-title h3:before {
    content: none;
}
.footer-three .border-box {
    display: none;
}
@media screen and (min-width: 1200px) {
    .footer-three .flex-grow-1 h4 {
        max-width: 70%;
    }
}
.footer-two .sec-title {
    padding-bottom: 0 !important;
}
.footer-two .sec-title h3 {
    padding-right: 0;
}
.footer-two .sec-title h3:after,
.footer-two .sec-title h3:before {
    content: none;
}
.footer-two h3 {
    color: #fff !important;
    margin-bottom: 1.6rem !important;
}
footer.bg-light.footer-two h4 a,
footer.bg-light h6 a {
    color: #282b2d !important;
}
footer.bg-light.footer-two h4 a:hover,
footer.bg-light h6 a:hover {
    color: var( --first-color ) !important;
}
.footer-two .border-box {
    display: none;
}
footer.bg-light .social-icon-style1 a {
    color: #fff;
}
.footer-icon {
    position: relative;
}
.footer-icon a {
    display: inline-block;
}
.footer-icon:before {
    content: "";
    border-radius: 0.25rem;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(19, 136, 215, 0.8);
    opacity: 0;
    transition: 0.5s all ease-in-out;
}
.footer-icon:hover:before {
    opacity: 1;
}
.footer-icon .hover-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    height: 100%;
    opacity: 0;
    transition: 0.5s all ease-in-out;
}
.footer-icon:hover .hover-icon {
    opacity: 1;
}
footer.bg-light p {
    color: #575a7b;
}
footer.bg-light li {
    color: #575a7b;
}
footer.bg-light li a {
    color: #575a7b;
}
footer.bg-light h4 a,
footer.bg-light h6 a {
    color: #282b2d;
}
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
}
footer li {
    list-style: none;
    word-wrap: break-word;
}
footer li:first-child {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}
footer label {
    color: #fff;
}
footer li a {
    color: #fff;
}
footer li a:hover,
footer li a:active,
footer li a:focus {
    color: var( --first-color );
}
footer h1 a,
footer h2 a,
footer h3 a,
footer h4 a,
footer h5 a,
footer h6 a,
footer .h1 a,
footer .h2 a,
footer .h3 a,
footer .h4 a,
footer .h5 a,
footer .h6 a {
    color: #fff;
}
footer h1 a:hover,
footer h1 a:active,
footer h1 a:focus {
    color: var( --first-color );
}
footer h2 a:hover,
footer h2 a:active,
footer h2 a:focus {
    color: var( --first-color );
}
footer h3 a:hover,
footer h3 a:active,
footer h3 a:focus {
    color: var( --first-color );
}
footer h4 a:hover,
footer h4 a:active,
footer h4 a:focus {
    color: var( --first-color );
}
footer h5 a:hover,
footer h5 a:active,
footer h5 a:focus {
    color: var( --first-color );
}
footer h6 a:hover,
footer h6 a:active,
footer h6 a:focus {
    color: var( --first-color );
}
footer .h1 a:hover,
footer .h1 a:active,
footer .h1 a:focus {
    color: var( --first-color );
}
footer .h2 a:hover,
footer .h2 a:active,
footer .h2 a:focus {
    color: var( --first-color );
}
footer .h3 a:hover,
footer .h3 a:active,
footer .h3 a:focus {
    color: var( --first-color );
}
footer .h4 a:hover,
footer .h4 a:active,
footer .h4 a:focus {
    color: var( --first-color );
}
footer .h5 a:hover,
footer .h5 a:active,
footer .h5 a:focus {
    color: var( --first-color );
}
footer .h6 a:hover,
footer .h6 a:active,
footer .h6 a:focus {
    color: var( --first-color );
}
footer p,
footer li {
    color: #fff;
    list-style: none;
}
.buy-theme {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    position: fixed;
    top: 150px;
    right: -89px;
    background: var( --second-color );
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
.buy-theme i {
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff;
}
.all-demo i {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff;
}
.buy-theme:hover,
.all-demo:hover {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    right: 0px;
    background: var( --second-color );
}
.all-demo:hover {
    background: var( --first-color );
}
.buy-theme span,
.all-demo span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0;
}
.buy-theme:hover span,
.all-demo:hover span {
    opacity: 1;
    color: #fff;
}
.buy-theme:hover i,
.all-demo:hover i {
    color: #fff;
}
.buy-theme a,
.all-demo a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500;
}
.all-demo {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    position: fixed;
    top: 185px;
    right: -105px;
    background: var( --first-color );
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}
