/* Common CSS Start */
html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

.tb-common-btn a,
.tb-common-btn button {
    font: 400 20px/22px "Libre Franklin", sans-serif;
    color: #fff;
    padding: 13px 35px;
    background: #1d593e;
    border-radius: 5px;
    transition: all 0.5s;
    display: inline-block;
    border: none;
}

.align-center {
    align-items: center;
}

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

.tb-common-btn a:hover,
.tb-common-btn button:hover,
.tb-common-btn a:active,
.tb-common-btn button:active,
.tb-common-btn a:focus,
.tb-common-btn button:focus {
    background: #111;
    color: #fff;
}

a {
    text-decoration: none !important;
}

.common-text {
    margin: 0 auto 40px;
    text-align: center;
    width: 70%;
}

.common-text p b {
    font-weight: 600;
}

.common-text span {
    display: block;
    font: 500 18px/20px "Libre Franklin", sans-serif;
    color: #1d593e;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.common-text h2 {
    font: 600 38px/45px "Libre Franklin", sans-serif;
    color: #111;
    margin: 0 0 15px 0;
    text-align: center;
}

.common-text p {
    font: 400 18px/32px "Libre Franklin", sans-serif;
    color: #111;
    margin: 0;
}

.back-to-top {
    font-size: 20px;
    color: #FFF;
    position: fixed;
    right: 26px;
    bottom: 120px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: url(../images/other/back_to_top.png) no-repeat scroll center center #1d593e;
    text-align: center;
    z-index: 99;
    -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;
    display: none;
}

/* Common CSS End */
#tb-top-part {
    background-image: url(../images/header/tb-top-part.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* header CSS Start */
#tb-header #navbarNav {
    justify-content: end;
}

#tb-header .navbar-brand {
    padding: 0;
    margin: 0;
}

#tb-header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

#tb-header nav .navbar-toggler {
    width: 25px;
    height: 25px;
    padding: 0;
}

#tb-header nav .navbar-toggler:is(:hover, :focus, :active, :focus-visible, :focus-within) {
    border: none;
    outline: none;
    box-shadow: none;
}

#tb-header nav .navbar-toggler .lines {
    width: 25px;
    height: 2px;
    background: #111;
    display: block;
    position: relative;
    transition: transform 200ms;
    transition: -webkit-transform 200ms;
    -webkit-transition: -webkit-transform 200ms;
    -moz-transition: -webkit-transform 200ms;
    -ms-transition: -webkit-transform 200ms;
    -o-transition: -webkit-transform 200ms;
    margin: 0 0 -2px;
}

#tb-header nav .navbar-toggler[aria-expanded="false"] .line-1 {
    -webkit-transform: translate3d(0, -8px, 0);
    transform: translate3d(0, -8px, 0);
}

#tb-header nav .navbar-toggler[aria-expanded="false"] .line-2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#tb-header nav .navbar-toggler[aria-expanded="false"] .line-3 {
    -webkit-transform: translate3d(0, 8px, 0);
    transform: translate3d(0, 8px, 0);
}

#tb-header nav .navbar-toggler .line-1 {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg);
}

#tb-header nav .navbar-toggler .line-2 {
    -webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
    transform: translate3d(0, 0, 0) scale(0.1, 1);
}

#tb-header nav .navbar-toggler .line-3 {
    -webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
    transform: translate3d(0, 0, 0) rotate(-45deg);
}

#tb-header.sticky {
    animation: 1s ease 0s normal both 1 running fixedmenu;
    -webkit-animation: 1s ease 0s normal both 1 running fixedmenu;
    -moz-animation: 1s ease 0s normal both 1 running fixedmenu;
    -o-animation: 1s ease 0s normal both 1 running fixedmenu;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: none;
    left: 0;
    position: fixed !important;
    right: 0;
    top: 0;
    z-index: 9;
}

@-webkit-keyframes fixedmenu {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

@-moz-keyframes fixedmenu {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

@keyframes fixedmenu {
    0% {
        top: -100%;
    }

    100% {
        top: 0;
    }
}

#tb-header #navbarNav ul li {
    padding: 10px 15px;
}

#tb-header #navbarNav ul li a {
    font: 400 17px/20px "Libre Franklin", sans-serif;
    padding: 0;
    display: inline-block;
    color: #000;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    position: relative;
}

#tb-header #navbarNav ul li a::after {
    width: 0;
    left: 0;
    right: 0;
    bottom: -10px;
    top: auto;
    margin: auto;
    height: 2px;
    background: #1d593e;
    content: "";
    position: absolute;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

#tb-header #navbarNav ul li:hover a::after,
#tb-header #navbarNav ul li.active a::after {
    width: 100%;
}

#tb-header #navbarNav ul li:hover a,
#tb-header #navbarNav ul li.active a,
#tb-header #navbarNav ul li.active:hover a {
    color: #1d593e;
}

#tb-header .navbar {
    padding: 20px 0;
}

#tb-header.sticky .navbar {
    padding: 25px 0;
}

#tb-header.sticky .navbar-brand {
    max-width: 194px;
}

/* header CSS End */

/* Slider Content CSS Start */
.tb-top-right-part h1 {
    font: 600 38px/42px "Libre Franklin", sans-serif;
    color: #111;
    margin: 30px 0;
}

#tb-top-content {
    padding: 150px 0 85px 0;
}

.tb-top-right-part span {
    font: 400 20px/34px "Libre Franklin", sans-serif;
    color: #111;
    display: block;
    margin: 0 0 30px 0;
}

/* Slider Content CSS End */

/* tb-password-line CSS Start */
#tb-password-line {
    background: #1d593e;
    padding: 24px 25px;
}

#tb-password-line h2 {
    font: 400 26px/40px "Libre Franklin", sans-serif;
    color: #fff;
    margin: 0;
    text-align: center;
}

#tb-password-line h2 span {
    display: inline-block;
    background-color: #111;
    width: 40px;
    height: 40px;
    border-radius: 4px;
}

#tb-password-line h2 a {
    color: #fff;
    text-decoration: underline !important;
    transition: all 0.5s;
}

#tb-password-line h2 a:hover {
    color: #cecece;
}

/* tb-password-line CSS End */
/* tb-languages CSS Start */
#tb-languages {
    text-align: center;
    padding: 80px 0;
}

#tb-languages .tb-languages-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

#tb-languages .tb-languages-col {
    margin: 0 15px;
}

#tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img {
    width: 130px;
    height: 130px;
    background: #ddd;
    line-height: 130px;
    border-radius: 50%;
}

#tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img-border {
    border: 2px solid #ddd;
    padding: 5px;
    border-radius: 50%;
}

#tb-languages .tb-languages-col span {
    font: 400 16px/20px "Libre Franklin", sans-serif;
    color: #111;
    margin: 10px 0 0 0;
    display: block;
}

/* tb-languages CSS End */
/* Pages CSS start */
#pages {
    padding: 80px 0 40px;
    background: #f2f2f2;
}

#pages .demo-inner .image-wrapper {
    position: relative;
    padding: 15px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

#pages .demo-inner {
    margin: 0 0 30px 0;
}

#pages .demo-inner .image-wrapper .demo_image {
    min-height: 500px;
    overflow: hidden;
    position: relative;
}

#pages .demo-inner .image-wrapper .demo_image img {
    left: 0;
    position: absolute;
    top: 0px;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transition-duration: 5s;
    -webkit-transition-duration: 5s;
    -moz-transition-duration: 5s;
    -ms-transition-duration: 5s;
    -o-transition-duration: 5s;
    max-width: 100%;
}

#pages .image-shop-scroll::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

#pages .demo-inner .demo_content {
    display: block;
    position: relative;
    margin-top: 25px;
    text-align: center;
}

#pages .demo-inner .demo_content .demo_title {
    margin: 0 0 15px 0;
    font: 600 22px/26px "Libre Franklin", sans-serif;
    color: #444;
}

#pages .demo-inner .demo_content a {
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}

#pages .demo-inner:hover .demo_content a {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

/* Pages CSS End */
/* features CSS Start */
#features {
    padding: 80px 0;
}

#features .features-wrapper {
    width: 20%;
}

#features .features-col {
    background: #f9f9f9;
    border-radius: 5px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    position: relative;
    padding: 15px 15px;
    text-align: center;
    border: 3px solid #ffffff;
    margin: 2px;
    border-radius: 8px;
}

#features .features-col:hover {
    box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    -webkit-box-shadow: 0 2px 6px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#features .features-col .feature-name {
    font: 600 16px/26px "Libre Franklin", sans-serif;
    color: #111;
    padding: 10px 0;
    text-transform: capitalize;
}

#features .features-col .feature-desc {
    font: 400 14px/25px "Libre Franklin", sans-serif;
    color: #555;
    margin: 0;
    min-height: 126px;
}

/* features CSS End */
/* builder CSS Start */
#builder {
    padding: 80px 0;
    background: #f2f2f2;
}

#builder .builder-bottom .builder-col .builder-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 55px;
    background-color: transparent;
}

#builder .builder-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
}

#builder .builder-bottom .builder-col {
    padding: 0 45px;
}

#builder .builder-wrapper .builder-img {
    margin: 0 0 50px 0;
    text-align: center;
}

#builder .builder-bottom .builder-col .builder-icon.icon-01 {
    background-image: url(../images/service_icons/coding.svg);
}

#builder .builder-bottom .builder-col .builder-icon.icon-02 {
    background-image: url(../images/service_icons/code.svg);
}

#builder .builder-bottom .builder-col .builder-icon.icon-03 {
    background-image: url(../images/service_icons/loading.svg);
}

#builder .builder-bottom .builder-col .builder-icon.icon-04 {
    background-image: url(../images/service_icons/flexible.svg);
}

#builder .builder-bottom .builder-col .builder-text {
    font: 400 18px/32px "Libre Franklin", sans-serif;
    color: #111;
    text-align: center;
    text-transform: capitalize;
}

/* builder CSS End */

/* responsive section CSS Start */
#responsive {
    padding: 80px 0;
    overflow: hidden;
}

#responsive .responsive-content ul {
    padding: 0 0 0 20px;
    margin: 0;
}

#responsive .responsive-content ul li {
    margin: 0 0 30px 0;
    font: 500 22px/42px "Libre Franklin", sans-serif;
    color: #111;
    list-style: auto;
}

#responsive .responsive-content {
    padding: 0 50px;
}

#responsive .responsive-img {
    text-align: center;
}

/* responsive section CSS End */
/* more-stylist CSS Start */
#more-stylist {
    padding: 80px 0 50px;
    background-color: #f2f2f2;
}

#more-stylist .more-stylist-wrapper .owl-item {
    padding: 15px;
}

#more-stylist .more-stylist-items {
    position: relative;
    padding: 15px;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

#more-stylist .more-stylist-main .more-stylist-head {
    font: 600 22px/25px "Libre Franklin", sans-serif;
    color: #111;
    margin: 0 0 5px 0;
    text-align: center;
}

#more-stylist .more-stylist-wrapper .owl-dots {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0 30px 0;
}

#more-stylist .more-stylist-wrapper .owl-dots button {
    width: 15px;
    height: 15px;
    background-color: #cacaca;
    border-radius: 50%;
    margin: 0 2px;
}

#more-stylist .more-stylist-wrapper .owl-dots button.active {
    background-color: #666;
}

/* more-stylist CSS End */
/* All Section Start */
#all-section {
    padding: 80px 0;
}

#all-section .first-features-slider-marquee {
    margin-top: 40px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

#all-section .first__features__marquee__content {
    width: 300%;
    display: flex;
    line-height: 30px;
    -webkit-animation: marquee-left 30s linear infinite forwards;
    animation: marquee-left 30s linear infinite forwards;
}

#all-section .first-features-marquee-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 33.33%;
    list-style: none;
    padding: 0;
    margin: 0;
}

#all-section .first__features__marquee__content ul li {
    max-width: 20%;
    width: 100%;
    padding: 0px 15px;
}

#all-section .first__features__marquee__content ul li img {
    border: 1px solid #C1C1C1;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

@-webkit-keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.6%);
    }
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-66.6%);
    }
}

#all-section .second-features-slider-marquee {
    margin-top: 40px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

#all-section .second__features__marquee__content {
    width: 300%;
    display: flex;
    line-height: 30px;
    -webkit-animation: marquee-right 30s linear infinite forwards;
    animation: marquee-right 30s linear infinite forwards;
}

#all-section .second-features-marquee-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 33.33%;
    list-style: none;
    padding: 0;
    margin: 0;
}

#all-section .second__features__marquee__content ul li {
    max-width: 20%;
    width: 100%;
    padding: 0px 15px;
}

#all-section .second__features__marquee__content ul li img {
    border: 1px solid #C1C1C1;
    border-radius: 8px;
    overflow: hidden;
    padding: 0px;
    width: 100%;
}

@-webkit-keyframes marquee-right {
    0% {
        transform: translateX(-66.6%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(-66.6%);
    }

    100% {
        transform: translateX(0);
    }
}

/* All Section End */
/* recommend CSS Start */
#recommend {
    background: #f2f2f2;
    padding: 80px 0;
    text-align: center;
}

#recommend .recommend-wrapper .owl-item {
    padding: 15px;
}

#recommend .recommend-item {
    position: relative;
    padding: 15px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 2px 7px 15px rgb(0 0 0 / 5%);
}

#recommend .recommend-item a {
    display: inline-block;
}

#recommend .recommend-item a img {
    border-radius: 8px;
}

#recommend .recommend-item a span {
    font: 400 17px/21px "Libre Franklin", sans-serif;
    color: #111;
    margin: 14px 0 4px 0;
    text-decoration: underline;
    display: block;
    transition: all 0.5s;
}

#recommend .recommend-item a:hover span {
    color: #1d593e;
}

#recommend .owl-nav button {
    font-size: 0;
    margin: 0 5px;
}

#recommend .owl-nav button::after {
    width: 35px;
    height: 14px;
    display: inline-block;
    content: "";
}

#recommend .owl-nav button.owl-prev::after {
    background-image: url(../images/other/arrow-01.png);
}

#recommend .owl-nav button.owl-next::after {
    background-image: url(../images/other/arrow-02.png);
}

#recommend .owl-nav {
    margin: 5px 0 30px 0;
}

/* recommend CSS End */
/* bottom-purchase CSS Start */
#bottom-purchase {
    padding: 80px 0;
}

#bottom-purchase .common-text {
    width: 80%;
    margin-bottom: 0;
}

/* bottom-purchase CSS End */
/* footer CSS Start */
#footer {
    background: #111111;
    text-align: center;
    padding: 80px 0;
}

#footer .common-text h2,
#footer .common-text p {
    color: #fff;
}

#footer .tb-common-btn button:hover,
#footer .tb-common-btn button:active,
#footer .tb-common-btn button:focus {
    background-color: #fff;
    color: #111;
}

#footer-bottom {
    padding: 15px;
    text-align: center;
    background: #1d593e;
    color: #fff;
    font: 400 17px/30px "Libre Franklin", sans-serif;
}

/* footer CSS End */


/*---------------------- The Modal Start-----------------------------------*/


.tb-password.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-backdrop {
    z-index: 1;
}

.tb-password .modal-header {
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    padding: 0;
    background: #111;
    border-radius: 0;
    width: 30px;
    height: 30px;
    text-align: center;
}

.tb-password a.primary-btn {
    font-size: 16px;
    padding: 15px 25px;
}

.tb-password .modal-body {
    padding: 0;
}

.tb-password .modal-title {
    margin: 10px 0 22px;
    font-size: 17px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    color: #111;
}

.tb-close-btn {
    background-color: none;
}

.tb-password .modal-title .subTitle {
    background: #1d593e;
    color: #fff;
    margin: 0 8px;
    padding: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    font-weight: 600;
    width: 25px;
    height: 25px;
    display: inline-block;
    line-height: 26px;
}

.tb-password a.enter-password {
    margin-left: 8px;
    float: none;
    width: auto;
    display: inline-block;
    vertical-align: top;
}

.tb-password svg.preview-password:hover {
    fill: #5ab4d1;
}

.tb-password .modal-content {
    position: relative;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 25px;
}

.tb-password .modal-content .modal-button.btn-default {
    float: none;
    display: inline-block;
    vertical-align: top;
    width: auto;
    text-align: center;
    padding: 12px 18px;
    margin-top: 20px;
    text-transform: capitalize;
    font-size: 14px;
}

.tb-password .tb-close-btn {
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-password .tb-close-btn:hover {
    transform: rotate(180deg);
}

/*---------------------- The Modal End-----------------------------------*/

/* Responsive CSS START */
@media (max-width: 1399px) {
    .tb-top-right-part h1 {
        font-size: 33px;
    }

    #tb-languages .tb-languages-col {
        margin: 0 6px;
    }

    #pages .demo-inner .image-wrapper .demo_image {
        min-height: 420px;
    }

    #features .features-col .feature-name {
        font-size: 15px;
    }

    #responsive .responsive-content {
        padding: 0;
    }
}

@media (max-width: 1299px) {
    #tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img {
        width: 110px;
        height: 110px;
        line-height: 110px;
    }

    #features .features-wrapper {
        width: 25%;
    }
}

@media (max-width: 1199px) {
    #tb-header #navbarNav ul li {
        padding: 10px 10px;
    }

    #tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img {
        width: 90px;
        height: 90px;
        line-height: 90px;
    }

    #pages .demo-inner .image-wrapper .demo_image {
        min-height: 320px;
    }

    #features .features-col {
        padding: 10px;
    }

    #builder .builder-bottom .builder-col {
        padding: 0 25px;
    }

    #responsive .responsive-content ul li {
        font-size: 19px;
        line-height: 32px;
    }

    .common-text {
        width: 90%;
    }
}

@media (max-width: 991px) {
    .common-text {
        width: 100%;
    }

    .tb-top-right-part {
        text-align: center;
        padding: 30px 0 0 0;
    }

    #tb-languages .tb-languages-col {
        margin: 0;
        display: inline-block;
    }

    #tb-languages .tb-languages-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    #tb-languages .tb-languages-wrapper .tb-languages-col .tb-languages-img-border {
        display: inline-block;
    }

    #pages .demo-inner .image-wrapper .demo_image {
        min-height: 220px;
    }

    #tb-header .navbar {
        padding: 15px 0;
    }

    #tb-top-content {
        padding: 100px 0 85px 0;
    }

    #tb-header {
        background: #fff;
        border-bottom: 1px solid #1d593e;
    }

    #tb-header .navbar-nav {
        margin: 30px 0 0 0;
    }

    #features .features-wrapper {
        width: 33.33%;
    }

    #builder .builder-bottom .builder-col {
        padding: 0 15px;
    }

    #builder .builder-bottom .builder-col .builder-text {
        font-size: 16px;
    }

    #all-section .first__features__marquee__content,
    #all-section .second__features__marquee__content {
        width: 500%;
    }

    #bottom-purchase .common-text {
        width: 100%;
    }

    #tb-header .navbar-brand {
        width: 185px;
    }

    #tb-header .navbar {
        padding: 25px 0;
    }
}

@media (max-width: 767px) {
    #tb-top-content {
        padding: 100px 0 55px 0;
    }

    #tb-languages,
    #features,
    #builder,
    #responsive,
    #all-section,
    #recommend,
    #bottom-purchase,
    #footer {
        padding: 50px 0;
    }

    #pages {
        padding: 50px 0 0;
    }

    #more-stylist {
        padding: 50px 0 20px;
    }

    #tb-password-line h2 {
        font-size: 22px;
    }

    .common-text h2 {
        font-size: 30px;
        line-height: 38px;
    }

    #features .features-wrapper {
        width: 50%;
    }

    #features .features-content {
        padding: 0 15px;
    }

    #builder .builder-bottom .builder-col .builder-text {
        font-size: 16px;
        line-height: 20px;
    }

    .common-text p {
        font-size: 16px;
        line-height: 30px;
    }

    #pages .demo-inner .demo_content a {
        opacity: 1;
        -webkit-opacity: 1;
        -moz-opacity: 1;
        -khtml-opacity: 1;
    }

    .tb-common-btn a,
    .tb-common-btn button {
        font-size: 17px;
        line-height: 19px;
    }
}

@media (max-width: 543px) {
    #tb-password-line {
        padding: 15px;
    }

    #tb-password-line h2 {
        font-size: 18px;
    }

    #features .features-wrapper {
        width: 100%;
    }

    #features .features-col .feature-desc {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .tb-top-right-part h1 {
        font-size: 24px;
        line-height: 33px;
    }

    #tb-header .navbar-brand {
        width: 155px;
    }

    #tb-header .navbar {
        padding: 20px 0;
    }

    .tb-top-right-part span {
        margin: 0 0 10px 0;
    }

    .tb-top-right-part h1 {
        margin: 10px 0;
    }

    #tb-top-content {
        padding: 100px 0 15px 0;
    }

    #tb-languages .tb-languages-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    #builder .builder-bottom {
        display: block;
    }

    #builder .builder-bottom .builder-col {
        padding: 15px;
    }

    #builder .builder-wrapper .builder-img {
        margin: 0;
    }

    #all-section .first__features__marquee__content,
    #all-section .second__features__marquee__content {
        width: 700%;
    }

    .common-text h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .common-text p {
        font-size: 14px;
        line-height: 28px;
    }

    .common-text {
        margin: 0 auto 20px;
    }

    #features .features-wrapper {
        padding: 0 0 15px 0;
    }
}

@media (max-width: 360px) {
    .tb-top-right-part h1 {
        font-size: 21px;
        line-height: 30px;
    }

    .tb-top-right-part span {
        font-size: 18px;
        line-height: 30px;
    }

    #tb-languages .tb-languages-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    #features {
        padding: 20px 0;
    }

    #footer-bottom {
        font-size: 15px;
        line-height: 28px;
    }
}

/* Responsive CSS END */