/*  =============== UNIVERSAL CSS  =============== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus-visible {
    border: none;
    outline: none;
}


/*  =============== DEFAULT CSS  =============== */
html {
    scroll-behavior: smooth;
}

body {
    color: #111111;
}

::selection {
    background: #f37d6c;
    color: #ffffff;
}

p {
    font: 400 18px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0;
}

p,
ul,
ol {
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea {
    outline: none;
}


/*  =============== LOADER SECTION  =============== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
}

#loader-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}


/*  =============== COMMON CSS  =============== */
.tb-common-btn {
    text-transform: capitalize;
    font: 400 16px/18px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    background: #f37d6c;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-common-btn:hover,
.tb-common-btn:focus,
.tb-common-btn:active {
    background: #111111;
    color: #ffffff;
}

.tb-section-title {
    text-align: center;
    position: relative;
    text-transform: capitalize;
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    padding: 0 0 20px;
    margin: 0 0 40px;
}

.tb-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

#tb-services {
    margin: -200px 0 0;
    padding: 100px 0 0;
}

#tb-about {
    margin: -100px 0 0;
}

#tb-gallery,
#tb-blog,
#tb-footer {
    margin: -200px 0 0;
    padding: 100px 0 0;
}

.tb-section-padding {
    padding: 100px 0 0;
}

#tb-footer .tb-section-padding {
    padding: 75px 0 0;
}


/* =============== BACK TO TOP =============== */
#return-to-top {
    position: fixed;
    bottom: 40px;
    right: 45px;
    background: #111111;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 2px solid #ffffff;
    display: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    z-index: 3;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 46px;
}

#return-to-top:hover,
#return-to-top:focus,
#return-to-top:active {
    background: #f37d6c;
}


/*  =============== NAVBAR SECTION =============== */
header {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 999;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

header nav {
    background: #ffffff;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.16);
    padding: 16px 28px !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.navbar {
    justify-content: space-between;
    align-items: center;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end !important;
    align-items: center;

}

header nav .navbar-brand {
    max-width: 100%;
}


header nav .navbar-toggler .icon-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: #111111;
    border-radius: 1px;
    margin: 0 0 5px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
}

header nav .navbar-toggler {
    padding: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

header nav .navbar-toggler,
header nav .navbar-toggler:hover,
header nav .navbar-toggler:focus,
header nav .navbar-toggler:active {
    box-shadow: none;
}

header.tb-navscroll {
    top: 0;
    background: #ffffff;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.16);
}

header.tb-navscroll nav {
    background: transparent;
    box-shadow: none;
    padding: 15px 0 !important;
    border-radius: none;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
}

header nav ul li a {
    color: #111111 !important;
    font: 500 16px/18px 'Arimo', Helvetica, sans-serif !important;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    padding: 10px 22px !important;
    margin: 0 10px 0 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 400ms ease-in-out !important;
    -webkit-transition: all 400ms ease-in-out !important;
    -moz-transition: all 400ms ease-in-out !important;
    -ms-transition: all 400ms ease-in-out !important;
    -o-transition: all 400ms ease-in-out !important;
}

header nav ul li:last-child a {
    margin: 0;
}

header nav ul li a.active,
header nav ul li a:hover,
header nav ul li a:focus,
header nav ul li a:active {
    background: #f37d6c !important;
    color: #ffffff !important;
}


/*  =============== SLIDER SECTION  =============== */
.tb-slider-section {
    overflow-x: hidden;
}

.tb-slider-section .carousel-control-prev,
.tb-slider-section .carousel-control-next {
    width: auto;
    opacity: 1;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-slider-section .carousel-control-prev {
    left: -50px;
    right: auto;
}

.tb-slider-section .carousel-control-next {
    left: auto;
    right: -50px;
}

.tb-slider-section:hover .carousel-control-prev,
.tb-slider-section:focus .carousel-control-prev,
.tb-slider-section:active .carousel-control-prev {
    left: 50px;
}

.tb-slider-section:hover .carousel-control-next,
.tb-slider-section:focus .carousel-control-next,
.tb-slider-section:active .carousel-control-next {
    right: 50px;
}

.tb-slider-section .tb-slider-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13%;
    margin: auto;
    width: 44%;
    height: 293px;
}

.tb-slider-section .tb-slider-content .tb-slider-semititle {
    font: 600 50px/52px 'Dancing Script', Helvetica, cursive;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.tb-slider-section .tb-slider-content .tb-slider-title {
    font: 700 90px/92px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    margin: 0 0 10px;
}

.tb-slider-section .tb-slider-content .tb-slider-detail {
    letter-spacing: 0.3px;
    margin: 0 0 20px;
    padding: 0 170px 0 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

.tb-slider-section .carousel-control-prev,
.tb-slider-section .carousel-control-next {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    color: #000000;
    margin: auto;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-slider-section .carousel-control-prev:hover,
.tb-slider-section .carousel-control-prev:focus,
.tb-slider-section .carousel-control-prev:active,
.tb-slider-section .carousel-control-next:hover,
.tb-slider-section .carousel-control-next:focus,
.tb-slider-section .carousel-control-next:active {
    background: #f37d6c;
    color: #ffffff;
}

.tb-slider-section .carousel-control-prev i,
.tb-slider-section .carousel-control-next i {
    font-size: 24px;
    line-height: 32px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}


/*  =============== SERVICES SECTION  =============== */
.tb-services-section {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    margin: 0 0 100px;
}

.tb-services-section .tb-services-card {
	background: #ffffff;
	padding: 20px;
	box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
	position: relative;
	text-align: center;
	transition: all 400ms ease-in-out;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
}

.tb-services-section .tb-services-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 3px;
    background: #f37d6c;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-services-section .tb-services-card:hover::before,
.tb-services-section .tb-services-card:focus::before,
.tb-services-section .tb-services-card:active::before {
    width: 100%;
    left: 0;
    right: auto;
}

.tb-services-section .tb-services-card .tb-services-icon {
	/* position: relative; */
	width: 80px;
	height: 80px;
	margin: 0 auto;
	/* background: #eceae7;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%; */
}

.tb-services-section .tb-services-card .tb-services-icon i {
    color: #111111;
    /* position: absolute;
    left: 40%; */
    display: inline-block;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-services-section .tb-services-card.tb-card1 .tb-services-icon i {
    font-size: 80px;
    line-height: 88px;
    /* bottom: -15%; */
}

.tb-services-section .tb-services-card.tb-card2 .tb-services-icon i {
    font-size: 75px;
    line-height: 82px;
    /* bottom: -10%; */
}

.tb-services-section .tb-services-card.tb-card3 .tb-services-icon i {
    font-size: 60px;
    line-height: 66px;
    /* bottom: 3px; */
}

.tb-services-section .tb-services-card.tb-card4 .tb-services-icon i {
    font-size: 55px;
    line-height: 61px;
    /* bottom: 3px; */
}

.tb-services-section .tb-services-card:hover .tb-services-icon i,
.tb-services-section .tb-services-card:focus .tb-services-icon i,
.tb-services-section .tb-services-card:active .tb-services-icon i {
    color: #f37d6c;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.tb-services-section .tb-services-card .tb-services-card-title {
    font: 700 30px/32px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #111111;
    margin: 0 0 15px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-services-section .tb-services-card:hover .tb-services-card-title,
.tb-services-section .tb-services-card:focus .tb-services-card-title,
.tb-services-section .tb-services-card:active .tb-services-card-title {
    color: #f37d6c;
}

.tb-services-section .tb-services-card p {
    font: 400 16px/28px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}


/*  =============== ABOUT SECTION  =============== */
.tb-about-section .tb-about-bg {
    background: #bec5c7;
    margin: 0 0 244px;
    padding: 75px 0 45px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-about-section .tb-about-bg-2 {
    position: relative;
    text-align: end;
    padding: 0;
    margin: 0 0 100px;
}

.tb-about-section .tb-about-bg-2:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    margin: auto;
    width: 60%;
    height: 450px;
    background: #bec5c7;
    z-index: -1;
}

.tb-about-section .tb-about-content .tb-about-img,
.tb-about-section .tb-about-content .tb-about-img-2 {
    width: 100%;
    border: 10px solid #ffffff;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
    display: inline-block;
    overflow: hidden;
}

.tb-about-section .tb-about-content .tb-about-img img,
.tb-about-section .tb-about-content .tb-about-img-2 img {
    display: inline-block;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-about-section .tb-about-bg:hover .tb-about-content .tb-about-img img,
.tb-about-section .tb-about-bg:focus .tb-about-content .tb-about-img img,
.tb-about-section .tb-about-bg:active .tb-about-content .tb-about-img img,
.tb-about-section .tb-about-content:hover .tb-about-img-2 img,
.tb-about-section .tb-about-content:focus .tb-about-img-2 img,
.tb-about-section .tb-about-content:active .tb-about-img-2 img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-about-section .tb-about-content .tb-about-img {
    margin: 0 0 -200px;
}

.tb-about-section .tb-about-content .tb-about-card {
    background: #ffffff;
    padding: 40px 60px;
    z-index: 1;
    position: relative;
    margin: 0 120px 0 0;
}

.tb-about-section .tb-about-content .tb-about-card-2 {
    margin: 0 131px 0 0;
}

.tb-about-section .tb-about-content .tb-about-text-box {
    position: relative;
    width: 100%;
    margin: 0 0 0 100px;
}

.tb-about-section .tb-about-content .tb-about-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: auto;
    right: -39px;
/*    background-image: url('../images/about-us-bg-img.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    width: 280px;
    height: 350px;
    z-index: 0;
    filter: drop-shadow(1px 2px 35px 0px rgba(37, 37, 37, 0.1));
    -webkit-filter: drop-shadow(1px 2px 35px 0px rgba(37, 37, 37, 0.1));
}

.tb-about-section .tb-about-content .tb-about-card .tb-about-card-title,
.tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    letter-spacing: 0.1px;
    margin: 0;
}

.tb-about-section .tb-about-content .tb-about-card .tb-about-card-title {
    position: relative;
    margin: 0 0 25px;
    padding: 0 0 20px;
}

.tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
    margin: 0 0 20px 0;
}

.tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-semititle {
    font: 700 40px/42px 'Dancing Script', Helvetica, cursive;
    letter-spacing: 0.5px;
    color: #f37d6c;
    letter-spacing: 0.5px;
    margin: 0 0 30px 0;
}

.tb-about-section .tb-about-content .tb-about-card .tb-about-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail,
.tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 20px;
}

.tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail.tb-last-paragraph {
    margin: 0 0 30px;
}

.tb-about-section .tb-about-content .tb-about-card .tb-common-btn {
    padding: 16px 35px;
}

.tb-about-section .tb-about-content .tb-about-card-2 .tb-common-btn {
    padding: 16px 43px;
}


/*  =============== OUR GALLERY SECTION  =============== */
.tb-gallery-section {
    margin: 0 0 292px !important;
}

.tb-gallery-section .tb-section-title {
    margin: 0 0 20px !important;
}

.tb-gallery-section .tb-gallery-section-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    text-align: center;
    padding: 0 270px;
    margin: 0 0 45px;
}

.tb-gallery-section .tb-gallery-img-section {
    overflow: hidden;
}

.tb-gallery-section .tb-gallery-img-section .item {
    margin: 0 15px;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img {
    width: 271px; /*100%;*/
    height: 271px; /*100%;*/
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:hover img,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:focus img,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:active img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:hover .tb-gallery-img::before,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:focus .tb-gallery-img::before,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:active .tb-gallery-img::before {
    background: rgba(0, 0, 0, 0.5);
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img .tb-gallery-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img .tb-gallery-search-icon:hover,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img .tb-gallery-search-icon:focus,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img .tb-gallery-search-icon:active {
    background: #f37d6c;
    color: #ffffff;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:hover .tb-gallery-img .tb-gallery-search-icon,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:focus .tb-gallery-img .tb-gallery-search-icon,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover:active .tb-gallery-img .tb-gallery-search-icon {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.tb-gallery-section .owl-carousel .item .tb-gallery-img:first-child {
    margin: 0 0 26px;
}

.tb-gallery-section .tb-gallery-section-btn {
    text-align: center;
}

.tb-gallery-section .tb-gallery-section-btn .tb-common-btn {
    padding: 16px 40px;
}


/*  =============== BANNER SECTION  =============== */
.tb-banner-section {
    margin: -292px 0 80px;
    padding: 0;
}

.tb-banner-section .tb-banner-card {
    position: relative;
    display: inline-block;
}

.tb-banner-section .tb-banner-card .tb-banner-img {
    overflow: hidden;
}

.tb-banner-section .tb-banner-card .tb-banner-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-banner-section .tb-banner-card:hover .tb-banner-img img,
.tb-banner-section .tb-banner-card:focus .tb-banner-img img,
.tb-banner-section .tb-banner-card:active .tb-banner-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-banner-section .tb-banner-card .tb-banner-card-content {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 45%;
    color: #ffffff;
}

.tb-banner-section .tb-banner-card .tb-banner-card-title {
    font: 700 50px/52px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    display: inline-block;
    margin: 0 0 10px;
}

.tb-banner-section .tb-banner-card .tb-banner-card-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 20px;
}

.tb-banner-section .tb-banner-card .tb-common-btn {
    padding: 16px 38px;
}


/*  =============== TESTIMONIAL SECTION  =============== */
.tb-testimonial-section {
    background: #d7e0e3;
    padding: 100px 0 30px;
    margin: 0 0 100px;
}

.tb-testimonial-section .tb-testimonial-card-section .item {
    margin: 0 15px;
}

.tb-testimonial-section .tb-testimonial-card-section {
    margin: 30px 0 0;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
    text-align: center;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-img {
    width: 100px;
    height: 100px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: block;
    overflow: hidden;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
    margin: 0 auto 10px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-name {
    font: 700 26px/28px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    margin: 0 0 5px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-states {
    font: 400 14px/16px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review-star {
    font-size: 18px;
    color: #ef9800;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0 20px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review-star i {
    margin: 0 3px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review {
    font: 400 16px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.1px;
}

.tb-testimonial-section .owl-carousel .owl-dots.disabled {
    display: block !important;
}

.tb-testimonial-section .owl-carousel .owl-dots .owl-dot span {
    position: relative;
    background: #fff;
    width: 10px;
    height: 10px;
    margin: auto;
}

.tb-testimonial-section .owl-theme .owl-nav {
    display: none;
}

.tb-testimonial-section .owl-carousel .owl-dots {
    margin: 30px 0 0;
}

.tb-testimonial-section .owl-carousel .owl-dots .owl-dot.active span {
    background: #f37d6c;
}

.tb-testimonial-section .owl-carousel .owl-dots .owl-dot {
    margin: 0 5px;
}

.tb-testimonial-section .owl-carousel .owl-dots .owl-dot.active {
    border: 1px solid #f37d6c;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


/*  =============== OUR NEWS & ARTICLES SECTION  =============== */
.tb-news-section {
    margin: 0 0 100px;
    padding: 0;
}

.tb-news-section .tb-news-card-section .tb-news-card {
    margin: 9px 0;
    position: relative;
    background: #ffffff;
    box-shadow: 0px 2px 16px 0px rgba(37, 37, 37, 0.06);
    display: flex;
    overflow: hidden;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img {
    width: 50%;
    height: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: auto;
}

.tb-news-section .tb-news-card-section .tb-news-card img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-news-section .tb-news-card-section .tb-news-card:hover img,
.tb-news-section .tb-news-card-section .tb-news-card:focus img,
.tb-news-section .tb-news-card-section .tb-news-card:active img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-news-section .tb-news-card-section .tb-news-card:hover .tb-news-card-img::before,
.tb-news-section .tb-news-card-section .tb-news-card:focus .tb-news-card-img::before,
.tb-news-section .tb-news-card-section .tb-news-card:active .tb-news-card-img::before {
    background: rgba(0, 0, 0, 0.5);
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img .tb-news-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img .tb-news-search-icon:hover,
.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img .tb-news-search-icon:focus,
.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img .tb-news-search-icon:active {
    background: #f37d6c;
    color: #ffffff;
}

.tb-news-section .tb-news-card-section .tb-news-card:hover .tb-news-card-img .tb-news-search-icon,
.tb-news-section .tb-news-card-section .tb-news-card:focus .tb-news-card-img .tb-news-search-icon,
.tb-news-section .tb-news-card-section .tb-news-card:active .tb-news-card-img .tb-news-search-icon {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
    width: 50%;
    padding: 25px;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
    font: 600 16px/18px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #f37d6c;
    margin: 0 0 15px;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
    font: 700 26px/28px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    margin: 0 0 10px;
    /*overflow: hidden;
    display: -webkit-box;*/
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
    font: 400 15px/26px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    margin: 0 0 20px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn {
    padding: 12px 21px;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
    font-size: 20px;
    margin: 0 0 0 5px;
}

.tb-news-section .tb-news-card-section .item {
    margin: 0 15px;
}

.tb-news-section .tb-news-card-section .tb-news-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
/*    background-image: url('../images/news-card-bg-img.png');*/
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 105px;
    z-index: 0;
}

.tb-news-section .tb-news-card-section .owl-nav {
    margin: 30px 0 0;
    display: flex !important;
    justify-content: center !important;
    background: transparent !important;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-prev,
.tb-news-section .tb-news-card-section .owl-nav .owl-next {
    background: #111111 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: relative !important;
    transition: all 400ms ease-in-out !important;
    -webkit-transition: all 400ms ease-in-out !important;
    -moz-transition: all 400ms ease-in-out !important;
    -ms-transition: all 400ms ease-in-out !important;
    -o-transition: all 400ms ease-in-out !important;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-prev::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next::before {
    font-family: IcoFont;
    content: '\ea93' !important;
    color: #ffffff;
    font-size: 22px;
    position: absolute !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-next::before {
    content: '\ea94' !important;
}


.tb-news-section .tb-news-card-section .owl-nav .owl-prev:hover,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev:focus,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev:active,
.tb-news-section .tb-news-card-section .owl-nav .owl-next:hover,
.tb-news-section .tb-news-card-section .owl-nav .owl-next:focus,
.tb-news-section .tb-news-card-section .owl-nav .owl-next:active {
    background: #f37d6c !important;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled:hover,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled:focus,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled:active,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled:hover,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled:focus,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled:active {
    background: #111111 !important;
}


/*  =============== BRAND LOGO SECTION  =============== */
.tb-brand-logo-section {
    margin: 0 0 100px;
    padding: 0;
}

.tb-brand-logo-section .container {
    overflow: hidden;
}

.tb-brand-logo-section .tb-brand-logo-img-section .item {
    margin: 0 15px;
}

.tb-brand-logo-section .tb-brand-logo-img-section .tb-brand-logo-img {
    margin: 0 auto;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.owl-carousel .owl-item img {
    width: 100%;
}

.tb-brand-logo-section .tb-brand-logo-img-section .tb-brand-logo-img:hover,
.tb-brand-logo-section .tb-brand-logo-img-section .tb-brand-logo-img:focus,
.tb-brand-logo-section .tb-brand-logo-img-section .tb-brand-logo-img:active {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
}

.tb-brand-logo-section .owl-nav .owl-prev,
.tb-brand-logo-section .owl-nav .owl-next {
    background: #111111 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    position: absolute !important;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 400ms ease-in-out !important;
    -webkit-transition: all 400ms ease-in-out !important;
    -moz-transition: all 400ms ease-in-out !important;
    -ms-transition: all 400ms ease-in-out !important;
    -o-transition: all 400ms ease-in-out !important;
}

.tb-brand-logo-section .owl-nav .owl-prev {
    left: -100px;
}

.tb-brand-logo-section .owl-nav .owl-next {
    right: -100px;
}

.tb-brand-logo-section .tb-brand-logo-img-section:hover .owl-nav .owl-prev,
.tb-brand-logo-section .tb-brand-logo-img-section:focus .owl-nav .owl-prev,
.tb-brand-logo-section .tb-brand-logo-img-section:active .owl-nav .owl-prev {
    left: 0;
}

.tb-brand-logo-section .tb-brand-logo-img-section:hover .owl-nav .owl-next,
.tb-brand-logo-section .tb-brand-logo-img-section:focus .owl-nav .owl-next,
.tb-brand-logo-section .tb-brand-logo-img-section:active .owl-nav .owl-next {
    right: 0;
}

.tb-brand-logo-section .owl-nav .owl-prev::before,
.tb-brand-logo-section .owl-nav .owl-next::before {
    font-family: IcoFont;
    content: '\ea93' !important;
    color: #ffffff;
    font-size: 20px;
    position: absolute !important;
    text-align: center;
    line-height: 45px;
}

.tb-brand-logo-section .owl-nav .owl-next::before {
    content: '\ea94' !important;
}

.tb-brand-logo-section .owl-nav .owl-prev:hover,
.tb-brand-logo-section .owl-nav .owl-prev:focus,
.tb-brand-logo-section .owl-nav .owl-prev:active,
.tb-brand-logo-section .owl-nav .owl-next:hover,
.tb-brand-logo-section .owl-nav .owl-next:focus,
.tb-brand-logo-section .owl-nav .owl-next:active {
    background: #f37d6c !important;
}

.tb-brand-logo-section .owl-nav .owl-prev.disabled,
.tb-brand-logo-section .owl-nav .owl-prev.disabled,
.tb-brand-logo-section .owl-nav .owl-prev.disabled,
.tb-brand-logo-section .owl-nav .owl-next.disabled,
.tb-brand-logo-section .owl-nav .owl-next.disabled,
.tb-brand-logo-section .owl-nav .owl-next.disabled,
.tb-brand-logo-section .owl-nav .owl-prev.disabled:hover,
.tb-brand-logo-section .owl-nav .owl-prev.disabled:focus,
.tb-brand-logo-section .owl-nav .owl-prev.disabled:active,
.tb-brand-logo-section .owl-nav .owl-next.disabled:hover,
.tb-brand-logo-section .owl-nav .owl-next.disabled:focus,
.tb-brand-logo-section .owl-nav .owl-next.disabled:active {
    background: #111111 !important;
}


/*  =============== EMAIL SECTION  =============== */
.tb-email-section {
    padding: 0;
}

.tb-email-section .tb-email-bg {
    margin: 0 0 -250px;
    position: relative;
    z-index: 1;
    background: #d7e0e3;
    padding: 50px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.tb-email-section .tb-email-bg .tb-email-content {
    display: flex;
    justify-content: start;
    align-items: center;
}

.tb-email-section .tb-email-bg .tb-email-content i {
    font-size: 38px;
    margin: 0 15px 0 0;
}

.tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
    font: 700 42px/44px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.2px;
}

.tb-email-section .tb-email-bg .tb-input-box {
    width: 100%;
    position: relative;
    background: #ffffff;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.tb-email-section .tb-email-bg .tb-input-box input {
    border: none;
    background: transparent;
    font: 400 15px/17px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    padding: 10px 165px 10px 26px;
    width: 100%;
    height: 50px;
}

.tb-email-section .tb-email-bg .tb-input-box input::placeholder {
    font: 400 15px/17px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #111111;
    opacity: 1;
}

.tb-email-section .tb-email-bg .tb-input-box .tb-common-btn {
    font: 500 15px/17px 'Arimo', Helvetica, sans-serif;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.tb-email-section .tb-email-bg .tb-input-box .tb-common-btn i {
    display: none;
    font-size: 20px;
}


/*  =============== FOOTER SECTION  =============== */
.tb-footer-section {
    background: #111111;
    padding: 164px 0 0;
    color: #ffffff;
}

.tb-footer-section .tb-footer-content {
    margin: 0 0 60px 0;
}

.tb-footer-section .tb-footer-logo {
    margin: 0 0 25px;
}

.tb-footer-section .tb-footer-content-detail {
    font: 400 14px/26px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    color: #cccccc;
    padding: 0 100px 0 0;
}

.tb-footer-section .tb-footer-section-title h5 {
    font: 700 22px/24px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    margin: 0 0 25px;
}

.tb-footer-section ul li {
    margin: 0 0 15px;
}

.tb-footer-section ul li a {
    display: flex;
    align-items: center;
    font: 400 13px/15px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    color: #cccccc;
    text-transform: capitalize;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section ul li:last-child,
.tb-footer-section .tb-footer-detail:last-child {
    margin: 0;
}

.tb-footer-section ul li a i {
    font-size: 18px;
    color: #ffffff;
    margin: 0 10px 0 0;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section ul li a:hover,
.tb-footer-section ul li a:focus,
.tb-footer-section ul li a:active {
    color: #f37d6c;
}

.tb-footer-section ul li a:hover i,
.tb-footer-section ul li a:focus i,
.tb-footer-section ul li a:active i {
    color: #f37d6c;
}

.tb-footer-section .tb-footer-detail {
    display: flex;
    justify-content: start;
    align-items: start;
    margin: 0 0 15px;
}

.tb-footer-section .tb-footer-detail i {
    font-size: 30px;
    line-height: 32px;
}

.tb-footer-section .tb-footer-detail .tb-footer-detail-content {
    margin: 0 0 0 15px;
    display: inline;
}

.tb-footer-section .tb-footer-detail .tb-footer-detail-content .tb-footer-detail-title {
    font: 700 18px/20px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

.tb-footer-section .tb-footer-detail .tb-footer-detail-content p,
.tb-footer-section .tb-footer-detail .tb-footer-detail-content a {
    font: 400 13px/25px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    width: 100%;
    color: #cccccc;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section .tb-footer-detail .tb-footer-detail-content p {
    padding: 0 5px 0 0;
}

.tb-footer-section .tb-footer-detail .tb-footer-detail-content a:hover,
.tb-footer-section .tb-footer-detail .tb-footer-detail-content a:focus,
.tb-footer-section .tb-footer-detail .tb-footer-detail-content a:active {
    color: #f37d6c;
}

.tb-footer-section .tb-footer-detail p {
    margin: 5px 0 0;
}

.tb-footer-section .tb-footer-img-section {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

.tb-footer-section .tb-footer-img-section:last-child {
    margin: 15px 0 0 0 !important;
}

.tb-footer-section .tb-footer-img {
    position: relative;
    overflow: hidden;
}

.tb-footer-section .tb-footer-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section .tb-footer-img:hover::before,
.tb-footer-section .tb-footer-img:focus::before,
.tb-footer-section .tb-footer-img:active::before {
    background: rgba(0, 0, 0, 0.5);
}

.tb-footer-section .tb-footer-img .tb-instagram-icon {
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    margin: auto;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section .tb-footer-img .tb-instagram-icon i {
    font-size: 20px;
    line-height: 22px;
}

.tb-footer-section .tb-footer-img:hover .tb-instagram-icon,
.tb-footer-section .tb-footer-img:focus .tb-instagram-icon,
.tb-footer-section .tb-footer-img:active .tb-instagram-icon {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tb-footer-section .tb-footer-bottom-section {
    padding: 17px 0;
    border-top: 1px solid #232323;
}

.tb-footer-section .tb-footer-bottom-section .tb-copy-right-text {
    font-size: 14px;
    line-height: 16px;
}

.tb-footer-section .tb-footer-bottom-section .tb-copy-right-text a {
    font: 600 14px/16px 'Arimo', Helvetica, sans-serif;
    color: #ffffff;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section .tb-footer-bottom-section .tb-copy-right-text a:hover,
.tb-footer-section .tb-footer-bottom-section .tb-copy-right-text a:focus,
.tb-footer-section .tb-footer-bottom-section .tb-copy-right-text a:active {
    color: #f37d6c;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: end;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a {
    margin: 0 20px 0 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: end;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a i {
    font-size: 20px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:hover .icofont-facebook,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:focus .icofont-facebook,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:active .icofont-facebook {
    color: #3d81ff;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:hover .icofont-twitter,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:focus .icofont-twitter,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:active .icofont-twitter {
    color: #1da1f2;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:hover .icofont-skype,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:focus .icofont-skype,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:active .icofont-skype {
    color: #00aff0;
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:hover .icofont-instagram,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:focus .icofont-instagram,
.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:active .icofont-instagram {
    color: #d62976;
}

.tb-footer-section .tb-footer-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.tb-footer-section .tb-footer-section-title:after {
    content: '\efc2';
    font-family: IcoFont;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    display: none;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
}

.tb-footer-section .tb-footer-toggle-menu.active .tb-footer-section-title:after {
    content: '\ef9a';
}

.tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon a:last-child {
    margin: 0;
}


/*  =============== MEDIA QUERY  =============== */
@media (max-width: 1799px) {

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        height: 323px;
    }
}


@media (max-width: 1699px) {

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 8%;
        height: 295px;
        width: 41%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-semititle {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 70px;
        line-height: 72px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 30px 0 0;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-content .tb-about-text-box {
        margin: 0 0 0 50px;
    }

    .tb-about-section .tb-about-content .tb-about-text-box::before {
        right: -40px;
        width: 260px;
        height: 320px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 {
        margin: 0 125px 0 0;
    }

    /* FOOTER SECTION */
    .tb-footer-section .tb-footer-content-detail {
        padding: 0;
    }
}


@media (max-width: 1599px) {

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 8%;
        width: 44%;
        height: 295px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 37px 0 0;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-content .tb-about-text-box::before {
        right: 10px;
        width: 245px;
        height: 310px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 {
        margin: 0 114px 0 0;
    }
}


@media (max-width: 1499px) {

    /* COMMON CSS */
    #tb-footer .tb-section-padding {
        padding: 60px 0 0;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        height: 273px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-semititle {
        font-size: 35px;
        line-height: 37px;
        margin: 0 0 10px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 68px;
        line-height: 70px;
        margin: 0 0 10px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        font-size: 16px;
        line-height: 25px;
        padding: 0 108px 0 0;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg {
        background: #bec5c7;
        margin: 0 0 100px; /*0 0 289px;*/
        padding: 60px 0; /*60px 0 5px;*/
        transition: all 400ms ease-in-out;
        -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
        -ms-transition: all 400ms ease-in-out;
        -o-transition: all 400ms ease-in-out;
    }

    .tb-about-section .tb-about-content .tb-about-text-box {
        margin: 0 0 0 30px;
    }

    .tb-about-section .tb-about-content .tb-about-text-box::before {
        right: 25px;
        width: 220px;
        height: 285px;
    }

    .tb-about-section .tb-about-bg-2:after {
        height: 380px;
    }

    .tb-about-section .tb-about-content .tb-about-card {
        padding: 30px 50px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 {
        margin: 0 15px 0 0;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
        font-size: 45px;
        line-height: 47px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title {
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
        margin: 0 0 10px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-semititle {
        font-size: 30px;
        line-height: 32px;
        margin: 0 0 15px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-detail {
        font-size: 16px;
        line-height: 28px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-common-btn,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-common-btn {
        font-size: 16px;
        line-height: 18px;
        padding: 14px 30px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-common-btn {
        padding: 14px 38px;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section {
        margin: 0 0 262px !important;
    }

    .tb-gallery-section .tb-gallery-section-detail {
        margin: 0 0 35px;
    }

    .tb-gallery-section .tb-gallery-img-section .item {
        margin: 0 11px;
    }

    .tb-gallery-section .owl-carousel .item .tb-gallery-img:first-child {
        margin: 0 0 16px;
    }

    .tb-gallery-section .tb-gallery-section-btn .tb-common-btn {
        padding: 14px 35px;
    }

    /* BANNER SECTION */
    .tb-banner-section {
        margin: -262px 0 80px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        width: 50%;
        top: 25px;
        left: 25px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-title {
        font-size: 42px;
        line-height: 44px;
        margin: 0 0 10px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        font-size: 16px;
        line-height: 25px;
        padding: 0 23px 0 0;
    }

    .tb-banner-section .tb-banner-card .tb-common-btn {
        font-size: 16px;
        line-height: 18px;
        padding: 12px 32px;
    }


    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 22px;
        line-height: 24px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
        font-size: 14px;
        line-height: 25px;
        margin: 0 0 15px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        font-size: 18px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card:after {
        width: 100px;
        height: 85px;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        padding: 40px;
        margin: 0 0 -224px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i {
        font-size: 35px;
    }

    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 36px;
        line-height: 38px;
    }

    /* FOOTER SECTION */
    .tb-footer-section .tb-footer-img-section {
        gap: 10px;
    }

    .tb-footer-section .tb-footer-img-section:last-child {
        margin: 10px 0 0 0 !important;
    }
}


@media (max-width: 1399px) {

    /* COMMON CSS */
    .tb-section-title {
        font-size: 54px;
        line-height: 56px;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 9%;
        height: 273px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 59px 0 0;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg {
        padding: 60px 0 55px;
        margin: 0 0 239px;
    }

    /* SERVICES SECTION */
    /* .tb-services-section .tb-services-card .tb-services-icon {
        margin: 0 0 15px;
    } */

    .tb-services-section .tb-services-card .tb-services-card-title {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 10px;
    }

    .tb-services-section .tb-services-card .tb-services-card-detail {
        font-size: 14px;
        line-height: 25px;
    }

    /* BANNER SECTION */
    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        width: 53%;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-title {
        width: 100%;
    }
}


@media (max-width: 1299px) {

    /* COMMON CSS */
    #tb-about {
        margin: -80px 0 0;
    }

    #tb-gallery,
    #tb-blog,
    #tb-footer {
        margin: -160px 0 0;
        padding: 80px 0 0;
    }

    .tb-section-padding {
        padding: 80px 0 0;
    }

    .tb-section-title {
        font-size: 50px;
        line-height: 52px;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 9%;
        width: 43%;
        height: 260px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-semititle {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 60px;
        line-height: 62px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0;
    }

    /* SERVICES SECTION */
    .tb-services-section {
        margin: 0 0 80px;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg {
        padding: 60px 0 65px;
        margin: 0 0 139px;
    }

    .tb-about-section .tb-about-bg-2 {
        margin: 0 0 80px;
    }

    .tb-about-section .tb-about-content .tb-about-text-box {
        margin: 0 0 0 20px;
    }

    .tb-about-section .tb-about-content .tb-about-text-box::before {
        right: 0px;
        width: 211px;
        height: 275px;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section {
        margin: 0 0 242px !important;
    }

    .tb-gallery-section .tb-gallery-section-detail {
        padding: 0 160px;
    }

    /* BANNER SECTION */
    .tb-banner-section {
        margin: -262px 0 60px;
    }

    /* TESTIMONIAL SECTION */
    .tb-testimonial-section {
        margin: 0 0 80px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-img {
        width: 80px;
        height: 80px;
    }

    /* NEWS SECTION */
    .tb-news-section {
        margin: 0 0 80px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 21px;
        line-height: 23px;
    }

    /* BRAND LOGO SECTION */
    .tb-brand-logo-section {
        margin: 0 0 80px;
    }

    .tb-brand-logo-section .owl-nav .owl-prev,
    .tb-brand-logo-section .owl-nav .owl-next {
        width: 35px !important;
        height: 35px !important;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        margin: 0 0 -190px;
        padding: 30px 35px;
    }

    /* FOOTER SECTION */
    .tb-footer-section {
        padding: 129px 0 0;
    }
}


@media (max-width: 1199px) {

    /* COMMON CSS */
    #tb-about {
        margin: -100px 0 0;
        padding: 40px 0 0;
    }

    #tb-about .tb-section-padding {
        padding: 60px 0 0;
    }

    #tb-gallery,
    #tb-blog,
    #tb-footer {
        margin: -120px 0 0;
        padding: 60px 0 0;
    }

    #tb-footer .tb-section-padding {
        padding: 50px 0 0;
    }

    .tb-section-title {
        margin: 0 0 20px;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 11%;
        width: 39%;
        height: 224px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 46px;
        line-height: 48px;
        margin: 0 0 10px;
        padding: 0;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        font-size: 14px;
        line-height: 20px;
    }

    .tb-slider-section .tb-slider-content .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
        padding: 14px 30px;
    }

    /* SERVICES SECTION */
    .tb-services-section {
        margin: 0 0 60px;
    }

    .tb-services-section .tb-services-col {
        padding: 0 10px;
    }

    .tb-services-section .tb-services-card.tb-card1,
    .tb-services-section .tb-services-card.tb-card2 {
        margin: 0 0 20px;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg {
        padding: 40px 0;
        margin: 0 0 123px;
    }

    .tb-about-section .tb-about-bg-2 {
        margin: 0 0 60px;
    }

    .tb-about-section .tb-about-bg-2:after {
        height: 320px;
    }

    .tb-about-section .tb-about-content .tb-about-card {
        padding: 20px 30px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2,
    .tb-about-section .tb-about-content .tb-about-img-2 {
        margin: 0;
    }

    .tb-about-section .tb-about-content .tb-about-text-box {
        margin: 0 0 0 40px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
        font-size: 38px;
        line-height: 40px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title {
        margin: 0 0 15px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-semititle {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 15px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 15px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail.tb-last-paragraph {
        margin: 0 0 20px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-common-btn,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
        padding: 12px 25px;
    }

    .about-section .tb-about-content .tb-about-card-2 .tb-common-btn {
        padding: 12px 32px;
    }

    .tb-about-section .tb-about-content .tb-about-text-box {
        margin: 0 0 0 20px;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section {
        margin: 0 0 192px !important;
    }

    .tb-gallery-section .tb-gallery-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 40px;
    }

    .tb-gallery-section .tb-gallery-section-btn .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
        padding: 12px 29px;
    }

    /* BANNER SECTION */
    .tb-banner-section {
        margin: -232px 0 40px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        top: 20px;
        left: 20px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-title {
        font-size: 38px;
        line-height: 40px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        font-size: 14px;
        line-height: 22px;
        padding: 0 23px 0 0;
    }

    .tb-banner-section .tb-banner-card .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
        padding: 12px 24px;
    }

    /* TESTIMONIAL SECTION */
    .tb-testimonial-section {
        margin: 60px 0;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review {
        font-size: 14px;
        line-height: 24px;
    }

    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section {
        margin: 0 0 60px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 12px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
        font-size: 12px;
        line-height: 14px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
        font-size: 12px;
        line-height: 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        font-size: 16px;
        margin: 0 0 0 3px;
    }

    .tb-news-section .tb-news-card-section .owl-nav {
        margin: 20px 0 0;
    }

    .tb-news-section .tb-news-card-section .tb-news-card:after {
        width: 80px;
        height: 65px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev,
    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        width: 35px !important;
        height: 35px !important;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev::before,
    .tb-news-section .tb-news-card-section .owl-nav .owl-next::before {
        font-size: 16px;
    }

    /* BRAND LOGO SECTION */
    .tb-brand-logo-section {
        margin: 0 0 60px;
    }

    .tb-brand-logo-section .tb-brand-logo-img-section .tb-brand-logo-img {
        display: flex;
        justify-content: center;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        margin: 0 0 -165px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i {
        font-size: 32px;
        margin: 0 10px 0 0;
    }

    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 28px;
        line-height: 30px;
    }

    /* FOOTER SECTION */
    .tb-footer-section {
        padding: 114px 0 0;
    }

}


@media (min-width:992px) {
    .tb-footer-section-body {
        display: inline-block !important;
    }
}


@media (max-width: 991px) {

    /* COMMON CSS */
    .tb-about-section br,
    .tb-gallery-section br,
    .tb-footer-section br {
        display: none;
    }

    #tb-services {
        margin: -40px 0 0;
        padding: 40px 0 0;
    }

    #tb-about {
        margin: 0;
        padding: 0;
    }

    #tb-about .tb-section-padding {
        padding: 0;
    }

    #tb-gallery,
    #tb-blog,
    #tb-footer {
        margin: -40px 0 0;
        padding: 0 0 0;
    }

    .tb-section-padding {
        padding: 40px 0 0;
    }

    .tb-section-title {
        font-size: 40px;
        line-height: 42px;
        padding: 0 0 15px;
    }

    /* NAVBAR SECTION */
    header {
        position: static;
        background: #ffffff;
        box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.16);
    }

    header nav {
        padding: 15px 30px !important;
        background: transparent;
        box-shadow: none;
        height: 85px;
        border-radius: none;
        -webkit-border-radius: none;
        -moz-border-radius: none;
        -ms-border-radius: none;
        -o-border-radius: none;
    }

    header nav .navbar-brand {
        max-width: 100%;
        width: 176px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
    }

    .navbar-expand-lg .navbar-collapse {
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        z-index: 2;
        background: #fff;
    }

    header nav .navbar-toggler {
        position: absolute;
        left: 0;
        border: none;
    }

    header nav .navbar-toggler i {
        font-size: 28px;
        line-height: 30px;
    }

    header .navbar-nav {
        padding: 20px;
        border-top: 1px solid #d9d9d9;
    }

    header nav ul {
        width: 100%;
    }

    header nav ul li {
        margin: 0 0 5px;
    }

    header nav ul li a {
        margin: 0;
    }

    /* SLIDER SECTION */
    .tb-slider-section {
        margin: 0 0 40px;
    }

    .tb-slider-section .tb-slider-content {
        height: 240px;
        width: 42%;
        left: 10%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 42px;
        line-height: 44px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 72px 0 0;
    }

    .tb-slider-section .carousel-control-prev {
        left: -100px;
    }

    .tb-slider-section .carousel-control-next {
        right: -100px;
    }

    .tb-slider-section:hover .carousel-control-prev,
    .tb-slider-section:focus .carousel-control-prev,
    .tb-slider-section:active .carousel-control-prev {
        left: 20px;
    }

    .tb-slider-section:hover .carousel-control-next,
    .tb-slider-section:focus .carousel-control-next,
    .tb-slider-section:active .carousel-control-next {
        right: 20px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .tb-slider-section .carousel-control-prev i,
    .tb-slider-section .carousel-control-next i {
        font-size: 16px;
    }

    /* SEVICES SECTION */
    .tb-services-section {
        margin: 0 0 40px;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg {
        padding: 30px 0;
        margin: 0 0 60px;
    }

    .tb-about-section .tb-about-bg-2 {
        margin: 0 0 40px;
    }

    .tb-about-section .tb-about-bg-2::after {
        height: 240px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title {
        margin: 0 0 10px;
    }

    .tb-about-section .tb-about-content .tb-about-card {
        padding: 15px 20px;
        margin: 0;
    }

    .tb-about-content .tb-about-card-2 .tb-about-card-title {
        font-size: 34px;
        line-height: 36px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-semititle {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-detail {
        margin: 0 0 10px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-detail.tb-last-paragraph {
        margin: 0 0 10px;
    }

    .tb-about-section .tb-about-content .tb-about-img,
    .tb-about-section .tb-about-content .tb-about-img-2 {
        border: 7px solid #ffffff;
    }

    .tb-about-section .tb-about-content .tb-about-text-box,
    .tb-about-section .tb-about-content .tb-about-img-2 {
        margin: 0;
    }

    .tb-about-section .tb-about-content .tb-about-text-box::before {
        right: -50px;
        width: 120px;
        height: 155px;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section {
        margin: 0 0 240px !important;
    }

    .tb-gallery-section .tb-section-title {
        margin: 0 0 15px !important;
    }

    .tb-gallery-section .tb-gallery-section-detail {
        padding: 0 50px;
        margin: 0 0 30px;
    }

    /* BANNER SECTION */
    .tb-banner-section {
        margin: -300px 0 20px;
        text-align: center;
    }

    .tb-banner-section .tb-banner-card {
        margin: 0 0 20px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        top: 30px;
        left: 30px;
        width: 45%;
        text-align: start;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        font-size: 16px;
        line-height: 25px;
    }

    .tb-banner-section .tb-banner-card .tb-common-btn {
        padding: 14px 30px;
    }

    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section {
        margin: 0 0 40px;
    }

    .tb-news-section .tb-news-card-section .item {
        margin: 0;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        width: 50%;
        padding: 25px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 10px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 26px;
        line-height: 28px;
        margin: 0 0 10px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
        font-size: 15px;
        line-height: 26px;
        margin: 0 0 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        margin: 0 0 0 5px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        background-image: url('../images/news-card-bg-img.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 120px;
        height: 105px;
        z-index: 0;
    }

    /* TESTIMONIAL SECTION */
    .tb-testimonial-section {
        padding: 100px 0 20px;
        margin: 40px 0;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-name {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-states {
        font-size: 12px;
        line-height: 14px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review-star {
        font-size: 16px;
        margin: 5px 0 15px;
    }

    .tb-testimonial-section .owl-carousel .owl-dots {
        margin: 10px 0;
    }

    /* BRAND LOGO SECTION */
    .tb-brand-logo-section {
        margin: 0 0 40px;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        padding: 20px 30px;
        margin: 0 0 -120px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }

    .tb-email-section .tb-email-bg .tb-email-content {
        justify-content: center !important;
        margin: 0 0 20px;
    }

    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 30px;
        line-height: 32px;
    }

    /* FOOTER SECTION */
    .tb-footer-section {
        padding: 109px 0 0;
    }

    .tb-footer-section .tb-footer-col {
        padding: 0;
    }

    .tb-footer-section .tb-footer-logo {
        justify-content: center;
        display: flex;
    }

    .tb-footer-section .tb-footer-content {
        margin: 0 0 40px 0;
    }

    .tb-footer-section .tb-footer-content-detail {
        font-size: 13px;
        line-height: 23px;
        text-align: center;
        margin: 0 0 20px;
    }

    .tb-footer-section .tb-footer-img-section {
        gap: 15px;
    }

    .tb-footer-section .tb-footer-img-section:last-child {
        margin: 15px 0 0 0 !important;
    }

    .tb-footer-section .tb-footer-bottom-section .tb-copy-right-text {
        text-align: center;
        margin: 0 0 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .tb-footer-section .tb-footer-bottom-section .tb-footer-social-icon {
        justify-content: center;
    }

    .tb-footer-section .tb-footer-section-body {
        display: none;
    }

    .tb-footer-section .tb-footer-section-title {
        margin: 0;
        cursor: pointer;
        padding: 12px 15px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        transition: all 400ms ease-in-out;
        -webkit-transition: all 400ms ease-in-out;
        -moz-transition: all 400ms ease-in-out;
        -ms-transition: all 400ms ease-in-out;
        -o-transition: all 400ms ease-in-out;
    }

    .tb-footer-section .tb-footer-section-title:hover,
    .tb-footer-section .tb-footer-section-title:focus,
    .tb-footer-section .tb-footer-section-title:active {
        background: #313131;
    }

    .tb-footer-section .tb-footer-section-title:after {
        display: flex;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        margin: 0;
        user-select: none;
    }

    .tb-footer-section .tb-footer-section-body {
        padding: 10px 20px;
        margin: 0 0 10px;
    }
}


@media (max-width: 825px) {

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        width: 46%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 87px 0 0;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-content .tb-about-text-box::before {
        display: none;
    }
}


@media (max-width: 767px) {

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        height: 124px;
        left: 12%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-semititle {
        font-size: 24px;
        line-height: 26px;
        margin: 0 0 5px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 35px;
        line-height: 37px;
        margin: 0 0 15px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        display: none;
    }

    .tb-slider-section .tb-slider-content .tb-common-btn {
        padding: 12px 25px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section:hover .carousel-control-prev,
    .tb-slider-section:focus .carousel-control-prev,
    .tb-slider-section:active .carousel-control-prev {
        left: 30px;
    }

    .tb-slider-section .carousel-control-next,
    .tb-slider-section:hover .carousel-control-next,
    .tb-slider-section:focus .carousel-control-next,
    .tb-slider-section:active .carousel-control-next {
        right: 30px;
    }

    /* SERVICES SECTION */
    .tb-services-section .tb-services-card .tb-services-card-title {
        font-size: 24px;
        line-height: 26px;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg,
    .tb-about-section .tb-about-bg-2 {
        text-align: center;
    }

    .tb-about-section .tb-about-bg {
        margin: 0 0 70px;
    }

    .tb-about-section .tb-about-bg-2::after {
        height: 65%;
        width: 100%;
        margin: -30px 0 0;
    }

    .tb-about-section .tb-about-content .tb-about-img,
    .tb-about-section .tb-about-content .tb-about-img-2 {
        width: auto;
        margin: 0 auto;
    }

    .tb-about-section .tb-about-content .tb-about-img,
    .tb-about-section .tb-about-content .tb-about-img-2 {
        margin: 0 0 20px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
        font-size: 36px;
        line-height: 38px;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title::after {
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section .tb-gallery-section-detail {
        padding: 0 20px;
        margin: 0 0 20px;
    }

    .tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img::before {
        background: rgba(0, 0, 0, 0.5);
    }

    .tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img .tb-gallery-search-icon {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* BANNER SECTION */
    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        top: 20px;
        left: 20px;
        width: 52%;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        font-size: 16px;
        line-height: 25px;
    }

    .tb-banner-section .tb-banner-card .tb-common-btn {
        padding: 12px 25px;
    }

    /* TESTIMONIAL SECTION */
    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        margin: 0;
    }

    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 14px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
        font-size: 13px;
        line-height: 14px;
        margin: 0 0 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 20px;
        line-height: 22px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 15px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        font-size: 14px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card:after {
        width: 100px;
        height: 85px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img::before {
        background: rgba(0, 0, 0, 0.5);
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img .tb-news-search-icon {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .tb-news-section .tb-news-card-section .owl-nav {
        margin: 15px 0 0;
    }

    /* BRAND LOGO SECTION */
    .tb-brand-logo-section .owl-nav .owl-prev {
        left: 0;
    }

    .tb-brand-logo-section .owl-nav .owl-next {
        right: 0;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        padding: 20px;
    }

    /* FOOTER SECTION */
    .tb-footer-section .tb-footer-section-title {
        padding: 12px;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        font-size: 20px;
        line-height: 22px;
    }

    .tb-footer-section .tb-footer-img::before {
        background: rgba(0, 0, 0, 0.5);
    }

    .tb-footer-section .tb-footer-img .tb-instagram-icon {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .tb-footer-section .tb-footer-content {
        margin: 0 0 40px 0;
    }

}


@media (max-width: 676px) {

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        height: 121px;
        width: 48%;
        left: 13%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 33px;
        line-height: 35px;
    }
}


@media (max-width: 575px) {

    .tb-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    /* NAVBAR SECTION */
    header nav .navbar-brand {
        width: 125px;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        height: 121px;
        width: 48%;
        left: 13%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-semititle {
        font-size: 20px;
        line-height: 22px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 30px;
        line-height: 32px;
        margin: 0 0 10px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section:hover .carousel-control-prev,
    .tb-slider-section:focus .carousel-control-prev,
    .tb-slider-section:active .carousel-control-prev {
        left: 10px;
    }

    .tb-slider-section .carousel-control-next,
    .tb-slider-section:hover .carousel-control-next,
    .tb-slider-section:focus .carousel-control-next,
    .tb-slider-section:active .carousel-control-next {
        right: 10px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    /* SERVICES SECTION */
    .tb-services-section {
        text-align: center;
    }

    .tb-services-section .tb-services-card.tb-card1,
    .tb-services-section .tb-services-card.tb-card2,
    .tb-services-section .tb-services-card.tb-card3 {
        margin: 0 0 20px;
    }

    .tb-services-section .tb-services-card.tb-card4 {
        margin: 0;
    }

    /* .tb-services-section .tb-services-card .tb-services-icon {
        margin: 0 auto 10px;
        left: -20px;
    } */

    /* ABOUT SECTION */
    .tb-about-section .about-bg-2::after {
        height: 60%;
    }

    .tb-about-section .tb-about-content .tb-about-card .tb-about-card-title,
    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-title {
        font-size: 32px;
        line-height: 34px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-semititle {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 10px;
    }

    .tb-about-section .tb-about-content .tb-about-card-2 .tb-about-card-detail {
        margin: 0 0 10px;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section .tb-gallery-section-detail {
        padding: 0;
    }


    /* BANNER SECTION */
    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        top: 15px;
        left: 15px;
        width: 50%;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-title {
        font-size: 36px;
        line-height: 38px;
        margin: 0 0 8px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        font-size: 14px;
        line-height: 22px;
        margin: 0 0 12px;
        padding: 0;
    }

    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 10px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
        margin: 0 0 15px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        margin: 0 0 0 3px;
    }

    .tb-news-section .tb-news-card-section .owl-nav {
        margin: 10px 0 0;
    }

    .tb-news-section .tb-news-card-section .tb-news-card:after {
        width: 80px;
        height: 65px;
    }

    /* TESTIMONIAL SECTION */
    .tb-testimonial-section {
        padding: 100px 0 10px;
    }

    .tb-testimonial-section .tb-testimonial-card-section {
        margin: 10px 0;
    }

    .tb-testimonial-section .owl-carousel .owl-dots {
        margin: 10px 0 0;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg .tb-email-content i {
        font-size: 30px;
    }

    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 26px;
        line-height: 28px;
    }

    /* FOOTER SECTION */
    .tb-footer-section .tb-footer-img-section {
        gap: 10px;
    }

    .tb-footer-section .tb-footer-img-section:last-child {
        margin: 10px 0 0 0 !important;
    }

    .tb-footer-section .tb-footer-section-body {
        padding: 10px;
    }
}


@media (max-width: 480px) {

    /* COMMON CSS */
    #tb-gallery,
    #tb-blog,
    #tb-footer {
        margin: -20px 0 0;
        padding: 0 0 0;
    }

    .tb-section-padding {
        padding: 20px 0 0;
    }

    .tb-services-section .tb-services-card,
    .tb-about-section .tb-about-content {
        text-align: center;
    }

    .tb-section-title {
        font-size: 30px;
        line-height: 32px;
        margin: 0 0 10px;
    }

    /* BACK TO TOP */
    #return-to-top {
        bottom: 20px;
        right: 25px;
        width: 40px;
        height: 40px;
    }

    #return-to-top i {
        font-size: 14px;
        line-height: 36px;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 13%;
        width: 50%;
        height: 137px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 10px;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg {
        padding: 20px 0;
    }

    .tb-about-section .tb-about-bg,
    .tb-about-section .tb-about-bg-2 {
        margin: 0 0 40px;
    }

    .tb-about-section .tb-about-bg-2::after {
        margin: -20px 0 0;
        height: 50%;
    }

    .tb-about-section .tb-about-content .tb-about-img-2 {
        margin: 0 0 20px 0;
    }

    /* OUR GALLERY SECTION */
    .tb-gallery-section .tb-gallery-section-detail {
        margin: 0 0 20px;
    }

    .tb-gallery-section .owl-carousel .item .tb-gallery-img:first-child {
        margin: 0 0 10px;
    }

    .tb-gallery-section .tb-gallery-img-section .item {
        margin: 0 15px;
    }

    .tb-gallery-section .owl-nav .owl-prev.disabled,
    .tb-gallery-section .owl-nav .owl-next.disabled {
        display: flex !important;
        background: #000000 !important;
    }

    /* BANNER SECTION */
    .tb-banner-section {
        margin: -300px 0 0px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-title {
        font-size: 32px;
        line-height: 34px;
        margin: 0 0 15px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        display: none;
    }

    /* TESTIMONIAL SECTION */
    .tb-testimonial-section {
        margin: 80px 0 20px;
    }

    .tb-testimonial-section .tb-section-title {
        margin: 0 0 15px;
    }

    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section {
        margin: 0 0 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card {
        display: block;
        text-align: center;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-img,
    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        width: 100%;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 25px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 22px;
        line-height: 24px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
        font-size: 14px;
        line-height: 25px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn {
        margin: 0 auto;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        margin: 0 0 0 5px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card::after {
        width: 100px;
        height: 85px;
    }

    .tb-news-section .tb-news-card-section .owl-nav {
        margin: 10px 0 0;
    }

    /* BRAND LOGO SECTION */
    .tb-brand-logo-section {
        margin: 0 0 20px;
        padding: 10px 0;
    }

    .tb-brand-logo-section .owl-carousel {
        padding: 0 0 40px;
    }

    .tb-brand-logo-section .owl-nav .owl-prev,
    .tb-brand-logo-section .owl-nav .owl-next {
        top: auto;
        bottom: 0;
        justify-content: center;
        align-items: end;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .tb-brand-logo-section .owl-nav .owl-prev,
    .tb-brand-logo-section .tb-brand-logo-img-section:hover .owl-nav .owl-prev,
    .tb-brand-logo-section .tb-brand-logo-img-section:focus .owl-nav .owl-prev,
    .tb-brand-logo-section .tb-brand-logo-img-section:active .owl-nav .owl-prev {
        left: -50px;
    }

    .tb-brand-logo-section .owl-nav .owl-next,
    .tb-brand-logo-section .tb-brand-logo-img-section:hover .owl-nav .owl-next,
    .tb-brand-logo-section .tb-brand-logo-img-section:focus .owl-nav .owl-next,
    .tb-brand-logo-section .tb-brand-logo-img-section:active .owl-nav .owl-next {
        right: -50px;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        margin: 0 0 -105px;
        padding: 15px;
    }

    .tb-email-section .tb-email-bg .tb-email-content {
        margin: 0 0 15px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i {
        font-size: 22px;
    }

    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 20px;
        line-height: 22px;
    }

    .tb-email-section .tb-email-bg .tb-input-box input {
        padding: 10px 54px 10px 20px;
        height: 40px;
    }

    .tb-email-section .tb-email-bg .tb-input-box input::placeholder,
    .tb-email-section .tb-email-bg .tb-input-box input {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-email-section .tb-email-bg .tb-input-box .tb-common-btn {
        padding: 0 13px;
        width: 40px;
    }

    .tb-email-section .tb-email-bg .tb-input-box .tb-common-btn span {
        display: none !important;
    }

    .tb-email-section .tb-email-bg .tb-input-box .tb-common-btn i {
        display: flex;
    }

    /* FOOTER SECTION */
    .tb-footer-section {
        padding: 75px 0 0;
    }

    .tb-footer-section .tb-footer-content {
        margin: 0 0 20px 0;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-footer-section .tb-footer-detail {
        margin: 0 0 15px;
    }
}


@media (max-width: 360px) {

    /* COMMON CSS */
    .tb-section-title {
        font-size: 25px;
        line-height: 27px;
    }

    /* SLIDER SECTION */
    .tb-slider-section .tb-slider-content {
        left: 15%;
        width: 50%;
        height: 122px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 25px;
        line-height: 27px;
        margin: 0 0 5px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-semititle {
        font-size: 16px;
        line-height: 18px;
    }

    /* ABOUT SECTION */
    .tb-about-section .tb-about-bg-2::after {
        height: 40%;
    }

    .tb-about-section .tb-about-content .tb-about-card {
        padding: 10px;
    }

    /* BANNER SECTION */
    .tb-banner-section .tb-banner-card {
        margin: 0 0 10px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-content {
        top: 10px;
        left: 10px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-title {
        font-size: 24px;
        line-height: 26px;
        margin: 0 0 15px;
    }

    .tb-banner-section .tb-banner-card .tb-banner-card-detail {
        font-size: 12px;
        line-height: 20px;
    }

    .tb-banner-section .tb-banner-card .tb-common-btn {
        font-size: 12px;
        line-height: 14px;
    }

    /* OUR NEWS & ARTICLES SECTION */
    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 20px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
        margin: 0 0 10px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 20px;
        line-height: 22px;
        margin: 0 0 5px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-detail {
        font-size: 12px;
        line-height: 20px;
        margin: 0 0 8px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-common-btn i {
        margin: 0 0 0 3px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card::after {
        width: 60px;
        height: 45px;
    }

    /* EMAIL SECTION */
    .tb-email-section .tb-email-bg {
        margin: 0 0 -100px;
    }

    .tb-email-section .tb-email-bg .tb-email-content {
        margin: 0 0 10px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i {
        font-size: 18px;
    }

    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 18px;
        line-height: 20px;
    }

    /* FOOTER SECTION */
    .tb-footer-section {
        padding: 70px 0 0;
    }

    .tb-footer-section .tb-footer-img-section {
        gap: 10px;
    }

    .tb-footer-section .tb-footer-img-section:last-child {
        margin: 10px 0 0 0 !important;
    }
}






/* ? ============================== SERVICES PAGE ============================== */
/* =============== BREAD CRUMB SECTION =============== */
.tb-bread-crumb-section {
    position: relative;
    overflow-x: hidden;
    margin: 0 0 100px;
}

.tb-bread-crumb-section .tb-bread-crumb-content {
    position: absolute;
    top: 20%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    height: 89px;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 5px;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link {
    font: 400 18px/20px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    background: transparent;
    border: none;
    color: #f37d6c;
    text-transform: capitalize;
    padding: 0;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a {
    color: #111111;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link {
    color: #111111;
    text-transform: capitalize;
    position: relative;
    padding: 0 10px 0 0;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link:hover,
.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link:focus,
.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link:active {
    color: #f37d6c;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link::before {
    content: "/";
    position: absolute;
    right: 0;
    left: auto;
    font-size: 18px;
    color: #111111;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link {
    display: inline-block;
}


@media (max-width: 1699px) {

    .tb-bread-crumb-section .tb-bread-crumb-content {
        top: 25%;
    }

}


@media (max-width: 1499px) {

    .tb-bread-crumb-section .tb-bread-crumb-content {
        top: 30%;
        height: 84px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
        font-size: 55px;
        line-height: 57px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link {
        font-size: 16px;
        line-height: 18px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link::before {
        font-size: 16px;
    }

}


@media (max-width: 1399px) {

    .tb-bread-crumb-section .tb-bread-crumb-content {
        top: 35%;
    }

}


@media (max-width: 1299px) {

    .tb-bread-crumb-section {
        margin: 0 0 80px;
    }

}


@media (max-width: 1199px) {

    .tb-bread-crumb-section {
        margin: 0 0 60px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content {
        top: 45%;
        height: 74px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
        font-size: 45px;
        line-height: 47px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link::before {
        font-size: 14px;
    }

}


@media (max-width: 991px) {

    .tb-bread-crumb-section {
        margin: 0 0 40px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content {
        top: 0;
        height: 69px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
        font-size: 40px;
        line-height: 42px;
    }

}


@media (max-width: 575px) {

    .tb-bread-crumb-section .tb-bread-crumb-content {
        height: 64px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link {
        font-size: 13px;
        line-height: 15px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link::before {
        font-size: 13px;
    }

}


@media (max-width: 480px) {

    .tb-bread-crumb-section .tb-bread-crumb-content {
        height: 54px;
    }

    .tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
        font-size: 30px;
        line-height: 32px;
        margin: 0;
    }

}


@media (max-width: 360px) {

    .tb-bread-crumb-section .tb-bread-crumb-content {
        height: 54px;
    }

}


/* =============== STANDERD SERVICES SECTION =============== */
.tb-standerd-services-section {
    margin: 0 0 100px;
}

.tb-standerd-services-section .tb-standerd-services-section-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.tb-standerd-services-section .tb-standerd-services-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-standerd-services-section .tb-standerd-services-section-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 0 270px;
    margin: 0 0 70px;
}

.tb-standerd-services-section .tb-standerd-services-section-content,
.tb-standerd-services-section .tb-standerd-services-section-content2 {
    position: relative;
}

.tb-standerd-services-section .tb-standerd-services-section-content {
    margin: 0 0 100px;
}

.tb-standerd-services-section .tb-standerd-services-section-content::after,
.tb-standerd-services-section .tb-standerd-services-section-content2::after {
    content: '';
    position: absolute;
    top: 0;
    margin: auto;
    width: 38%;
    height: 100%;
    background: #bec5c7;
    z-index: -1;
}

.tb-standerd-services-section .tb-standerd-services-section-content::after {
    left: 0;
    right: auto;
}

.tb-standerd-services-section .tb-standerd-services-section-content2::after {
    left: auto;
    right: 0;
}

.tb-standerd-services-section .tb-standerd-services-section-content::before,
.tb-standerd-services-section .tb-standerd-services-section-content2::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-repeat: no-repeat;
    background-size: contain;
}

.tb-standerd-services-section .tb-standerd-services-section-content::before {
    left: 0;
    right: auto;
/*    background-image: url('../images/standerd-services-section1-bg-img.png');*/
    width: 315px;
    height: 610px;
}

.tb-standerd-services-section .tb-standerd-services-section-content2::before {
    left: auto;
    right: 0;
/*    background-image: url('../images/standerd-services-section2-bg-img.png');*/
    width: 340px;
    height: 610px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-img,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-img {
    border: 5px solid #ffffff;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
    margin: 50px 0;
    display: inline-block;
    overflow: hidden;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-standerd-services-section .tb-standerd-services-section-content:hover .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content:focus .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content:active .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content2:hover .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content2:focus .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content2:active .tb-standerd-services-section-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section {
    display: flex;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card {
    background: #ffffff;
    padding: 50px 25px;
    box-shadow: 0px 2px 16px 0px rgba(37, 37, 37, 0.08);
    margin: 0 10px;
    position: relative;
    text-align: center;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card::before,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0%;
    height: 3px;
    background: #f37d6c;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:hover::before,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:focus::before,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:active::before,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:hover::before,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:focus::before,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:active::before {
    width: 100%;
    left: 0;
    right: auto;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-icon {
    position: relative;
    margin: 0 0 20px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon::after,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card .tb-standerd-services-icon i {
    color: #111111;
    display: inline-block;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card:hover .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card:focus .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card:active .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card:hover .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card:focus .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card:active .tb-standerd-services-icon i {
    color: #f37d6c;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-section .tb-standerd-services-card .tb-standerd-services-icon i .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card1 .tb-standerd-services-icon {
    padding: 0 0 5px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card1 .tb-standerd-services-icon i {
    font-size: 100px;
    line-height: 109px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card2 .tb-standerd-services-icon {
    padding: 0 0 15px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card2 .tb-standerd-services-icon i {
    font-size: 90px;
    line-height: 98px;
}

.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card3 .tb-standerd-services-icon,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card4 .tb-standerd-services-icon {
	padding: 0 0 25px;
}

.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card3 .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card4 .tb-standerd-services-icon i {
    font-size: 60px;
    line-height: 66px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-card-title {
    font: 700 30px/32px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #111111;
    margin: 0 0 15px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:hover .tb-standerd-services-card-title,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:focus .tb-standerd-services-card-title,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:active .tb-standerd-services-card-title,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:hover .tb-standerd-services-card-title,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:focus .tb-standerd-services-card-title,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:active .tb-standerd-services-card-title {
    color: #f37d6c;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-detail,
.tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-card-detail {
    font: 400 16px/28px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}


@media (max-width: 1499px) {

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 55px;
        line-height: 57px;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 40px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-icon {
        position: relative;
        margin: 0 0 15px;
        padding: 0 0 5px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-card-title {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 10px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-detail,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-card-detail {
        font-size: 14px;
        line-height: 25px;
    }

}


@media (max-width: 1399px) {

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 300px;
        height: 560px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 310px;
        height: 560px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card {
        padding: 30px 15px;
    }
}


@media (max-width: 1299px) {

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        padding: 0 160px;
    }

    .tb-standerd-services-section,
    .tb-standerd-services-section .tb-standerd-services-section-content {
        margin: 0 0 80px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 265px;
        height: 527px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 289px;
        height: 528px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card {
        margin: 0 5px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-icon {
        position: relative;
        margin: 0 0 10px;
        padding: 0 0 5px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card3 .tb-standerd-services-icon,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card4 .tb-standerd-services-icon {
        padding: 0 0 20px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card2 .tb-standerd-services-icon {
        padding: 0 0 15px;
    }

}


@media (max-width: 1199px) {

    .tb-standerd-services-section,
    .tb-standerd-services-section .tb-standerd-services-section-content {
        margin: 0 0 60px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 45px;
        line-height: 47px;
        padding: 0 0 15px;
        margin: 0 0 10px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 30px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 200px;
        height: 390px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 218px;
        height: 390px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-img,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-img {
        margin: 30px 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card {
        padding: 15px 5px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-icon {
        margin: 0 0 8px;
        padding: 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card1 .tb-standerd-services-icon i {
        font-size: 70px;
        line-height: 77px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card2 .tb-standerd-services-icon i {
        font-size: 60px;
        line-height: 66px;
    }   

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card2 .tb-standerd-services-icon {
        padding: 0 0 10px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card3 .tb-standerd-services-icon i,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card4 .tb-standerd-services-icon i {
        font-size: 50px;
        line-height: 55px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-card-title {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-detail,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card .tb-standerd-services-card-detail {
        font-size: 13px;
        line-height: 20px;
    }

}


@media (max-width: 991px) {

    .tb-standerd-services-section {
        margin: 0 0 40px;
        text-align: center;
    }

    .tb-standerd-services-section br {
        display: none;
    }

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 40px;
        line-height: 42px;
    }


    .tb-standerd-services-section .tb-standerd-services-section-detail {
        padding: 0 50px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content,
    .tb-standerd-services-section .tb-standerd-services-section-content2 {
        margin: 0 0 40px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::after {
        width: 100%;
        height: 71%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::after {
        width: 100%;
        height: 70%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 280px;
        height: 757px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 305px;
        height: 770px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section {
        margin: 20px 0 0 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card {
        margin: 0 10px;
        padding: 15px 10px;
    }

}


@media (max-width: 767px) {


    .tb-standerd-services-section .tb-standerd-services-section-detail {
        padding: 0 20px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::after {
        height: 71%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::after {
        height: 70%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 230px;
        height: 660px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 250px;
        height: 670px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:hover .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:focus .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card:active .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:hover .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:focus .tb-standerd-services-card-title,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card:active .tb-standerd-services-card-title {
        font-size: 24px;
        line-height: 26px;
    }

}


@media (max-width: 676px) {

    .tb-standerd-services-section .tb-standerd-services-section-content::after {
        height: 66%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::after {
        height: 66%;
    }

}


@media (max-width: 575px) {

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        padding: 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::after {
        height: 60%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::after {
        height: 58%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 185px;
        height: 590px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 200px;
        height: 605px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-img,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-img {
        margin: 20px 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card2 .tb-standerd-services-icon {
        padding: 0 0 5px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card3 .tb-standerd-services-icon,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card.tb-card4 .tb-standerd-services-icon {
        padding: 0 0 15px;
    }

}


@media (max-width: 480px) {

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 135px;
        height: 690px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 155px;
        height: 725px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::after {
        height: 38%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::after {
        height: 37%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-img,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-section-img {
        margin: 20px 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section {
        display: block;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card.tb-card1,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card.tb-card3 {
        margin: 0 0 20px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card-section .tb-standerd-services-card.tb-card2,
    .tb-standerd-services-section .tb-standerd-services-section-content2 .tb-standerd-services-card-section .tb-standerd-services-card.tb-services-card.tb-card4 {
        margin: 0;
    }

}


@media (max-width: 360px) {

    .tb-standerd-services-section .tb-standerd-services-section-content::after {
        height: 36%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::after {
        height: 35%;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content::before {
        width: 130px;
        height: 675px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content2::before {
        width: 140px;
        height: 705px;
    }
}

/* =============== OUR TECHNOLOGY SECTION =============== */
.tb-our-technology-section {
    margin: 0 0 100px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
    border: 10px solid #ffffff;
    box-shadow: 0px 2px 16px 0px rgba(37, 37, 37, 0.29);
    display: inline-block;
    position: relative;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img img {
    width: 100%;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.4);
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn::before,
.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: play 1.5s linear infinite;
    -webkit-animation: play 1.5s linear infinite;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn::after {
    animation-delay: .7s;
}

@keyframes play {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0;
        visibility: hidden;
    }

    80% {
        width: 110px;
        height: 110px;
        opacity: 1;
        visibility: visible;
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes play {
    0% {
        width: 80px;
        height: 80px;
        opacity: 0;
        visibility: hidden;
    }

    80% {
        width: 110px;
        height: 110px;
        opacity: 1;
        visibility: visible;
    }

    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        visibility: hidden;
    }
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn i {
    font-size: 24px;
    line-height: 26px;
    color: #97552c;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
    border: 10px solid #bec5c7;
    position: relative;
    margin: 0 0 0 -50px;
    z-index: -1;
    padding: 50px 80px 50px 90px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-semititle {
    font: 400 20px/22px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #f37d6c;
    text-transform: capitalize;
    margin: 0 0 15px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title {
    font: 700 60px/65px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 15px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-detail.tb-last-paragraph {
    margin: 0;
}


@media (max-width: 1499px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        padding: 40px 70px 40px 60px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-semititle {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title {
        font-size: 55px;
        line-height: 57px;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-detail {
        font-size: 16px;
        line-height: 28px;
    }

}


@media (max-width: 1299px) {

    .tb-our-technology-section {
        margin: 0 0 80px;
    }

}


@media (max-width: 1199px) {

    .tb-our-technology-section {
        margin: 0 0 60px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        padding: 30px 60px 30px 55px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-semititle {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 10px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title {
        font-size: 45px;
        line-height: 47px;
        padding: 0 0 15px;
        margin: 0 0 10px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 10px;
    }

}


@media (max-width: 991px) {

    .tb-our-technology-section {
        margin: 0 0 40px;
        text-align: center;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img,
    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-content-text-box {
        width: 100%;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        border: 10px solid #bec5c7;
        position: relative;
        z-index: -1;
        padding: 50px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        margin: -50px 0 0;
        padding: 75px 40px 30px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title {
        font-size: 40px;
        line-height: 42px;
    }


    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title::after {
        right: 0;
    }

}


@media (max-width: 767px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        padding: 70px 30px 30px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-semititle {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
        border: 5px solid #fff;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        border: 5px solid #bec5c7;
    }

}


@media (max-width: 575px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        padding: 60px 20px 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title {
        font-size: 35px;
        line-height: 37px;
    }

}


@media (max-width: 480px) {


    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
        margin: 0 0 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn,
    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn::before,
    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn::after {
        width: 60px;
        height: 60px;
    }

    @keyframes play {
        0% {
            width: 60px;
            height: 60px;
        }

        80% {
            width: 90px;
            height: 90px;
        }

        100% {
            width: 100px;
            height: 100px;
            opacity: 0;
            visibility: hidden;
        }
    }

    @-webkit-keyframes play {
        0% {
            width: 60px;
            height: 60px;
        }

        80% {
            width: 90px;
            height: 90px;
        }

        100% {
            width: 100px;
            height: 100px;
            opacity: 0;
            visibility: hidden;
        }
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img .tb-play-btn i {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        padding: 45px 20px 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card .tb-our-technology-section-card-title {
        font-size: 30px;
        line-height: 32px;
    }

}


@media (max-width: 360px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-card {
        padding: 40px 10px 10px;
    }

}






/* ? ============================== ABOUT US PAGE ============================== */
/* =============== BEGAN SECTION =============== */
.tb-began-section {
    margin: 0 0 100px;
}

.tb-began-section .tb-began-section-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.tb-began-section .tb-began-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-began-section .tb-began-section-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 0 270px;
    margin: 0 0 50px;
}

.tb-began-section .tb-began-section-content {
    position: relative;
    padding: 70px 0 0;
}

.tb-began-section .tb-began-section-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    margin: auto;
    width: 50%;
    height: 82%;
    background: #bec5c7;
    z-index: -1;
}

.tb-began-section .tb-began-section-content .tb-began-img {
    display: inline-block;
    border: 10px solid #ffffff;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
    overflow: hidden;
}

.tb-began-section .tb-began-section-content .tb-began-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-began-section:hover .tb-began-section-content .tb-began-img img,
.tb-began-section:focus .tb-began-section-content .tb-began-img img,
.tb-began-section:active .tb-began-section-content .tb-began-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-began-section .tb-began-section-content .tb-began-card {
    background: #ffffff;
    padding: 40px 60px;
    box-shadow: 0px 2px 16px 0px rgba(37, 37, 37, 0.08);
    margin: 0 194px 0 -80px;
    position: relative;
}

.tb-began-section .tb-began-section-content .tb-began-card::before {
    content: '';
    position: absolute;
/*    background-image: url('../images/about-us-bg-img.png');*/
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -176px;
    width: 312px;
    height: 399px;
    z-index: -1;
}

.tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
    font: 700 45px/55px 'Cormorant SC', Helvetica, sans-serif;
    position: relative;
    padding: 0 5px 20px 0;
    margin: 0 0 20px;
}

.tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 20px;
}

.tb-began-section .tb-began-section-content .tb-began-card.tb-last-paragraph {
    margin: 0;
}


@media (max-width: 1699px) {

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        right: -176px;
        width: 275px;
        height: 350px;
    }

}


@media (max-width: 1599px) {

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        right: -156px;
        width: 263px;
        height: 330px;
    }

}


@media (max-width: 1499px) {

    .tb-began-section .tb-began-section-title {
        font-size: 55px;
        line-height: 57px;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-began-section .tb-began-section-detail {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 40px;
    }

    .tb-began-section .tb-began-section-content::after {
        height: 80%;
    }

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        right: -110px;
        width: 240px;
        height: 300px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        padding: 30px 50px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
        font-size: 42px;
        line-height: 52px;
        padding: 0 22px 15px 0;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-detail {
        font-size: 16px;
        line-height: 28px;
    }

}


@media (max-width: 1399px) {

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        right: -130px;
        width: 240px;
        height: 300px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
        font-size: 40px;
        line-height: 50px;
    }

}


@media (max-width: 1299px) {

    .tb-began-section {
        margin: 0 0 80px;
    }

    .tb-began-section .tb-began-section-content {
        padding: 50px 0 0;
    }

    .tb-began-section .tb-began-section-detail {
        font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
        letter-spacing: 0.3px;
        text-align: center;
        margin: 0 0 50px;
    }

    .tb-began-section .tb-began-section-detail {
        padding: 0 160px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        padding: 25px 40px;
        margin: 0 110px 0 -80px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        right: -120px;
        width: 220px;
        height: 280px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
        font-size: 35px;
        line-height: 42px;
    }

}


@media (max-width: 1199px) {

    .tb-began-section {
        margin: 0 0 60px;
    }

    .tb-began-section .tb-began-section-title {
        font-size: 45px;
        line-height: 47px;
        padding: 0 0 15px;
        margin: 0 0 10px;
    }

    .tb-began-section .tb-began-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 30px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        right: -100px;
        width: 201px;
        height: 255px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        padding: 20px 30px;
        margin: 0 84px 0 -80px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
        font-size: 28px;
        line-height: 34px;
        margin: 0 0 10px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 10px;
    }

}


@media (max-width: 991px) {

    .tb-began-section {
        margin: 0 0 30px;
    }

    .tb-began-section br {
        display: none;
    }

    .tb-began-section .tb-began-section-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-began-section .tb-began-section-detail {
        padding: 0 50px;
    }

    .tb-began-section .tb-began-section-content {
        padding: 30px 0 0;
    }

    .tb-began-section .tb-began-section-content::after {
        height: 65%;
    }

    .tb-began-section .tb-began-section-content .tb-began-card::before {
        display: none;
    }

    .tb-began-section .tb-began-section-content .tb-began-img {
        border: 7px solid #ffffff;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        padding: 15px 20px;
        margin: 0 0 0 -55px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
        padding: 0 0 15px 0;
    }

}


@media (max-width: 767px) {

    .tb-began-section .tb-began-section-content {
        text-align: center;
    }

    .tb-began-section .tb-began-section-content::after {
        right: 0;
        margin: auto;
        width: 100%;
        height: 60%;
    }

    .tb-began-section .tb-began-section-detail {
        padding: 0 20px;
    }

    .tb-began-section .tb-began-section-content .tb-began-img {
        border: 7px solid #ffffff;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        margin: -30px 10px 0;
        padding: 30px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title::after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }

}


@media (max-width: 575px) {

    .tb-began-section .tb-began-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-began-section .tb-began-section-detail {
        padding: 0;
    }

    .tb-began-section .tb-began-section-content::after {
        height: 55%;
    }

}


@media (max-width: 480px) {

    .tb-began-section .tb-began-section-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-began-section .tb-began-section-detail {
        margin: 0 0 35px;
    }

    .tb-began-section .tb-began-section-content {
        padding: 0;
    }

    .tb-began-section .tb-began-section-content::after {
        height: 45%;
        top: -15px;
    }

    .tb-began-section .tb-began-section-content .tb-began-img {
        margin: 0 0 20px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        margin: -30px 0 0;
        width: 100%;
        padding: 20px;
    }

    .tb-began-section .tb-began-section-content .tb-began-card .tb-began-card-title {
        font-size: 21px;
        line-height: 27px;
    }

}


@media (max-width: 360px) {

    .tb-began-section .tb-began-section-detail {
        margin: 0 0 30px;
    }

    .tb-began-section .tb-began-section-content::after {
        height: 38%;
    }

    .tb-began-section .tb-began-section-content .tb-began-card {
        padding: 10px;
    }

}

/* =============== ABOUT CONTENT SECTION =============== */
.tb-about-content-section {
    margin: 0 0 100px;
}

.tb-about-content-section .tb-about-content-col {
    padding: 0;
}

.tb-about-content-section .tb-about-content-card {
    padding: 0 50px;
    text-align: center;
    position: relative;
}

.tb-about-content-section .tb-about-content-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, transparent, #cecece, transparent);
}

.tb-about-content-section .tb-about-content-card.tb-card3::after {
    display: none;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
    font: 700 45px/55px 'Cormorant SC', Helvetica, sans-serif;
    position: relative;
    padding: 0 0 20px 0;
    margin: 0 0 20px;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-card-detail {
    font: 400 16px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}


@media (max-width: 1499px) {


    .tb-about-content-section .tb-about-content-card {
        padding: 0 40px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 42px;
        line-height: 52px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-detail {
        line-height: 28px;
        font-size: 15px;
    }

}


@media (max-width: 1399px) {

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 40px;
        line-height: 50px;
    }

}


@media (max-width: 1299px) {

    .tb-about-content-section {
        margin: 0 0 80px;
    }

    .tb-about-content-section .tb-about-content-card {
        padding: 0 30px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 35px;
        line-height: 42px;
    }

}


@media (max-width: 1199px) {

    .tb-about-content-section {
        margin: 0 0 60px;
    }

    .tb-about-content-section .tb-about-content-card {
        padding: 0 20px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 28px;
        line-height: 34px;
        padding: 0 0 10px;
        margin: 0 0 10px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-detail {
        font-size: 14px;
        line-height: 24px;
    }

}


@media (max-width: 991px) {

    .tb-about-content-section {
        margin: 0 0 40px;
        padding: 0 15px;
    }

    .tb-about-content-section .tb-about-content-card {
        padding: 0 15px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        padding: 0 0 15px 0;
    }

}


@media (max-width: 767px) {

    .tb-about-content-section .tb-about-content-card {
        padding: 0;
        margin: 0 0 30px;
    }

    .tb-about-content-section .tb-about-content-card.tb-card3 {
        margin: 0;
    }

    .tb-about-content-section .tb-about-content-card::after {
        display: none;
    }

}


@media (max-width: 480px) {

    .tb-about-content-section .tb-about-content-card {
        margin: 0 0 20px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 24px;
        line-height: 26px;
    }

}

/* =============== SPRING COLLECTION SECTION =============== */
.tb-spring-collection-section {
    margin: 0 0 100px;
    position: relative;
}

.tb-spring-collection-section::before {
    content: '';
    position: absolute;
    top: 65%;
    bottom: 0;
    left: 15%;
/*    background-image: url('../images/about-us-collection-bg-img.jpg');*/
    background-size: contain;
    background-repeat: no-repeat;
    width: 578px;
    height: 270px;
    z-index: -2;
}

.tb-spring-collection-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 55%;
    height: 100%;
    background: #bec5c7;
    z-index: -1;
}

.tb-spring-collection-section .tb-instagram-link {
    font: 400 18px/20px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #f37d6c;
    margin: 0 0 15px;
}

.tb-spring-collection-section .tb-instagram-link i {
    margin: 0 10px 0 0;
}

.tb-spring-collection-section .tb-spring-collection-title {
    font: 700 45px/55px 'Cormorant SC', Helvetica, sans-serif;
    position: relative;
    padding: 0 0 20px 0;
    margin: 0 0 20px;
}

.tb-spring-collection-section .tb-spring-collection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-spring-collection-section .tb-spring-collection-detail {
    font: 400 16px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 20px;
}

.tb-spring-collection-section .tb-spring-collection-detail.tb-last-para {
    margin: 0;
}

.tb-spring-collection-section .tb-spring-collection-img-section {
    padding: 60px 0 60px 120px;
    display: flex;
}

.tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img {
    display: inline-block;
    border: 10px solid #ffffff;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
    margin: 0 10px;
    height: max-content;
    overflow: hidden;
}

.tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-spring-collection-section:hover .tb-spring-collection-img-section .tb-spring-collection-img img,
.tb-spring-collection-section:focus .tb-spring-collection-img-section .tb-spring-collection-img img,
.tb-spring-collection-section:active .tb-spring-collection-img-section .tb-spring-collection-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img.tb-img1 {
    margin: 80px 10px 0;
}


@media (max-width: 1699px) {

    .tb-spring-collection-section::before {
        top: 60%;
        left: 10%;
    }

}


@media (max-width: 1599px) {

    .tb-spring-collection-section::before {
        left: 7%;
    }

}


@media (max-width: 1499px) {

    .tb-spring-collection-section::before {
        top: 58%;
        left: 5%;
    }

    .tb-spring-collection-section .tb-instagram-link {
        font-size: 16px;
        line-height: 18px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 42px;
        line-height: 52px;
        padding: 0 0 15px 0;
    }

    .tb-spring-collection-section .tb-spring-collection-detail {
        font-size: 16px;
        line-height: 28px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section {
        padding: 50px 0 50px 100px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img.tb-img1 {
        margin: 60px 10px 0;
    }

}


@media (max-width: 1399px) {

    .tb-spring-collection-section::before {
        top: 55%;
        left: 2%;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 40px;
        line-height: 50px;
    }

}


@media (max-width: 1299px) {

    .tb-spring-collection-section {
        margin: 0 0 80px;
    }

    .tb-spring-collection-section::before {
        top: 45%;
        left: 2%;
    }

    .tb-spring-collection-section .tb-instagram-link {
        margin: 0 0 12px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 35px;
        line-height: 42px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img.tb-img1 {
        margin: 40px 10px 0;
    }

}


@media (max-width: 1199px) {

    .tb-spring-collection-section {
        margin: 0 0 60px;
    }

    .tb-spring-collection-section::before {
        width: 500px;
        height: 270px;
        top: 42%;
        left: 3%;
    }

    .tb-spring-collection-section .tb-instagram-link {
        font-size: 14px;
        line-height: 16px;
        margin: 0 0 10px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 28px;
        line-height: 34px;
        margin: 0 0 10px;
    }

    .tb-spring-collection-section .tb-spring-collection-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 10px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section {
        padding: 40px 0 40px 30px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img {
        border: 7px solid #ffffff;
    }

}


@media (max-width: 991px) {

    .tb-spring-collection-section {
        margin: 0 0 40px;
    }

    .tb-spring-collection-section::before {
        top: auto;
        left: 15%;
        width: 330px;
        height: 150px;
    }

    .tb-spring-collection-section .tb-instagram-link {
        font-size: 12px;
        line-height: 14px;
        margin: 0 0 5px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        padding: 0 0 15px 0;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section {
        padding: 40px 0 40px 20px;
    }

}


@media (max-width: 767px) {

    .tb-spring-collection-section::before {
        top: auto;
        left: auto;
        right: 0;
    }

    .tb-spring-collection-section::after {
        top: 0;
        height: 64%;
        width: 100%;
    }

    .tb-spring-collection-section .tb-instagram-link {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-spring-collection-section .tb-spring-collection-content {
        text-align: center;
    }

    .tb-spring-collection-section .tb-spring-collection-title::after {
        right: 0;
        margin: auto;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section {
        padding: 0;
        margin: 0 0 30px;
        padding: 20px 0;
        justify-content: center;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img {
        margin: 0 8px 0;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img.tb-img1 {
        margin: 40px 8px 0;
    }

}


@media (max-width: 575px) {

    .tb-spring-collection-section::after {
        height: 57%;
    }

}


@media (max-width: 480px) {

    .tb-spring-collection-section::after {
        height: 47%;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section {
        margin: 0 0 20px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img {
        margin: 0 5px 0;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img.tb-img1 {
        margin: 25px 5px 0;
    }

}


@media (max-width: 360px) {

    .tb-spring-collection-section::after {
        height: 43%;
    }

}






/* ? ============================== GALLERY PAGE ============================== */
/* =============== OUR GALLERY SECTION =============== */
.tb-our-gallery-section {
    margin: 0 0 100px;
}

.tb-our-gallery-section .tb-our-gallery-section-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.tb-our-gallery-section .tb-our-gallery-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-our-gallery-section .tb-our-gallery-section-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 0 270px;
    margin: 0 0 50px;
}

.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img {
    margin: 0 0 30px;
    position: relative;
}

.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(3),
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(6),
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(9) {
    margin: 0;
}

.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 37, 37, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img .our-gallery-section-img-title {
    font: 700 30px/32px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #ffffff;
    position: absolute;
    bottom: 20px;
    left: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}

.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:hover:before,
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:focus:before,
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:active:before,
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:hover .our-gallery-section-img-title,
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:focus .our-gallery-section-img-title,
.tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:active .our-gallery-section-img-title {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 1499px) {

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 55px;
        line-height: 57px;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 40px;
    }

}


@media (max-width: 1299px) {

    .tb-our-gallery-section {
        margin: 0 0 80px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        padding: 0 160px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img .our-gallery-section-img-title {
        font-size: 25px;
        line-height: 27px;
    }

}


@media (max-width: 1199px) {

    .tb-our-gallery-section {
        margin: 0 0 60px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 45px;
        line-height: 47px;
        padding: 0 0 15px;
        margin: 0 0 10px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 30px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img .our-gallery-section-img-title {
        font-size: 22px;
        line-height: 24px;
        bottom: 10px;
        left: 20px;
    }

}


@media (max-width: 991px) {

    .tb-our-gallery-section {
        text-align: center;
        margin: 0 5px 40px;
    }

    .tb-our-gallery-section br {
        display: none;
    }

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        padding: 0 50px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-col {
        padding: 0 10px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img {
        margin: 0 0 20px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(3),
    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(6) {
        margin: 0 0 20px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img.tb-img7,
    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img.tb-img9 {
        margin: 0;
    }

}


@media (max-width: 767px) {

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        padding: 0 20px;
    }

}


@media (max-width: 575px) {

    .tb-our-gallery-section {
        margin: 0 0 40px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 35px;
        line-height: 37px;
    }


    .tb-our-gallery-section .tb-our-gallery-section-detail {
        padding: 0;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-col {
        padding: 0;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img.tb-img7 {
        margin: 0 0 20px;
    }

}

@media (max-width: 480px) {

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        margin: 0 0 20px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img,
    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(3),
    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img:nth-child(6),
    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img.tb-img7 {
        margin: 0 15px 15px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .our-gallery-section-img.tb-img9 {
        margin: 0 15px;
    }

}


@media (max-width: 360px) {

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        margin: 0 0 15px;
    }

}






/* ? ============================== BLOG LIST PAGE ============================== */
/* =============== BLOG LIST SECTION =============== */
.tb-blog-list-section {
    margin: 0 0 100px;
}

.tb-blog-list-section .tb-blog-list-section-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.tb-blog-list-section .tb-blog-list-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-blog-list-section .tb-blog-list-section-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 0 270px;
    margin: 0 0 40px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
    background: #f3f3f3;
    padding: 40px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
    font: 700 24px/26px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    margin: 0 0 25px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card {
    display: flex;
    align-items: start;
    margin: 0 0 30px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card2 {
    margin: 0 0 40px;
}


.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
    width: 50%;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img img {
    width: 100%;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card .tb-recent-post-img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img {
    display: inline-block;
    overflow: hidden;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img img {
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    width: 100%;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card:hover .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card:focus .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-section .tb-recent-post-cards-section .tb-recent-post-card:active .tb-recent-post-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img:hover img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img:focus img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img:active img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section:hover .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section:focus .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section:active .tb-about-us-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:hover .tb-blog-card-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:focus .tb-blog-card-img img,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:active .tb-blog-card-img img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img {
    position: relative;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
    font: 400 45px/47px 'Satisfy', cursive;
    color: #ffffff;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content {
    margin: 0 0 0 20px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
    font: 700 20px/22px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    margin: 0 0 10px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-date {
    font: 400 14px/16px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #97552c;
    margin: 0 0 12px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-detail {
    font: 400 14px/22px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #939393;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img {
    margin: 0 0 30px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img {
    margin: 0 0 10px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-detail {
    font: 400 15px/26px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #939393;
    margin: 0 0 15px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-common-btn,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-common-btn {
    padding: 16px 35px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card {
    margin: 0 0 30px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:last-child {
    margin: 0;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-list-blog-col {
    padding: 0;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img {
    position: relative;
    z-index: 2;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    z-index: 3;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:hover .tb-blog-card-img::before,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:focus .tb-blog-card-img::before,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:active .tb-blog-card-img::before {
    background: rgba(0, 0, 0, 0.5);
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transform: scale(2);
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}


.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon:hover,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon:focus,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon:active {
    background: #f37d6c;
    color: #ffffff;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:hover .tb-blog-card-img .tb-blog-list-search-icon,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:focus .tb-blog-card-img .tb-blog-list-search-icon,
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card:active .tb-blog-card-img .tb-blog-list-search-icon {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
    background: #ffffff;
    box-shadow: 0px 2px 16px 0px rgba(37, 37, 37, 0.08);
    padding: 35px 30px 35px 90px;
    margin: 0 0 0 -50px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
    color: #f37d6c;
    display: flex;
    font: 400 15px/17px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 10px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date i {
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
    font: 700 26px/28px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    margin: 0 0 15px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
    font: 400 15px/28px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #545454;
    margin: 0 0 15px;
}


@media (max-width: 1499px) {

    .tb-blog-list-section .tb-blog-list-section-title {
        font-size: 55px;
        line-height: 57px;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-detail {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        font-size: 22px;
        line-height: 24px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
        font-size: 18px;
        line-height: 20px;
        margin: 0 0 8px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-post-detail,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-detail {
        font-size: 13px;
        line-height: 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 14px;
        line-height: 22px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-common-btn,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-common-btn {
        padding: 14px 30px;
    }

}


@media (max-width: 1399px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 80%;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        padding: 35px 30px 35px 85px;
    }

}


@media (max-width: 1299px) {

    .tb-blog-list-section {
        margin: 0 0 80px;
    }

    .tb-blog-list-section .tb-blog-list-section-detail {
        padding: 0 160px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        font-size: 35px;
        line-height: 37px;
    }

}


@media (max-width: 1199px) {

    .tb-blog-list-section {
        margin: 0 0 60px;
    }

    .tb-blog-list-section .tb-blog-list-section-title {
        font-size: 45px;
        line-height: 47px;
        padding: 0 0 15px;
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-detail {
        font-size: 14px;
        line-height: 24px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card {
        margin: 0 0 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 90%;
        margin: 0 12px 0 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content {
        margin: 0 0 0 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        top: 20px;
        font-size: 28px;
        line-height: 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 5px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-common-btn,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
        padding: 12px 32px;
    }

}


@media (max-width: 991px) {

    .tb-blog-list-section {
        margin: 0 0 40px;
    }

    .tb-blog-list-section br {
        display: none;
    }

    .tb-blog-list-section .tb-blog-list-section-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-blog-list-section .tb-blog-list-section-detail {
        margin: 0 0 20px;
        padding: 0 50px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card-col {
        padding: 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        margin: 0 0 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        font-size: 20px;
        line-height: 22px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card {
        margin: 0 0 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card2 {
        margin: 0 0 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 250px;
        margin: 0 10px 0 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
        font-size: 16px;
        line-height: 18px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img {
        margin: 0 0 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        top: 15px;
        font-size: 22px;
        line-height: 24px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card {
        margin: 0 0 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        padding: 20px 10px 20px 70px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 20px;
        line-height: 22px;
        margin: 0 0 10px;
    }

}


@media (max-width: 767px) {

    .tb-blog-list-section .tb-blog-list-section-detail {
        padding: 0 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-title,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-title {
        margin: 0 0 15px;
    }

    .tb-recent-post-cards-section,
    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-other-section {
        display: block;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card-col {
        padding: 0 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 30px;
        margin: 0 60px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card1 {
        margin: 0 0 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card.tb-card2 {
        margin: 0 0 25px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-detail {
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 110px;
        margin: 0 15px 0 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        top: 25px;
        font-size: 40px;
        line-height: 42px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-about-us-section .tb-about-us-img {
        margin: 0 0 5px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 {
        margin: 0 0 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card {
        justify-content: center;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        padding: 25px 30px 25px 75px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img::before {
        background: rgba(0, 0, 0, 0.5);
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-img .tb-blog-list-search-icon {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

}


@media (max-width: 575px) {

    .tb-blog-list-section .tb-blog-list-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-blog-list-section .tb-blog-list-section-detail {
        padding: 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 {
        text-align: center;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 150px;
        margin: 0 12px 0 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-card-content .tb-recent-post-card-title {
        margin: 0 0 5px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        top: 20px;
        font-size: 32px;
        line-height: 34px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        margin: -20px 0 0;
        padding: 35px 30px 20px 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        justify-content: center;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 24px;
        line-height: 26px;
    }

}


@media (max-width: 480px) {

    .tb-blog-list-section .tb-blog-list-section-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        margin: 0;
        padding: 26px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 150px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        padding: 35px 20px 20px 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 20px;
        line-height: 22px;
    }

}


@media (max-width: 360px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
        padding: 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 180px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        margin: -20px 0 0;
        padding: 30px 10px 15px 10px;
    }

}






/* ? ============================== BLOG DETAILS PAGE ============================== */
/* =============== BLOG DETAILS SECTION =============== */
.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card {
    background: #f3f3f3;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-img {
    max-width: 100%;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
    padding: 35px 50px 40px 30px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
    color: #f37d6c;
    display: flex;
    font: 400 15px/17px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 20px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date i {
    width: 16px;
    height: 16px;
    margin: 0 5px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
    font: 700 26px/28px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    margin: 0 0 15px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail {
    font: 400 15px/24px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #545454;
    margin: 0 0 15px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail.tb-last-paragraph {
    margin: 0;
}


@media (max-width: 1499px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 30px 45px 30px 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 14px;
        line-height: 22px;
    }

}


@media (max-width: 1299px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 30px 45px 30px 30px;
    }

}


@media (max-width: 1199px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        font-size: 13px;
        line-height: 15px;
        margin: 0 0 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 22px;
        line-height: 24px;
        margin: 0 0 10px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        font-size: 13px;
        line-height: 20px;
        margin: 0 0 10px;
    }

}


@media (max-width: 767px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 20px 40px 20px 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-title {
        font-size: 19px;
        line-height: 21px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card {
        text-align: center;
        margin: 0 0 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card {
        justify-content: center;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        justify-content: center;
    }

}


@media (max-width: 575px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 25px 30px 20px 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content .tb-blog-date {
        margin: 0 0 12px;
    }

}


@media (max-width: 480px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 20px;
    }

}


@media (max-width: 360px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 15px;
    }

}






/* ? ============================== CONTACT PAGE ============================== */
/* =============== FORM SECTION =============== */
.tb-form-section {
    margin: 0 0 100px;
}

.tb-form-section .tb-form-section-title {
    font: 700 60px/62px 'Cormorant SC', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
}

.tb-form-section .tb-form-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50px;
    height: 5px;
    background: #f37d6c;
}

.tb-form-section .tb-form-section-detail {
    font: 400 17px/30px 'Arimo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 0 270px;
    margin: 0 0 70px;
}

.tb-form-section .tb-form-section-content {
    padding: 0 125px;
}

.tb-form-section .tb-form-section-content .tb-form-section-input-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.tb-form-section .tb-form-section-content .tb-form-section-input-section .tb-input-box {
    width: 100%;
}

.tb-form-section .tb-form-section-content .tb-input-box {
    border: 1px solid #e0e0e0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    margin: 0 0 30px;
}

.tb-form-section .tb-form-section-content .tb-input-box i,
.tb-form-section .tb-form-section-content .tb-textarea-box i {
    color: #b3b3b3;
}

.tb-form-section .tb-form-section-content .tb-input-box.tb-full-name i,
.tb-form-section .tb-form-section-content .tb-input-box.tb-subject i,
.tb-form-section .tb-form-section-content .tb-textarea-box i {
    font-size: 14px;
    line-height: 16px;
}

.tb-form-section .tb-form-section-content .tb-input-box.tb-email i,
.tb-form-section .tb-form-section-content .tb-input-box.tb-call i {
    font-size: 18px;
    line-height: 20px;
}

.tb-form-section .tb-form-section-content .tb-textarea-box i {
    margin: 5px 0 0;
}

.tb-form-section .tb-form-section-content .tb-input-box input {
    border: none;
    outline: none;
    padding: 10px 0;
    margin: 0 0 0 10px;
    width: 100%;
}

.tb-form-section .tb-form-section-content .tb-input-box input,
.tb-form-section .tb-form-section-content .tb-input-box input {
    -webkit-appearance: none;
    -moz-appearance: number-input;
    -moz-appearance: textfield;
}

.tb-form-section .tb-form-section-content .tb-input-box input::-webkit-inner-spin-button,
.tb-form-section .tb-form-section-content .tb-input-box input::-webkit-outer-spin-button {
    display: none;
}

.tb-form-section .tb-form-section-content .tb-input-box input::placeholder,
.tb-form-section .tb-form-section-content .tb-input-box textarea::placeholder {
    color: #545454;
    text-transform: capitalize;
}

.tb-form-section .tb-form-section-content .tb-input-box input,
.tb-form-section .tb-form-section-content .tb-input-box input::placeholder,
.tb-form-section .tb-form-section-content .tb-input-box textarea,
.tb-form-section .tb-form-section-content .tb-input-box textarea::placeholder {
    font: 400 16px/28px 'Cairo', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}

.tb-form-section .tb-form-section-content .tb-textarea-box {
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: start;
    padding: 10px 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    margin: 0 0 40px;
}

.tb-form-section .tb-form-section-content .tb-textarea-box textarea {
    border: none;
    outline: none;
    resize: none;
    margin: 0 0 0 10px;
    width: 100%;
}

.tb-form-section .tb-form-section-content form .tb-common-btn {
    text-transform: uppercase;
    display: block;
    margin: 0 auto;
}

.tb-form-section .tb-form-section-content .success,
.tb-form-section .tb-form-section-content .error {
    font: 400 16px/18px 'Arimo', Helvetica, sans-serif;
    display: block;
    text-align: center;
    margin: 15px 0;
}

.tb-form-section .tb-form-section-content .success {
    color: #075007;
}

.tb-form-section .tb-form-section-content .error {
    color: #FF0000;
}


@media (max-width: 1499px) {

    .tb-form-section .tb-form-section-content {
        padding: 0 70px;
    }

    .tb-form-section .tb-form-section-title {
        font-size: 55px;
        line-height: 57px;
        padding: 0 0 15px;
        margin: 0 0 20px;
    }

    .tb-form-section .tb-form-section-detail {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 50px;
    }

}


@media (max-width: 1299px) {

    .tb-form-section {
        margin: 0 0 80px;
    }

    .tb-form-section .tb-form-section-content .our-gallery-section-img .our-gallery-section-img-title {
        font-size: 25px;
        line-height: 27px;
    }

    .tb-form-section .tb-form-section-detail {
        padding: 0 160px;
    }

}


@media (max-width: 1199px) {

    .tb-form-section {
        margin: 0 0 60px;
    }

    .tb-form-section .tb-form-section-title {
        font-size: 45px;
        line-height: 47px;
        padding: 0 0 15px;
        margin: 0 0 10px;
    }

    .tb-form-section .tb-form-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 40px;
    }

    .tb-form-section .tb-form-section-content {
        padding: 0;
    }

    .tb-form-section .tb-form-section-content .success,
    .tb-form-section .tb-form-section-content .error {
        font-size: 14px;
        line-height: 16px;
        margin: 10px 0;
    }

}


@media (max-width: 991px) {

    .tb-form-section {
        margin: 0 0 40px;
        text-align: center;
    }

    .tb-form-section br {
        display: none;
    }

    .tb-form-section .tb-form-section-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-form-section .tb-form-section-detail {
        margin: 0 0 30px;
        padding: 0 50px;
    }

    .tb-form-section .tb-form-section-content .tb-form-section-input-section {
        gap: 15px;
    }

    .tb-form-section .tb-form-section-content .tb-input-box {
        margin: 0 0 20px;
    }

    .tb-form-section .tb-form-section-content .tb-textarea-box {
        margin: 0 0 30px;
    }

    .tb-form-section .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
    }

}


@media (max-width: 767px) {


    .tb-form-section .tb-form-section-detail {
        padding: 0 20px;
    }

    .tb-form-section .tb-form-section-content .tb-form-section-input-section {
        display: block;
    }

}


@media (max-width: 575px) {

    .tb-form-section .tb-form-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-form-section .tb-form-section-detail {
        padding: 0;
    }

    .tb-form-section .tb-form-section-content .tb-textarea-box {
        margin: 0 0 20px;
    }

}


@media (max-width: 360px) {

    .tb-form-section .tb-form-section-detail {
        margin: 0 0 20px;
    }

}


@media (max-width: 480px) {

    .tb-form-section .tb-form-section-detail {
        margin: 0 0 20px;
    }

    .tb-form-section .tb-form-section-title {
        font-size: 30px;
        line-height: 32px;
    }

}


@media (max-width: 360px) {

    .tb-form-section .tb-form-section-detail {
        margin: 0 0 15px;
    }

}

/* =============== MAP SECTION =============== */
.tb-contact-page-map {
    margin: 0 0 100px;
}

.tb-contact-page-map iframe {
    height: 600px;
    width: 100%;
}


@media (max-width: 1299px) {

    .tb-contact-page-map {
        margin: 0 0 80px;
    }

    .tb-contact-page-map iframe {
        height: 500px;
    }

}


@media (max-width: 1199px) {

    .tb-contact-page-map {
        margin: 0 0 60px;
    }

}


@media (max-width: 991px) {

    .tb-contact-page-map {
        margin: 0 0 40px;
    }

    .tb-contact-page-map iframe {
        height: 400px;
    }

}


@media (max-width: 575px) {

    .tb-contact-page-map iframe {
        height: 300px;
    }

}


@media (max-width: 480px) {

    .tb-contact-page-map iframe {
        height: 250px;
    }

}
/************************************************************/
.navbar-brand img
{
   width: 180px;
   height: 78px;
}
.prods img 
{
   width: 320px;
   height: 320px;
}
.prods 
{
   padding-bottom: 50px !important;
}
/* =============================== Site Map ================================ */
.sitemapul
{
    list-style-type: none;
    padding: 20px;
    width: 60%;
    margin: 20px auto;
    background: #999;
    /*border: 1px solid;*/
    border-radius: 10px;
}
.sitemapul ul
{
    list-style-type: none;
    padding: 20px;
    width: 60%;
    margin: 20px auto;
    background: #e1ae25;
    border: 1px solid #e1ae25;
    border-radius: 10px;
    color: #000;
}

.sitemapul li
{
    background: #fff;
    border: 1px solid;
    padding: 5px 20px;
    width: auto;
    border-radius: 10px;
    margin-bottom: 10px;
}
.sitemapul li a
{
    font-weight: bold;
    font-size: 18px;
    color: #000!important;
    text-decoration: none;
}
.sitemapul li a:hover
{
    color: #933790!important;
}
.padtop250
{
    padding-top: 250px;
}
.text-center
{
    text-align: center;
}


/*********/
#tb-slider img
{
    width: 100%;
    height: 734px;
}
.home-about .tb-about-img img
{
 width: 521px;
 height: 315px;
}
.home-about .tb-about-img-2 img
{
 width: 635px;
 height: 384px;
}
.tb-banner-img img
{
    width: 643px;
    height: 388px;
}
.tb-footer-logo img
{
    width: 416px;
    height: 180px;
}
.about-image .tb-began-img img, .design-image .tb-began-img img
{
    width: 521px;
    height: 640px;
}
.about-image1 .tb-spring-collection-img img
{
    width: 295px;
    height: 402px;
}
.design-image1 .tb-spring-collection-img img, .services-image1 .tb-spring-collection-img img
{
    width: 294px;
    height: 176px;
}
.services-image img
{
    width: 645px;
    height: 390px;
}
/************************************************************/
@media(max-width: 1199px)
{
    .navbar-brand img
    {
        width: 135px;
        height: 58px;
    }
    #tb-slider img {
        height: 512px;
      }
      .home-about .tb-about-img img {
        width: 354px;
        height: 214px;
      }
      .home-about .tb-about-img-2 img {
        width: 435px;
        height: 263px;
      }
      .tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img
    {
    	width: 233px;
    	height: 233px;
    }
    .tb-banner-img img {
        width: 455px;
        height: 274px;
      }
      .tb-footer-logo img
    {
        width: 283px;
        height: 123px;
    }
    .about-image .tb-began-img img, .design-image .tb-began-img img
    {
        width: 354px;
        height: 435px;
    }
    .about-image1 .tb-spring-collection-img img
    {
        width: 220px;
        height: 300px;
    }
    .design-image1 .tb-spring-collection-img img, .services-image1 .tb-spring-collection-img img
    {
        width: 220px;
        height: 131px;
    }
    .services-image img {
        width: 445px;
        height: 269px;
      }
}
@media(max-width: 1023px)
{
    #tb-slider img {
        height: 384px;
      }
      .home-about .tb-about-img img, .home-about .tb-about-img-2 img {
        width: 332px;
        height: 200px;
      }
      .tb-banner-img img {
        width: 100%;
        height: 388px;
      }
      .about-image .tb-began-img img, .design-image .tb-began-img img {
        width: 269px;
        height: 331px;
      }
      .about-image1 .tb-spring-collection-img img
    {
        width: 160px;
        height: 219px;
    }
    .design-image1 .tb-spring-collection-img img, .services-image1 .tb-spring-collection-img img {
        width: 160px;
        height: 96px;
      }
}
@media(max-width: 767px)
{
    #tb-slider img {
        height: 320px;
      }
      .home-about .tb-about-img img, .home-about .tb-about-img-2 img
      {
        width: 445px;
        height: 268px;
      }
      .tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img
    {
    	width: 191px;
    	height: 191px;
    }
    .tb-banner-img img {
         height: 368px;
      }
      .tb-footer-section {
        padding: 50px 0 0;
      }
      .about-image .tb-began-img img, .design-image .tb-began-img img {
        width: 360px;
        height: 442px;
      }
      .about-image1 .tb-spring-collection-img img {
        width: 276px;
        height: 376px;
      }
      .about-image1 p
      {
        text-align: left;
      }
      .tb-spring-collection-section .tb-spring-collection-img-section .tb-spring-collection-img.tb-img1 {
        margin: 0 0 35px 0;
      }
      .design-image1 .tb-spring-collection-img img, .services-image1 .tb-spring-collection-img img
      {
        width: 283px;
        height: 170px;
      }
}
@media (max-width: 639px) {
    #tb-slider img {
      height: 240px;
    }
    .home-about .tb-about-img img, .home-about .tb-about-img-2 img
    {
        width: 437px;
        height: 264px;
    }
    .tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img
    {
        width: 450px;
        height: 450px;
    }
    .tb-banner-img img {
        height: 271px;
      }
      .about-image1 .tb-spring-collection-img img {
        width: 165px;
        height: 225px;
      }
      .design-image1 .tb-spring-collection-img img, .services-image1 .tb-spring-collection-img img {
        width: 125px;
        height: 74px;
      }
      .services-image img {
        width: 100%;
        height: 266px;
      }
  }
  @media (max-width: 479px) {
    #tb-slider img {
      height: 180px;
    }
    .home-about .tb-about-img img, .home-about .tb-about-img-2 img
    {
        width: 100%;
        height: 180px;
    }
    .tb-about-section .tb-about-content .tb-about-img img, .tb-about-section .tb-about-content .tb-about-img-2 img
    {
        margin: 0 auto;
        display: block;
    }
    .tb-gallery-section .tb-gallery-img-section .tb-gallery-img-hover .tb-gallery-img {
        width: 290px;
        height: 290px;
        margin: 0 auto;
        display: block;
      }
      .tb-banner-img img {
        height: 180px;
      }
      .tb-footer-logo img {
        width: 236px;
        height: 102px;
      }
      .about-image .tb-began-img img, .design-image .tb-began-img img {
        width: 270px;
        height: 331px;
      }
      .about-image1 .tb-spring-collection-img img
      {
        width: 127px;
        height: 200px;
      }
      .services-image img {
        width: 100%;
        height: 180px;
      }
      .sitemapul
      {
        width: 100%;
      }
  }