/* Font Family*/

@font-face {
    font-family: "Nexa";
    src: url(/assets/ttl/nexa-regular.ttf);
}

/* For Footer To Stay On The Bottom Even When There's Not Enough Content START*/

body {
    /* This Is Used For MacOS For Chrome (Not Showing Bold (<b></b>) Stuff) */
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative !important;
    min-height: 97vh !important;
}

footer {
    position: absolute !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 2.5em !important;
}

/* For Footer To Stay On The Bottom Even When There's Not Enough Content END*/

/* Base CSS Start*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

.aligncenter {
    display: block;
    margin: 0 auto 15px;
}

a:focus {
    outline: 0 solid
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    color: #07171D;
}

body {
    color: #07171D;
    font-weight: 400;
}

.selector-for-some-widget {
    box-sizing: content-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

a:hover {
    text-decoration: none
}

a,
button,
input,
textarea {
    outline: none !important;
}

/* Base CSS End*/

.section-padding {
    padding: 80px 0;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.flex-space-evenly {
    display: flex;
    justify-content: space-evenly;
}

.svg-filter-white {
    filter: invert(89%) sepia(93%) saturate(30%) hue-rotate(201deg) brightness(108%) contrast(100%);
}

.logo {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 30%;
}

.mobile__counter {
    display: none;
}

.mobile__counter div {
    margin-bottom: 2em;
}

.container-dashboard {
    margin-bottom: 3em;
}

.dashboard img {
    border-radius: 1%;
}

.error-box {
    color: red;
    font-size: 1rem !important;
    align-items: center;
    margin: 0.5em 0 1em;
    visibility: hidden;
    text-align: center;
}

.error-box p {
    margin: 0;
}

/* Loader */

.loader {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 1em solid #f3f3f3;
    border-top: 1em solid #3498db;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
  
/* Keyframes for the spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-plans h3,
li {
    justify-content: center;
}

.pricing-plans div div {
    text-align: center;
}

.start-free-trial-btn {
    margin: 0 auto;
}

.pricing-contact a {
    color: #ED880E;
}

.pricing-contact a:hover {
    color: #77769C;
}

.flag-icon {
    background: none;
    border: none;
    padding: 0.2em;
    margin: 0;
}

.preferred-language {
    color: white; 
    cursor: default;
}

.preferred-language span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preferred-language div {
    cursor: pointer;
}

.preferred-language div div {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.preferred-language div div:hover {
    background-color: hsl(197, 90%, 25%);
    border-radius: 0.25em;
}

.dropdown-button {
    background: #003951 !important;
    border: 1px solid white !important;
    font-size: 0.85rem !important;
    padding: 0.5em 1em !important;
}

.dropdown-button:hover {
    border-color: var(--orange) !important;
    color: var(--orange) !important;
}

.dropdown {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-blue);
    min-width: 10em;
    padding: 0.5em;
    overflow: auto;
    box-shadow: 0 0.5em 1em 0 rgba(0,0,0,0.2);
    z-index: 1;
    top: 2em;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
    border-radius: 0.25em;
}

.show-languages {
    display: block;
}

.stick-footer-to-bottom {
    min-height: 100dvh;
    min-height: 100vh;
}

.back-button{
    background: #ED880E;
    border-radius: 0.25em;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    padding: 0.5em 2em;
    transition: .3s all;
    border: 1px solid #ED880E;
}

.back-button p{
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1rem;
}

.back-button:hover {
    background: #003951;
    border-color: #fff;
    color: #fff;
}

.top-button{
    background: #ED880E;
    border-radius: 0.25em;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    padding: 0.5rem 2rem;
    transition: .3s all;
    border: 1px solid #ED880E;
}

.top-button p{
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1rem;
}

.top-button:hover {
    background: #003951;
    border-color: #fff;
    color: #fff;
}

.read-more {
    color: var(--orange);
}

.read-more:hover {
    color: var(--orange);
}

/* footer {
    position: static;
    bottom: 0;
    width: 100%;
} */

/* -------------------------------- HEADER AREA START ------------------------ */

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

.main__menu nav ul {
    padding: 0;
}

.main__menu nav ul li {
    display: inline-block;
}

.main__menu nav ul li a {
    font-style: normal;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.125em;
    color: #FFFFFF;
    transition: .3s all;
    margin: 0 1em;
}

.main__menu nav ul li a:hover {
    color: #ED880E;
}

.header__area {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    padding: 36px 0;
}


/* -------------------------------- HEADER AREA END ------------------------ */


/* -------------------------------- HERO AREA START ------------------------ */

.hero__area {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 1000px;
}

.hero__content h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5em;
    text-transform: capitalize;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 10px;
}

.hero__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875em;
    text-align: center;
    color: #FFFFFF;
    max-width: 1080px;
    margin: 0 auto;
}

.hero__content span {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.625em;
    text-transform: uppercase;
    color: #ED880E;
    display: block;
    text-align: center;
}

.hero__content {
    margin-top: 240px;
}

.global__btn {
    background: #ED880E;
    border-radius: 0.25em;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: inline-block;
    padding: 1em 2em;
    transition: .3s all;
    border: 1px solid #ED880E;
}

.global__btn p{
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1em;
}

.global__btn:hover {
    background: #003951;
    border-color: #fff;
    color: #fff;
}

.global__btn img {
    margin-left: 0.5em;
}

.hero__btn {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero__btn a {
    display: flex;
    align-items: center;
}

.second__btn {
    background: #003951;
    border-color: #fff;
    color: #fff;
    margin-left: 20px;
}

.second__btn img {
    margin-left: 9px;
}

.second__btn:hover {
    background: #ED880E;
    border-color: #ED880E;
}

.third__btn {
    background: #ED880E;
    color: #fff;
    margin-left: 20px;
}

.third__btn img {
    margin-left: 9px;
}

.third__btn:hover {
    background: #003951;
    border-color: #fff;
    color: #fff;
}

.dashboard__thumb__blk {
    margin-top: -450px;
}


/* -------------------------------- HERO AREA END ------------------------ */


/* -------------------------------- BRAND AREA START ------------------------ */

.brand__single__slide {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.brand__single__slide img {
    max-height: 100%;
    width: auto;
}

.peco__interijeri__logo {
    margin: auto;
    width: 10em;
}

.stas__logo {
    margin: auto;
    width: 10em;
}

.brand__top__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    color: #77769C;
}


/* -------------------------------- BRAND AREA END ------------------------ */


/* -------------------------------- SERVICE AREA START ------------------------ */

.service__top__ico {
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ED880E;
    border-radius: 10px;
}

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

.service__ico__blk>p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.625em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #003951;
    margin: 0;
    margin-left: 12px;
}

.service__content>h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 3rem;
    line-height: 56px;
    text-transform: capitalize;
    color: #003951;
    margin-top: 12px;
}

.service__content>p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.875em;
    color: #77769C;
    margin-bottom: 30px;
}

.service__area {
    padding: 120px 0;
    padding-top: 50px;
}

.service__area div div div:nth-child(2) div h4 span:first-child{
    font-weight: bold;
}

.pricing-border {
    min-height: 600px;
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    border: 1px solid VAR(--dark-blue);
    border-radius: 1.5em;
}

.pricing-border:hover {
    cursor: default;
    background-color: var(--orange);
}

.pricing-border:hover div > h4 {
    color: white !important;
}

.pricing-border:hover div h3 > span {
    color: white !important;
}

.pricing-border:hover div p > span {
    color: white !important;
}

.pricing-border:hover div p > a {
    color: var(--dark-blue) !important;
}

.pricing-border:hover div ul li > span {
    color: white !important;
}

/* -------------------------------- SERVICE AREA END ------------------------ */


/* -------------------------------- FEATURES AREA START ------------------------ */

.single__features__blk {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    padding: 20px;
    min-height: 408px;
    padding-top: 70px;
    transition: .3s all;
    cursor: pointer;
}

.features__ico {
    border-radius: 1.5em;
    background: #FDF3E7;
    height: 90px;
    width: 90px;
    margin: 0 auto;
    margin-bottom: 25px;
    transition: .3s all;
}

.features__content h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.875em;
    text-align: center;
    text-transform: capitalize;
    color: #003951;
    transition: .3s all;
}

.features__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.75em;
    text-align: center;
    color: #77769C;
    transition: .3s all;
}

.featues__area {
    padding-bottom: 120px;
}

.featues__area div div div {
    cursor: default;
}

.features__ico img {
    transition: .3s all;
}

.single__features__blk:hover {
    background: #003951;
}

.single__features__blk:hover .features__ico {
    background: #ED880E;
}

.single__features__blk:hover .features__ico img {
    filter: brightness(100);
}

.single__features__blk:hover .features__content h4 {
    color: #fff;
}

.single__features__blk:hover .features__content p {
    color: #fff;
}


/* -------------------------------- FEATURES AREA END ------------------------ */


/* -------------------------------- PRICING AREA START ------------------------ */

.offer-valid {
    color: red !important;
    font-weight: 600 !important;
    font-style: italic !important;
}

.pricing__title span {
    font-style: normal;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #ED880E;
}

.pricing__title {
    text-align: center;
}

.pricing__title h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 1.5em;
    color: #003951;
    margin-top: 15px;
    margin-bottom: 45px;
}

.pricing__blk {
    padding: 46px 36px;
    border-radius: 1.5em;
    background: #fff;
}

.pricing__inner__title {
    height: 12em;
}

.pricing__inner__title h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.875em;
    text-transform: uppercase;
    color: #003951;
    margin-bottom: 10px;
}

.pricing__inner__title p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.75em;
    color: #003951;
}

.main__price {
    height: 8em;
}

.main__price h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 1.5em;
    display: flex;
    align-items: flex-end;
    color: #ED880E;
    margin-bottom: 10px;
}

.main__price h3 span {
    font-style: normal;
    font-weight: 500;
    font-size: 1.875rem;
    line-height: 1.5em;
    color: #003951;
    line-height: 41px;
    margin-left: 0.5em;
}

.main__price p {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.125em;
    text-transform: uppercase;
    color: #003951;
}

.price__list ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.125em;
    color: #003951;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.price__list ul li img {
    margin-right: 11px;
}

.price__list {
    margin-top: 30px;
}

.price__list ul {
    padding: 0;
}

.pricing__btn a {
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.125em;
    text-align: center;
    text-transform: uppercase;
    color: #ED880E;
    background: #FFFFFF;
    border: 1px solid #ED880E;
    border-radius: 0.25em;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all;
    padding: 1em;
}

.pricing__btn a:hover {
    background: #ED880E;
    border-color: #fff;
    color: #fff;
}

.pricing__area {
    padding: 100px 0;
    padding-top: 0;
}

.pricing__blk.active {
    background: #ED880E;
}

.pricing__blk.active .pricing__inner__title h4 {
    color: #fff;
}

.pricing__blk.active .pricing__inner__title p {
    color: #fff;
}

.pricing__blk.active .main__price h3 {
    color: #fff;
}

.pricing__blk.active .main__price p {
    color: #fff;
}

.pricing__blk.active .main__price h3 span {
    color: #fff;
}

.pricing__blk.active .price__list ul li img {
    filter: brightness(100);
}

.pricing__blk.active .price__list ul li {
    color: #fff;
}

.countar_up_area {
    background: #003951;
    padding: 60px 0;
}

.single__counter__up__blk h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 5rem;
    line-height: 86px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: center;
}

.single__counter__up__blk h4 i {
    font-size: 3.125rem;
    margin-left: 15px;
}

.single__counter__up__blk p {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    line-height: 2.25em;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.pricing__title p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.75em;
    text-align: center;
    color: #77769C;
}

.tes__top__ico {
    background: #EEFAFF;
    border-radius: 18px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    position: relative;
    top: -30px;
    transition: .3s;
}

.five__star {
    margin-bottom: 21px;
    display: flex;
}

.tes__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    color: #77769C;
    transition: .3s all;
}

.tes__profile {
    display: flex;
    align-items: center;
    border-top: 2px solid #77769C4F;
    padding-top: 20px;
    margin-top: 10px;
    position: relative;
}

.tes__profile:before {
    margin-top: 10px;
    position: absolute;
    top: -2px;
    left: 0;
    height: 2px;
    width: 72px;
    content: "";
    background: #ED880E;
    margin: 0;
}

.profile__thumb {
    height: 72px;
    width: 72px;
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.profile__content h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    text-transform: capitalize;
    color: #003951;
    margin-bottom: 7px;
}

.profile__content p {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1em;
    text-transform: uppercase;
    color: #77769C;
    margin: 0;
    transition: .3s all;
}

.testimonial__single__slide {
    padding: 1em;
    transition: .3s all;
    border-radius: 12px;
    cursor: pointer;
}

.five__star span img {
    height: 18px;
}

.testimonial__slide__blk {
    padding: 5em 0;
}

.owl-stage-outer {
    padding: 0;
}

.testimonial__single__slide:hover .tes__top__ico {
    background: #ED880E;
}

.testimonial__single__slide:hover .tes__top__ico img {
    filter: invert(100%);
    opacity: 1;
}

.testimonial__single__slide:hover {
    background: hsl(200, 20%, 95%);
}

.testimonial__single__slide:hover .profile__content p {
    color: #ED880E;
}

.tes__top__ico img {
    transition: .3s;
}

.testimonial__slide__blk {
    margin-top: 0;
}

.testimonial__slide__blk .owl-nav button {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
    height: 3em;
    width: 3em;
    border-radius: 50%;
    border: 1px solid #003951 !important;
    font-size: 21px !important;
    color: #003951 !important;
}

.owl-nav button.owl-next {
    left: auto;
    right: -70px;
}

.testimonial__slide__blk .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.owl-dots {
    display: none;
}

.testimonial__slide__blk .owl-dot {
    background: #003951 !important;
    opacity: 0.24;
    height: 12px !important;
    width: 12px;
    border-radius: 50%;
    margin: 0 4px;
}

.testimonial__slide__blk .owl-dot.active {
    background: #ED880E !important;
    opacity: 1;
    height: 18px !important;
    width: 18px;
}

.testimonial__area {
    padding: 100px 0;
    position: relative;
    z-index: 22;
}


/* -------------------------------- PRICING AREA END ------------------------ */


/* -------------------------------- STRONG AREA START ------------------------ */

.strong__inner__blk {
    background: #003951;
    border-radius: 1.5em;
    padding: 85px 65px;
    z-index: 1;
    position: relative;
}

.strong__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.strong__shape img {
    height: 630px;
}

.strong__content h3 {
    font-style: normal;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 2em;
    text-transform: capitalize;
    color: #FFFFFF;
    max-width: 520px;
    margin-bottom: 10px;
}

.strong__area {
    padding-bottom: 40px;
}

.strong__content p {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 2.25em;
    color: #FFFFFF;
}


/* -------------------------------- STRONG AREA END ------------------------ */


/* -------------------------------- FOOTER AREA START ------------------------ */

.footer__content {
    display: flex;
    justify-content: center;
}

.footer__content div:first-child {
    display: flex;
}

.footer__content div:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__content p {
    text-align: center;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.625em;
    color: #77769C;
}

.site__identity {
    margin-bottom: 30px;
}

.footer__social {
    display: flex;
    justify-content: center;
    margin: 1.5em 0;
}

.footer__social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #003951;
    border-radius: 50%;
    color: #003951;
    transition: .3s all;
    margin: 0 1em;
}

.footer__social a:hover {
    background: #ED880E;
    color: #fff;
    border-color: #ED880E;
}

.copyright__text{
    background-color: var(--lighter-gray);
}

.copyright__text p {
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.125em;
    color: #003951;
    margin: 0;
}

.copyright__text p a {
    color: #ED880E;
}

.copyright__text a:hover {
    color: #77769C;
}

.footer__list h4 {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.875em;
    text-transform: capitalize;
    color: #003951;
}

.footer__list ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 3em;
    color: #77769C;
    transition: .3s all;
}

.footer__list ul li a:hover {
    color: #ED880E;
}

.footer__email input {
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
    text-transform: capitalize;
    color: #77769C;
    background: #FFFFFF;
    border: 1px solid #E7EFFF;
    border-radius: 6.25em;
    padding: 14px 24px;
    padding-right: 7.5em;
    width: 100%;
}

.footer__email {
    position: relative;
    width: 80%;
    margin: auto;
}

.footer__email button {
    background: #ED880E;
    border-radius: 6.25em;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    border: 0;
    padding: 1em 1.125em;
    position: absolute;
    top: 0.25em;
    right: 0.25em;
}

.newsletter {
    text-align: center;
}

.desk__none {
    display: none;
}

.mobile__menu {
    display: none;
}

.footer__list h4 {
    font-size: 1.25rem;
    line-height: 1.875em;
}

/* -------------------------------- FOOTER AREA END ------------------------ */