/*  =============== UNIVERSAL CSS  =============== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus-visible {
    border: none;
    outline: none;
}

::selection {
    background: #ffe470;
    color: #111111;
}

.tb-about-img img::selection,
.tb-about-content .tb-section-title::selection,
.tb-about-section-detail::selection {
    background: #ebb100;
}


/*  =============== DEFAULT CSS  =============== */
html {
    scroll-behavior: smooth;
}

body {
    color: #111111;
}

p {
    font: 400 18px/30px 'Nanum Gothic', 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;
}


/* =============== BACK TO TOP =============== */
#return-to-top {
    position: fixed;
    bottom: 40px;
    right: 45px;
    background: #111111;
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    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: #ffffff;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 46px;
    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;
}

#return-to-top:hover,
#return-to-top:focus,
#return-to-top:active {
    background: #ffe470;
}

#return-to-top:hover i,
#return-to-top:focus i,
#return-to-top:active i {
    color: #111111;
}

@media (max-width: 480px) {

    #return-to-top {
        bottom: 20px;
        right: 25px;
        width: 40px;
        height: 40px;
    }

    #return-to-top i {
        font-size: 14px;
        line-height: 36px;
    }

}


/*  =============== COMMON CSS  =============== */
.tb-common-btn {
    text-transform: uppercase;
    font: 700 16px/18px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    background: #ffe470;
    color: #111111;
    border: none;
    padding: 16px 30px;
    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;
    text-transform: uppercase;
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    margin: 0 0 40px;
}

#tb-services,
#tb-gallery,
#tb-blog {
    margin: -198px 0 0;
    padding: 98px 0 0;
}

.tb-section-padding {
    padding: 100px 0 0;
}

@media (max-width: 1399px) {

    .tb-section-title {
        font-size: 54px;
        line-height: 56px;
    }

}


@media (max-width: 1299px) {

    #tb-services,
    #tb-gallery,
    #tb-blog {
        margin: -160px 0 0;
        padding: 80px 0 0;
    }

    .tb-section-padding {
        padding: 80px 0 0;
    }

    .tb-section-title {
        font-size: 50px;
        line-height: 52px;
    }

}


@media (max-width: 1199px) {

    #tb-services,
    #tb-gallery,
    #tb-blog {
        margin: -120px 0 0;
        padding: 60px 0 0;
    }

    .tb-common-btn {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-section-title {
        margin: 0 0 20px;
    }

}


@media (max-width: 991px) {

    #tb-services,
    #tb-gallery,
    #tb-blog {
        margin: -38px 0 0;
        padding: 38px 0 0;
    }

    .tb-section-padding {
        padding: 0;
    }

    .tb-section-title {
        font-size: 40px;
        line-height: 42px;
    }

}


@media (max-width: 767px) {

    .tb-common-btn {
        padding: 14px 25px;
    }

}


@media (max-width: 575px) {

    .tb-section-title {
        font-size: 35px;
        line-height: 37px;
    }

}


@media (max-width: 480px) {

    #tb-services,
    #tb-gallery,
    #tb-blog {
        margin: -18px 0 0;
        padding: 18px 0 0;
    }

    .tb-section-padding {
        padding: 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;
    }

}






/* ? ============================== HOME PAGE ============================== */
/*  =============== 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;
}


/*  =============== NAVBAR SECTION =============== */
header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.16);
    z-index: 999;
}

header.tb-navscroll {
    background: #111111;
}

.navbar {
    padding: 10px 0;
    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: #ffffff;
    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 .icon-bar:last-child {
    margin: 0;
}

header nav .navbar-toggler,
header nav .navbar-toggler:hover,
header nav .navbar-toggler:focus,
header nav .navbar-toggler:active {
    box-shadow: none;
}

header nav ul li a {
    color: #ffffff !important;
    font: 700 16px/18px 'Nanum Gothic', Helvetica, sans-serif !important;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    padding: 10px 22px !important;
    margin: 0 10px 0 0;
    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: #ffe470 !important;
    color: #111111 !important;
}


@media (max-width: 1199px) {


    header nav ul li a {
        font-size: 14px;
        line-height: 16px;
        padding: 8px 16px !important;
    }

}


@media (max-width: 991px) {

    header {
        position: static;
        background: #111111;
        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: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}

    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: 3;
        background: #111111;
    }

    header nav .navbar-toggler {
        position: absolute;
        left: 0;
        border: none;
    }

    header nav .navbar-toggler i {
        font-size: 28px;
        line-height: 30px;
        color: #ffffff;
    }

    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;
    }

}


@media (max-width: 575px) {

    header nav .navbar-brand {
        width: 150px;
    }

}


/*  =============== SLIDER SECTION  =============== */
#tb-slider {
    overflow: hidden;
}

.tb-slider-section {
    position: relative;
    z-index: 2;
}

.tb-slider-section::after {
    content: '';
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background-image: url('../image/about-us-shape.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.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: 50%;
    height: 355px;
    color: #ffffff;
    z-index: 1;
}

.tb-slider-section .tb-slider-content .tb-slider-title {
    font: 600 100px/102px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.tb-slider-section .tb-slider-content .tb-slider-detail {
    font: 400 17px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 35px;
    padding: 0 120px 0 0;
}

.tb-slider-section .tb-slider-content .tb-common-btn:hover,
.tb-slider-section .tb-slider-content .tb-common-btn:focus,
.tb-slider-section .tb-slider-content .tb-common-btn:active {
    background: #ffffff;
    color: #111111;
}

.tb-slider-section .carousel-control-prev-icon,
.tb-slider-section .carousel-control-next-icon {
    background-image: none !important;
}

.tb-slider-section .carousel-control-prev,
.tb-slider-section .carousel-control-next {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    color: #000000;
    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: #ffe470;
}

.tb-slider-section .carousel-control-prev i,
.tb-slider-section .carousel-control-next i {
    line-height: 32px;
    text-align: center;
    font-size: 24px;
    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;
}


@media (max-width: 1699px) {

    .tb-slider-section .tb-slider-content {
        left: 8%;
        width: 45%;
        height: 365px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 90px;
        line-height: 92px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 94px 0 0;
    }

}


@media (max-width: 1599px) {

    .tb-slider-section .tb-slider-content {
        left: 8%;
        width: 44%;
        height: 345px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 80px;
        line-height: 82px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 37px 0 0;
    }

}


@media (max-width: 1499px) {

    .tb-slider-section .tb-slider-content {
        height: 296px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 68px;
        line-height: 70px;
        margin: 0 0 5px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        font-size: 16px;
        line-height: 25px;
        padding: 0 108px 0 0;
        margin: 0 0 25px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 42px;
        height: 42px;
    }

}


@media (max-width: 1399px) {

    .tb-slider-section .tb-slider-content {
        left: 9%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        padding: 0 59px 0 0;
    }

}


@media (max-width: 1299px) {

    .tb-slider-section::after {
        bottom: -40px;
    }

    .tb-slider-section .tb-slider-content {
        left: 9%;
        width: 43%;
        height: 280px;
    }

    .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;
    }

}


@media (max-width: 1199px) {

    .tb-slider-section::after {
        bottom: -45px;
    }

    .tb-slider-section .tb-slider-content {
        left: 11%;
        width: 40%;
        height: 235px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 46px;
        line-height: 48px;
        padding: 0;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        font-size: 14px;
        line-height: 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: 18px;
    }

}


@media (max-width: 991px) {

    .tb-slider-section::after {
        bottom: -60px;
    }

    .tb-slider-section .tb-slider-content {
        height: 330px;
        left: 10%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 42px;
        line-height: 44px;
        margin: 0 0 10px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        margin: 0 0 20px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 38px;
        height: 38px;
        bottom: 20%;
    }

    .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 i,
    .tb-slider-section .carousel-control-next i {
        font-size: 20px;
    }

}


@media (max-width: 767px) {

    .tb-slider-section::after {
        bottom: -75px;
    }

    .tb-slider-section .tb-slider-content {
        height: 205px;
        left: 14%;
        width: 50%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-detail {
        display: none;
    }

    .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;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        bottom: 23%;
    }

}


@media (max-width: 575px) {

    .tb-slider-section::after {
        bottom: -90px;
    }

    .tb-slider-section .tb-slider-content {
        height: 185px;
        width: 48%;
        left: 13%;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-slider-section .tb-slider-content .tb-common-btn {
        padding: 12px 20px;
    }

    .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: 15px;
    }

    .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: 15px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .tb-slider-section .carousel-control-prev i,
    .tb-slider-section .carousel-control-next i {
        font-size: 18px;
        line-height: 31px;
    }

}


@media (max-width: 480px) {

    .tb-slider-section::after {
        bottom: -95px;
    }

    .tb-slider-section .tb-slider-content {
        left: 16%;
        width: 60%;
        height: 170px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-slider-section .tb-slider-content .tb-common-btn {
        font-size: 12px;
        line-height: 14px;
        padding: 10px 15px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 32px;
        height: 32px;
    }

    .tb-slider-section .carousel-control-prev i,
    .tb-slider-section .carousel-control-next i {
        font-size: 14px;
        line-height: 32px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        bottom: 25%;
    }

}


@media (max-width: 360px) {

    .tb-slider-section::after {
        bottom: -105px;
    }

    .tb-slider-section .tb-slider-content {
        left: 17%;
        height: 142px;
    }

    .tb-slider-section .tb-slider-content .tb-slider-title {
        font-size: 23px;
        line-height: 25px;
    }

    .tb-slider-section .carousel-control-prev,
    .tb-slider-section .carousel-control-next {
        width: 30px;
        height: 30px;
    }

}


/*  =============== ABOUT SECTION  =============== */
#tb-about {
    margin: -250px 0 0;
}

#tb-about .tb-section-padding {
    padding: 250px 0 0;
}

.tb-about-section {
    margin: -85px 0 100px;
}

.tb-about-section .tb-about-bg {
    background: #ffe470;
    padding: 0 0 55px;
    position: relative;
}

.tb-about-section .tb-about-bg .tb-about-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tb-about-section .tb-about-bg .tb-about-content .tb-about-img {
    margin: 0 0 25px;
}

.tb-about-section .tb-about-bg .tb-about-content .tb-section-title {
    margin: 0 0 10px;
}

.tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    text-align: center;
    margin: 0 0 20px;
    padding: 0 310px;
}

.tb-about-section .tb-about-bg .tb-about-content .tb-common-btn {
    background: #111111;
    color: #ffffff;
}

.tb-about-section .tb-about-bg .tb-about-content .tb-common-btn:hover,
.tb-about-section .tb-about-bg .tb-about-content .tb-common-btn:focus,
.tb-about-section .tb-about-bg .tb-about-content .tb-common-btn:active {
    background: #ffffff;
    color: #111111;
}

.tb-about-section .tb-about-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 12px;
    background-image: url('../image/about-bottom-img.jpg');
    background-size: 1920px;
    animation: line 40s linear infinite;
    -webkit-animation: line 40s linear infinite;
}

@keyframes line {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1920px 0;
    }
}

@-webkit-keyframes line {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1920px 0;
    }
}


@media (max-width: 1299px) {

    #tb-about {
        margin: -210px 0 0;
    }

    #tb-about .tb-section-padding {
        padding: 100px 0 0;
    }

    .tb-about-section {
        margin: 75px 0 100px;
    }

    .tb-about-section .tb-about-bg {
        padding: 0 0 45px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
        padding: 0 260px;
    }

}


@media (max-width: 1199px) {

    #tb-about {
        margin: -205px 0 0;
    }

    #tb-about .tb-section-padding {
        padding: 200px 0 0;
    }

    .tb-about-section {
        margin: -50px 0 60px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-img {
        margin: 0 0 20px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-section-title {
        margin: 0 0 5px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
        font-size: 14px;
        line-height: 24px;
        padding: 0 200px;
    }

}


@media (max-width: 991px) {

    #tb-about {
        margin: -90px 0 0;
        padding: 0;
    }

    .tb-about-section {
        margin: -152px 0 40px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-img {
        margin: 0 0 15px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-section-title {
        margin: 0 0 2px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
        margin: 0 0 15px;
        padding: 0 100px;
    }

}


@media (max-width: 767px) {

    #tb-about {
        margin: -75px 0 0;
        padding: 0;
    }

    .tb-about-section {
        margin: -155px 0 40px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
        padding: 0 20px;
    }

}


@media (max-width: 575px) {

    #tb-about {
        margin: -60px 0 0;
    }

    .tb-about-section {
        margin: -155px 0 40px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
        padding: 0 10px;
    }

}


@media (max-width: 480px) {

    #tb-about {
        margin: -55px 0 0;
    }

    .tb-about-section {
        margin: -160px 0 40px;
    }

    .tb-about-section .tb-about-bg {
        padding: 0 0 35px;
    }

    .tb-about-section .tb-about-bg .tb-about-content .tb-about-section-detail {
        padding: 0;
    }

}


@media (max-width: 360px) {

    #tb-about {
        margin: -45px 0 0;
    }

    .tb-about-section {
        margin: -170px 0 40px;
    }

}


/*  =============== SERVICES SECTION  =============== */
.tb-services-section {
    margin: 0 0 100px;
}

.tb-services-section .tb-services-card {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
    text-align: center;
    overflow: hidden;
}

.tb-services-section .tb-services-card.tb-card2,
.tb-services-section .tb-services-card.tb-card4 {
    margin: 50px 0 0;
}

.tb-services-section .tb-services-card .tb-services-icon {
    width: 95px;
    height: 95px;
    background: #ffe470;
    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;
    margin: 0 auto 25px;
    color: #111111;
    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: 60px;
    line-height: 66px;
    width: 60px;
}

.tb-services-section .tb-services-card.tb-card2 .tb-services-icon i {
    font-size: 55px;
    line-height: 61px;
    width: 55px;
}

.tb-services-section .tb-services-card.tb-card3 .tb-services-icon i {
    font-size: 50px;
    line-height: 55px;
    width: 50px;
}

.tb-services-section .tb-services-card.tb-card4 .tb-services-icon i {
    font-size: 45px;
    line-height: 50px;
    width: 45px;
}

.tb-services-section .tb-services-card .tb-services-icon i {
    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-icon i,
.tb-services-section .tb-services-card:focus .tb-services-icon i,
.tb-services-section .tb-services-card:active .tb-services-icon i {
    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-content {
    position: relative;
    z-index: 1;
}

.tb-services-section .tb-services-card .tb-services-card-content .tb-services-card-title {
    font: 500 30px/32px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    color: #111111;
    margin: 0 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-services-section .tb-services-card:hover .tb-services-card-content .tb-services-card-title,
.tb-services-section .tb-services-card:focus .tb-services-card-content .tb-services-card-title,
.tb-services-section .tb-services-card:active .tb-services-card-content .tb-services-card-title {
    color: #ebb100;
}

.tb-services-section .tb-services-card .tb-services-card-content .tb-services-card-detail {
    font: 400 16px/28px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}


@media (max-width: 1499px) {

    .tb-services-section .tb-services-card {
        padding: 25px;
    }

    .tb-services-section .tb-services-card .tb-services-icon {
        margin: 0 auto 20px;
    }

}


@media (max-width: 1399px) {

    .tb-services-section .tb-services-card .tb-services-card-content .tb-services-card-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-services-section .tb-services-card .tb-services-card-content .tb-services-card-detail {
        font-size: 14px;
        line-height: 25px;
    }

}


@media (max-width: 1299px) {

    .tb-services-section {
        margin: 0 0 80px;
    }

}


@media (max-width: 1199px) {

    .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;
    }

    .tb-services-section .tb-services-card.tb-card4 {
        margin: 0;
    }

    .tb-services-section .tb-services-card .tb-services-icon {
        width: 85px;
        height: 85px;
        margin: 0 auto 15px;
    }

    .tb-services-section .tb-services-card.tb-card1 .tb-services-icon i {
        font-size: 55px;
        line-height: 61px;
        width: 55px;
    }

    .tb-services-section .tb-services-card.tb-card2 .tb-services-icon i {
        font-size: 50px;
        line-height: 55px;
        width: 50px;
    }

    .tb-services-section .tb-services-card.tb-card3 .tb-services-icon i {
        font-size: 45px;
        line-height: 50px;
        width: 45px;
    }

    .tb-services-section .tb-services-card.tb-card4 .tb-services-icon i {
        font-size: 40px;
        line-height: 44px;
        width: 40px;
    }

}


@media (max-width: 991px) {

    .tb-services-section {
        margin: 0 0 40px;
    }

}


@media (max-width: 767px) {

    .tb-services-section .tb-services-card .tb-services-card-content .tb-services-card-title {
        font-size: 24px;
        line-height: 26px;
    }

}


@media (max-width: 575px) {

    .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;
    }

}


/* =============== FUTURE TOOLS SECTION =============== */
.tb-future-tools-section {
    margin: 0 0 100px;
}

.tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
    font: 600 100px/102px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-semititle {
    font: 600 30px/32px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    margin: 0 0 15px;
}

.tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 35px;
}

.tb-future-tools-section .tb-future-tools-section-img {
    margin: 10px 0 auto -50px;
}

.tb-future-tools-section .tb-future-tools-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-future-tools-section:hover .tb-future-tools-section-img img,
.tb-future-tools-section:focus .tb-future-tools-section-img img,
.tb-future-tools-section:active .tb-future-tools-section-img img {
    transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
}


@media (max-width: 1699px) {

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 90px;
        line-height: 92px;
        padding: 0 60px 0 0;
    }

}


@media (max-width: 1599px) {

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 80px;
        line-height: 82px;
        padding: 0 130px 0 0;
    }

}


@media (max-width: 1499px) {

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 68px;
        line-height: 70px;
        padding: 0 180px 0 0;
        margin: 0 0 5px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-semititle {
        font-size: 24px;
        line-height: 26px;
        margin: 0 0 10px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-detail {
        font-size: 16px;
        line-height: 25px;
        margin: 0 0 25px;
    }

}


@media (max-width: 1299px) {

    .tb-future-tools-section {
        margin: 0 0 80px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 60px;
        line-height: 62px;
    }

}


@media (max-width: 1199px) {

    .tb-future-tools-section {
        margin: 0 0 60px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 46px;
        line-height: 48px;
        padding: 0 130px 0 0;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-semititle {
        font-size: 22px;
        line-height: 24px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-detail {
        font-size: 14px;
        line-height: 20px;
    }

}


@media (max-width: 991px) {

    .tb-future-tools-section {
        margin: 0 0 40px;
    }

    .tb-future-tools-section br {
        display: none;
    }

    .tb-future-tools-section .tb-future-tools-section-content {
        text-align: center;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 42px;
        line-height: 44px;
        padding: 0;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-detail {
        margin: 0 0 20px;
    }

    .tb-future-tools-section .tb-future-tools-section-img {
        margin: 0 auto 30px;
    }

}


@media (max-width: 575px) {

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 35px;
        line-height: 37px;
        margin: 0 0 5px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-semititle {
        font-size: 18px;
        line-height: 20px;
        margin: 0 0 8px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-detail {
        margin: 0 0 15px;
    }

}


@media (max-width: 480px) {

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-semititle {
        margin: 0 0 5px;
    }

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-detail {
        margin: 0 0 10px;
    }

}


@media (max-width: 360px) {

    .tb-future-tools-section .tb-future-tools-section-content .tb-future-tools-section-title {
        margin: 0 0 5px;
    }

}


/*  =============== OUR GALLERY SECTION  =============== */
.tb-gallery-section {
    margin: 0 0 100px;
}

.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 {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.tb-gallery-section .owl-carousel .item .tb-gallery-img {
    margin: 0 0 30px;
}

.tb-gallery-section .tb-gallery-img-section .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::before,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img:focus::before,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img:active::before {
    background: rgba(0, 0, 0, 0.6);
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img img {
    width: 100%;
    height: 100%;
    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 img,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img:focus img,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img: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 .tb-gallery-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    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 .tb-gallery-search-icon:hover,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img .tb-gallery-search-icon:focus,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img .tb-gallery-search-icon:active {
    background: #ffe470;
}

.tb-gallery-section .tb-gallery-img-section .tb-gallery-img:hover .tb-gallery-search-icon,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img:focus .tb-gallery-search-icon,
.tb-gallery-section .tb-gallery-img-section .tb-gallery-img:active .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 .tb-gallery-section-btn {
    text-align: center;
}


@media (max-width: 1499px) {

    .tb-gallery-section .tb-gallery-section-detail {
        margin: 0 0 35px;
    }

}


@media (max-width: 1299px) {

    .tb-gallery-section {
        margin: 0 0 80px;
    }

}


@media (max-width: 1199px) {

    .tb-gallery-section {
        margin: 0 0 60px;
    }

    .tb-gallery-section .tb-gallery-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 40px;
    }

    .tb-gallery-section .tb-gallery-img-section .item {
        margin: 0 10px;
    }

    .tb-gallery-section .owl-carousel .item .tb-gallery-img {
        margin: 0 0 15px;
    }

}


@media (max-width: 991px) {

    .tb-gallery-section {
        margin: 0 0 40px;
    }

    .tb-gallery-section .tb-gallery-section-detail {
        margin: 0 0 30px;
    }

}


@media (max-width: 767px) {

    .tb-gallery-section .tb-gallery-section-detail {
        margin: 0 0 20px;
    }

    .tb-gallery-section .tb-gallery-img-section .tb-gallery-img::before {
        background: rgba(0, 0, 0, 0.5);
    }

    .tb-gallery-section .tb-gallery-img-section .tb-gallery-img .tb-gallery-search-icon {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: scale(1);
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

}


@media (max-width: 480px) {

    .tb-gallery-section .tb-gallery-section-detail {
        margin: 0 0 20px;
    }

    .tb-gallery-section .tb-gallery-img-section .item {
        margin: 0;
    }

    .tb-gallery-section .owl-carousel .item .tb-gallery-img {
        margin: 0 0 10px;
    }

}


/*  =============== TESTIMONIAL SECTION  =============== */
.tb-testimonial-section {
    background-image: url('../image/testimonial-bg-img.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    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 .tb-testimonial-card {
    text-align: center;
    background: #ffffff;
    clip-path: polygon(100% 0%, 100% 100%, 50% 88%, 0% 100%, 0% 50%, 0% 0%);
    padding: 50px 40px;
    box-shadow: 1px 10px 17.64px 0.36px rgba(37, 37, 37, 0.1);
}

.tb-testimonial-section .tb-testimonial-card-section .owl-item.center .item .tb-testimonial-card {
    background: #ffe470;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin: 0 0 20px;
}

.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: 0 0 20px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review-star .tb-rating-star {
    color: #111111;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-name {
    font: 500 26px/28px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-states {
    font: 400 14px/16px 'Nanum Gothic', 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 i {
    margin: 0 3px;
}

.tb-testimonial-section .tb-testimonial-card-section .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: -20px auto 0;
}

.tb-testimonial-section .owl-carousel .owl-dots.disabled {
    display: block !important;
}

.tb-testimonial-section .owl-carousel .owl-dots .owl-dot span {
    position: relative;
    background: #ef9800;
    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: #001111;
}

.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 #001111;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}


@media (max-width: 1499px) {

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        padding: 40px 30px 45px;
    }

}


@media (max-width: 1299px) {

    .tb-testimonial-section {
        padding: 80px 0 30px;
        margin: 0 0 80px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        padding: 30px 20px 40px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-img {
        width: 80px;
        height: 80px;
    }

}


@media (max-width: 1199px) {

    .tb-testimonial-section {
        padding: 60px 15px;
        margin: 0 0 60px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        padding: 20px 20px 42px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card .tb-customer-review {
        font-size: 14px;
        line-height: 24px;
    }

}


@media (max-width: 991px) {

    .tb-testimonial-section {
        padding: 40px 0 30px;
        margin: 0 0 40px;
    }

    .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;
    }

}


@media (max-width: 767px) {

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        clip-path: polygon(100% 0%, 100% 100%, 50% 85%, 0% 100%, 0% 50%, 0% 0%);
        margin: 0;
        padding: 30px 30px 45px;
    }

}


@media (max-width: 575px) {

    .tb-testimonial-section {
        padding: 40px 0 10px;
    }

    .tb-testimonial-section .tb-testimonial-card-section {
        margin: 10px 0;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        padding: 20px 20px 45px;
    }

    .tb-testimonial-section .owl-carousel .owl-dots {
        margin: 10px 0 0;
    }

}


@media (max-width: 480px) {

    .tb-testimonial-section {
        padding: 30px 0 10px;
    }

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        padding: 20px 20px 48px;
    }

    .tb-testimonial-section .owl-carousel .owl-dots {
        margin: 0;
    }

}


@media (max-width: 360px) {

    .tb-testimonial-section .tb-testimonial-card-section .tb-testimonial-card {
        padding: 15px 15px 48px;
    }

}


/*  =============== OUR NEWS & ARTICLES SECTION  =============== */
.tb-news-section {
    margin: 0 0 100px;
    padding: 0;
}

.tb-news-section .tb-news-card-section .tb-news-card {
    position: relative;
    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 {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: auto;
    vertical-align: top;
}

.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.6);
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-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;
}

.tb-news-section .tb-news-card-section .tb-news-card:hover .tb-news-card-img img,
.tb-news-section .tb-news-card-section .tb-news-card:focus .tb-news-card-img img,
.tb-news-section .tb-news-card-section .tb-news-card:active .tb-news-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-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;
    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: #ffe470;
}

.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 {
    padding: 28px;
    border: 1px solid #ececec;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-date {
    font: 800 16px/18px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #ebb100;
    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-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
    font: 500 36px/38px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 5px;
    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 'Nanum Gothic', 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-news-card-btn {
    display: inline-block;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn {
    background: #111111;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn:hover,
.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn:focus,
.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn:active {
    background: #ffe470;
    color: #111111;
}

.tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .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 .owl-nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: transparent !important;
    margin: 0;
}

.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: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !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-news-section .tb-news-card-section .owl-nav .owl-prev {
    left: -100px;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-next {
    right: -100px;
}

.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;
    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 .owl-nav .owl-next::before {
    content: '\ea94' !important;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-prev:hover::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev:focus::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev:active::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next:hover::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next:focus::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next:active::before {
    color: #111111;
}

.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled:hover::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled:focus::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-prev.disabled:active::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled:hover::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled:focus::before,
.tb-news-section .tb-news-card-section .owl-nav .owl-next.disabled:active::before {
    color: #ffffff;
}


.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: #ffe470 !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 {
    background: #111111 !important;
}


@media (max-width: 1699px) {

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev {
        left: -60px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        right: -60px;
    }

}


@media (max-width: 1599px) {

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev {
        left: -4px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        right: -4px;
    }

}


@media (max-width: 1499px) {

    .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-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: 32px;
        line-height: 34px;
    }

    .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:after {
        width: 100px;
        height: 85px;
    }

}


@media (max-width: 1299px) {

    .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: 30px;
        line-height: 32px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn {
        padding: 15px 25px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn i {
        font-size: 18px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev {
        left: -2px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        right: -2px;
    }

}


@media (max-width: 1199px) {

    .tb-news-section {
        margin: 0 0 60px;
    }

    .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-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn {
        padding: 14px 20px;
    }

    .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;
    }

}


@media (max-width: 991px) {

    .tb-news-section {
        margin: 0 0 40px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 26px;
        line-height: 28px;
    }

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-btn .tb-common-btn {
        padding: 12px 18px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev {
        left: -1px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        right: -1px;
    }

}


@media (max-width: 767px) {

    .tb-news-section {
        padding: 0 0 40px;
    }

    .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 .item {
        margin: 0;
    }

    .tb-news-section .tb-news-card-section .owl-nav {
        margin: 15px 0 0;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev,
    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        top: auto;
        bottom: -40px;
        justify-content: center;
        align-items: end;
        left: 0;
        right: 0;
        margin: auto;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-prev {
        left: -50px;
    }

    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        right: -50px;
    }

}


@media (max-width: 575px) {

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content .tb-news-card-title {
        font-size: 26px;
        line-height: 28px;
    }

    .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;
    }

}


@media (max-width: 480px) {

    .tb-news-section {
        padding: 0 0 35px;
    }

    .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-content .tb-news-card-title {
        font-size: 24px;
        line-height: 22px;
    }

    .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 .owl-nav .owl-prev,
    .tb-news-section .tb-news-card-section .owl-nav .owl-next {
        bottom: -35px;
    }

}


@media (max-width: 360px) {

    .tb-news-section .tb-news-card-section .tb-news-card .tb-news-card-content {
        padding: 15px;
    }

}


/*  =============== 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;
}

.tb-brand-logo-section .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: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !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;
    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-brand-logo-section .owl-nav .owl-next::before {
    content: '\ea94' !important;
}

.tb-brand-logo-section .owl-nav .owl-prev:hover::before,
.tb-brand-logo-section .owl-nav .owl-prev:focus::before,
.tb-brand-logo-section .owl-nav .owl-prev:active::before,
.tb-brand-logo-section .owl-nav .owl-next:hover::before,
.tb-brand-logo-section .owl-nav .owl-next:focus::before,
.tb-brand-logo-section .owl-nav .owl-next:active::before {
    color: #111111;
}

.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: #ffe470 !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;
}

.tb-brand-logo-section .owl-nav .owl-prev.disabled::before,
.tb-brand-logo-section .owl-nav .owl-next.disabled::before {
    color: #ffffff !important;
}


@media (max-width: 1299px) {

    .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;
    }

}


@media (max-width: 1199px) {

    .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;
    }

}


@media (max-width: 991px) {

    .tb-brand-logo-section {
        margin: 0 0 40px;
    }

}


@media (max-width: 767px) {

    .tb-brand-logo-section .owl-nav {
        padding: 12px;
        margin: 20px 0 0;
    }

    .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;
    }

}


@media (max-width: 480px) {

    .tb-brand-logo-section .owl-carousel {
        padding: 0 0 40px;
    }

    .tb-brand-logo-section .owl-nav {
        margin: 5px 0 0;
        padding: 0;
    }

}


@media (max-width: 360px) {

    .tb-brand-logo-section .owl-carousel .owl-item {
        width: 100%;
    }

}


/*  =============== EMAIL SECTION  =============== */
.tb-email-section {
    margin: 0 0 100px;
}

.tb-email-section .tb-email-bg {
    background-image: url('../image/email-section-bg-img.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 80px;
    position: relative;
}

.tb-email-section .tb-email-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.tb-email-section .tb-email-bg .tb-email-content {
    display: flex;
    justify-content: start;
    align-items: center;
    color: #ffffff;
}

.tb-email-section .tb-email-bg .tb-email-content i {
    font-size: 50px;
    line-height: 52px;
    margin: 0 15px 0 0;
}

.tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
    font: 500 50px/52px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tb-email-section .tb-email-bg .tb-input-box {
    width: 100%;
    position: relative;
    background: #ffffff;
}

.tb-email-section .tb-email-bg .tb-input-box input {
    border: none;
    background: transparent;
    font: 400 15px/17px 'Nanum Gothic', 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 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #111111;
    opacity: 1;
}

.tb-email-section .tb-email-bg .tb-input-box .tb-common-btn {
    font: 700 15px/17px 'Nanum Gothic', 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:hover,
.tb-email-section .tb-email-bg .tb-input-box .tb-common-btn:focus,
.tb-email-section .tb-email-bg .tb-input-box .tb-common-btn:active {
    background: #ebb100;
}

.tb-email-section .tb-email-bg .tb-input-box .tb-common-btn i {
    display: none;
    font-size: 20px;
}


@media (max-width: 1699px) {

    .tb-email-section .tb-email-bg {
        padding: 100px 70px;
    }

}


@media (max-width: 1499px) {

    .tb-email-section .tb-email-bg {
        padding: 94px 60px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 46px;
        line-height: 48px;
    }

}


@media (max-width: 1399px) {

    .tb-email-section .tb-email-bg {
        padding: 86px 50px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 42px;
        line-height: 44px;
    }

}


@media (max-width: 1299px) {

    .tb-email-section {
        margin: 0 0 80px;
    }

    .tb-email-section .tb-email-bg {
        padding: 76px 50px;
    }

}


@media (max-width: 1199px) {

    .tb-email-section {
        margin: 0 0 60px;
    }

    .tb-email-section .tb-email-bg {
        padding: 45px 40px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 36px;
        line-height: 38px;
    }

}


@media (max-width: 991px) {

    .tb-email-section {
        margin: 0 0 40px;
    }

    .tb-email-section .tb-email-bg {
        padding: 25px;
    }

    .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 i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 40px;
        line-height: 42px;
    }

}


@media (max-width: 575px) {

    .tb-email-section .tb-email-bg .tb-email-content i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 34px;
        line-height: 36px;
    }

}


@media (max-width: 480px) {

    .tb-email-section {
        margin: 0 0 20px;
    }

    .tb-email-section .tb-email-bg {
        padding: 20px;
    }

    .tb-email-section .tb-email-bg .tb-email-content {
        margin: 0 0 10px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 25px;
        line-height: 27px;
    }

    .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;
    }

}


@media (max-width: 360px) {

    .tb-email-section .tb-email-bg {
        padding: 15px;
    }

    .tb-email-section .tb-email-bg .tb-email-content i,
    .tb-email-section .tb-email-bg .tb-email-content .tb-email-section-title {
        font-size: 20px;
        line-height: 22px;
    }

}


/*  =============== FOOTER SECTION  =============== */
.tb-footer-section {
    background: #111111;
    padding: 85px 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 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    color: #cccccc;
    padding: 0 92px 0 0;
}

.tb-footer-section .tb-footer-section-title h5 {
    font: 400 36px/38px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin: 25px 0;
}

.tb-footer-section ul li {
    margin: 0 0 20px;
}

.tb-footer-section ul li a {
    display: flex;
    align-items: center;
    font: 400 13px/15px 'Nanum Gothic', 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: #ffe470;
}

.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: #ffe470;
}

.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: 400 24px/26px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.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 'Nanum Gothic', 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 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: #ffe470;
}

.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.6);
}

.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: 800 14px/16px 'Nanum Gothic', 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: #ffe470;
}

.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 (max-width: 1699px) {

    .tb-footer-section .tb-footer-content-detail {
        padding: 0;
    }

}


@media (max-width: 1499px) {

    .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: 1299px) {

    .tb-footer-section {
        padding: 65px 0 0;
    }


    .tb-footer-section .tb-footer-section-title h5 {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-footer-section .tb-footer-detail i {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-footer-section .tb-footer-detail .tb-footer-detail-content .tb-footer-detail-title {
        font-size: 20px;
        line-height: 22px;
    }

}


@media (max-width: 1199px) {

    .tb-footer-section {
        padding: 45px 0 0;
    }

    .tb-footer-section .tb-footer-content {
        margin: 0 0 40px 0;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        margin: 20px 0;
    }

}


@media (min-width:992px) {
    .tb-footer-section-body {
        display: inline-block !important;
    }
}


@media (max-width: 991px) {

    .tb-footer-section {
        padding: 35px 0 0;
    }

    .tb-footer-section .tb-footer-content {
        margin: 0 0 30px 0;
    }

    .tb-footer-section .tb-footer-logo {
        justify-content: center;
        display: flex;
    }

    .tb-footer-section .tb-footer-col {
        padding: 0;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        font-size: 26px;
        line-height: 28px;
        margin: 0;
        user-select: none;
    }

    .tb-footer-section .tb-footer-section-body {
        padding: 10px;
        margin: 0 0 10px;
    }

    .tb-footer-section .tb-footer-content-detail {
        font-size: 13px;
        line-height: 23px;
        text-align: center;
        padding: 0 100px;
        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;
        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;
    }

}


@media (max-width: 767px) {

    .tb-footer-section .tb-footer-section-title {
        padding: 12px;
    }

    .tb-footer-section .tb-footer-content-detail {
        padding: 0 50px;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        font-size: 24px;
        line-height: 26px;
    }

    .tb-footer-section .tb-footer-detail i {
        font-size: 26px;
        line-height: 28px;
    }

    .tb-footer-section .tb-footer-detail .tb-footer-detail-content .tb-footer-detail-title {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-footer-section .tb-footer-img::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .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: 575px) {

    .tb-footer-section .tb-footer-content-detail {
        padding: 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;
    }

    .tb-footer-section .tb-footer-section-body {
        padding: 10px;
    }

}


@media (max-width: 480px) {

    .tb-footer-section {
        padding: 20px 0 0;
    }

    .tb-footer-section .tb-footer-content {
        margin: 0 0 20px 0;
    }

    .tb-footer-section .tb-footer-section-title h5 {
        font-size: 22px;
        line-height: 24px;
    }

    .tb-footer-section .tb-footer-detail {
        margin: 0 0 15px;
    }

}


@media (max-width: 360px) {

    .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 ============================== */
/* =============== STANDERD SERVICES SECTION =============== */
.tb-standerd-services-section {
    margin: 0 0 100px;
}

.tb-standerd-services-section .tb-standerd-services-section-title {
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    text-align: center;
}

.tb-standerd-services-section .tb-standerd-services-section-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    padding: 0 100px;
    margin: 0 0 70px;
}

.tb-standerd-services-section .tb-standerd-services-section-content {
    margin: 0 0 100px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-row,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-row,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-column {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    position: relative;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-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-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:hover .tb-standerd-services-section-img::before,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:focus .tb-standerd-services-section-img::before,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:active .tb-standerd-services-section-img::before {
    background: rgba(0, 0, 0, 0.6);
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .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 .tb-standerd-services-section-column:hover .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:focus .tb-standerd-services-section-img img,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column: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-section-column .tb-standerd-services-section-img .tb-standerd-services-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    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-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:hover .tb-standerd-services-section-img .tb-standerd-services-search-icon,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:focus .tb-standerd-services-section-img .tb-standerd-services-search-icon,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:active .tb-standerd-services-section-img .tb-standerd-services-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-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img .tb-standerd-services-search-icon:hover,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img .tb-standerd-services-search-icon:focus,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img .tb-standerd-services-search-icon:active {
    background: #ffe470;
}

.tb-standerd-services-section-content .tb-standerd-services-section-column {
    background: #f5f5f5;
}

.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card {
    padding: 25px;
    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 .tb-standerd-services-icon {
    width: 110px;
    height: 110px;
    background: #ffe470;
    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;
    margin: 0 auto 25px;
    color: #111111;
    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 .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-card.tb-card1 .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card3 .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: 65px;
    font-size: 71px;
}

.tb-standerd-services-section .tb-standerd-services-section-content .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-section-column:hover .tb-standerd-services-card .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:focus .tb-standerd-services-card .tb-standerd-services-icon i,
.tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column:active .tb-standerd-services-card .tb-standerd-services-icon i {
    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-card .tb-standerd-services-card-title {
    font: 500 45px/47px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    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 .tb-standerd-services-card-detail {
    font: 400 16px/28px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}


@media (max-width: 1699px) {

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon {
        margin: 0 auto 15px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        margin: 0 0 5px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-detail {
        font-size: 14px;
        line-height: 25px;
    }

}


@media (max-width: 1499px) {

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 55px;
        line-height: 57px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        margin: 0 0 50px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon {
        width: 90px;
        height: 90px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card1 .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 i {
        font-size: 50px;
        line-height: 55px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card3 .tb-standerd-services-icon i,
    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card4 .tb-standerd-services-icon i {
        font-size: 45px;
        line-height: 50px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        font-size: 35px;
        line-height: 37px;
    }

}


@media (max-width: 1399px) {

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-detail {
        font-size: 13px;
        line-height: 22px;
    }

}


@media (max-width: 1299px) {

    .tb-standerd-services-section {
        margin: 0 0 80px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        margin: 0 0 40px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon {
        width: 90px;
        height: 90px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        font-size: 30px;
        line-height: 32px;
    }

}


@media (max-width: 1199px) {

    .tb-standerd-services-section {
        margin: 0 0 60px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-title {
        font-size: 45px;
        line-height: 47px;
    }

    .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 .tb-standerd-services-card {
        padding: 10px 15px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon {
        margin: 0 auto 10px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        margin: 0;
    }

}


@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 40px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content {
        margin: 0 0 40px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card {
        padding: 25px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon {
        margin: 0 auto 15px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        margin: 0 0 5px;
    }

}


@media (max-width: 767px) {

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-detail {
        padding: 0 20px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img .tb-standerd-services-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-standerd-services-section .tb-standerd-services-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-card-row {
        padding: 0;
        margin: 0;
        overflow: hidden;
        padding: 0 15px;
    }


    .tb-standerd-services-section-content .tb-standerd-services-section-column {
        background: transparent;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-section-column .tb-standerd-services-section-img {
        margin: 0 0 20px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card {
        padding: 0;
        margin: 0 0 30px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card.tb-card4 {
        margin: 0;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-icon {
        margin: 0 auto 15px;
    }

    .tb-standerd-services-section .tb-standerd-services-section-content .tb-standerd-services-card .tb-standerd-services-card-title {
        margin: 0 0 8px;
    }

}


@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-detail {
        margin: 0 0 20px;
        padding: 0;
    }

}

/* =============== OUR TECHNOLOGY SECTION =============== */
.tb-our-technology-section {
    margin: 0 0 100px;
}

.tb-our-technology-section .tb-our-technology-section-content {
    text-align: center;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-semititle {
    font: 800 22px/24px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #ebb100;
    text-transform: capitalize;
    margin: 0 0 20px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-title {
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
    font: 400 17px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 50px;
    padding: 0 330px;
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
    display: inline-block;
    position: relative;
}

.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(0, 0, 0, 0.5);
}

.tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: #ebb100;
    box-shadow: 0px 2px 35px 0px rgba(37, 37, 37, 0.1);
    z-index: -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: #ebb100;
}


@media (max-width: 1499px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-semititle {
        font-size: 18px;
        line-height: 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-title {
        font-size: 55px;
        line-height: 57px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        font-size: 16px;
        line-height: 28px;
    }

}


@media (max-width: 1399px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        padding: 0 280px;
    }

}


@media (max-width: 1299px) {

    .tb-our-technology-section {
        margin: 0 0 80px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        margin: 0 0 40px;
        padding: 0 230px;
    }

}


@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-semititle {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 10px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-title {
        font-size: 45px;
        line-height: 47px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 30px;
        padding: 0 160px;
    }

}


@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-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        padding: 0 50px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
        margin: 0 50px;
    }

}


@media (max-width: 767px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-semititle {
        font-size: 14px;
        line-height: 16px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        margin: 0 0 20px;
        padding: 0;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
        margin: 0 30px;
    }

}


@media (max-width: 575px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
        margin: 0 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img::after {
        top: 15px;
        left: 15px;
    }

    .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;
    }

}


@media (max-width: 480px) {

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-detail {
        margin: 0 0 20px;
    }

    .tb-our-technology-section .tb-our-technology-section-content .tb-our-technology-section-img {
        margin: 0 15px;
    }

}






/* ? ============================== ABOUT US PAGE ============================== */
/* =============== BREAD CRUMB SECTION =============== */
.tb-bread-crumb-section {
    position: relative;
    overflow-x: hidden;
    margin: 0 0 100px;
}

.tb-bread-crumb-section .tb-bread-crumb-img {
    position: relative;
}

.tb-bread-crumb-section .tb-bread-crumb-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.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;
    color: #ffffff;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-bread-crumb-title {
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 5px;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link {
    font: 700 18px/20px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    background: transparent;
    border: none;
    color: #ffe470;
    text-transform: capitalize;
    padding: 0;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a {
    color: #ffffff;
}

.tb-bread-crumb-section .tb-bread-crumb-content .tb-page-link a.tb-other-page-link {
    color: #ffffff;
    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: #ffe470;
}

.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: #ffffff;
}

.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;
    }

}

/* =============== ABOUT PAGE SECTION =============== */
.tb-about-page-section {
    margin: 0 0 125px;
}

.tb-about-page-section .tb-about-page-img-border {
    position: relative;
    display: inline-block;
}

.tb-about-page-section .tb-about-page-img-border::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: -25px;
    bottom: -25px;
    width: auto;
    height: auto;
    background: transparent;
    border: 10px solid #ebb100;
    z-index: -1;
}

.tb-about-page-section .tb-about-page-img {
    display: inline-block;
    overflow: hidden;
}

.tb-about-page-section .tb-about-page-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-about-page-section:hover .tb-about-page-img img,
.tb-about-page-section:focus .tb-about-page-img img,
.tb-about-page-section:active .tb-about-page-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-about-page-section .tb-about-page-section-content {
    padding: 0 0 0 40px;
}

.tb-about-page-section .tb-about-page-section-content .tb-about-icon {
    margin: 0 0 30px;
}

.tb-about-page-section .tb-about-page-section-content .tb-about-page-section-title {
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.tb-about-page-section .tb-about-page-section-content .tb-about-page-section-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 20px;
}

.tb-about-page-section .tb-about-page-section-content .tb-about-page-section-detail.tb-last-paragraph {
    margin: 0;
}


@media (max-width: 1499px) {

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-title {
        font-size: 55px;
        line-height: 57px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-detail {
        font-size: 16px;
        line-height: 28px;
    }

}


@media (max-width: 1299px) {

    .tb-about-page-section {
        margin: 0 0 80px;
    }

    .tb-about-page-section .tb-about-page-section-content {
        padding: 0 0 0 30px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-icon {
        margin: 0 0 20px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-title {
        margin: 0 0 8px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-detail {
        margin: 0 0 15px;
    }

}


@media (max-width: 1199px) {

    .tb-about-page-section {
        margin: 0 0 60px;
    }

    .tb-about-page-section .tb-about-page-section-content {
        padding: 0 0 0 20px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-icon {
        margin: 0 0 15px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-title {
        font-size: 45px;
        line-height: 47px;
        margin: 0 0 5px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-detail {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 10px;
    }

}


@media (max-width: 991px) {

    .tb-about-page-section {
        margin: 0 0 40px;
    }

    .tb-about-page-section .tb-about-page-img-border,
    .tb-about-page-section .tb-about-page-section-content {
        text-align: center;
    }

    .tb-about-page-section .tb-about-page-img-border {
        margin: 0 0 50px -25px;
    }

    .tb-about-page-section .tb-about-page-img-border::after {
        border: 7px solid #ebb100;
        left: 70px;
        right: 25px;
        bottom: -25px;
    }

    .tb-about-page-section .tb-about-page-img-border {
        margin: 0 0 50px 0;
        padding: 0 50px;
    }

    .tb-about-page-section .tb-about-page-section-content {
        padding: 0;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-title {
        font-size: 40px;
        line-height: 42px;
    }

}


@media (max-width: 767px) {

    .tb-about-page-section .tb-about-page-img-border {
        padding: 0 40px;
    }

    .tb-about-page-section .tb-about-page-img-border::after {
        left: 70px;
        right: 15px;
        bottom: -20px;
    }

}


@media (max-width: 575px) {

    .tb-about-page-section .tb-about-page-img-border {
        padding: 0 30px;
    }

    .tb-about-page-section .tb-about-page-img-border::after {
        left: 50px;
        right: 5px;
        bottom: -20px;
    }

    .tb-about-page-section .tb-about-page-section-content .tb-about-page-section-title {
        font-size: 35px;
        line-height: 37px;
    }

}


@media (max-width: 480px) {

    .tb-about-page-section .tb-about-page-img-border {
        padding: 0 10px;
        margin: 0 0 30px 0;
    }

    .tb-about-page-section .tb-about-page-img-border::after {
        left: 35px;
        right: -10px;
        bottom: -15px;
    }

    .tb-about-page-section .tb-about-page-section-title {
        font-size: 30px;
        line-height: 32px;
    }

}


@media (max-width: 360px) {

    .tb-about-page-section .tb-about-page-img-border::after {
        left: 28px;
        right: -8px;
        bottom: -14px;
        top: 20px;
    }

}


/* =============== ABOUT CONTENT SECTION =============== */
.tb-about-content-section {
    margin: 0 0 100px;
}

.tb-about-content-section .tb-about-content-card {
    padding: 0 20px;
    text-align: center;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: #ffffff;
    box-shadow: 0px 0px 17.64px 0.36px rgba(37, 37, 37, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon1 img {
    width: 60px;
    height: 50px;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon2 img {
    width: 50px;
    height: 35px;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon3 img {
    width: 50px;
    height: 50px;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-icon 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-about-content-section .tb-about-content-card:hover .tb-about-content-icon img,
.tb-about-content-section .tb-about-content-card:focus .tb-about-content-icon img,
.tb-about-content-section .tb-about-content-card:active .tb-about-content-icon img {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}

.tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
    font: 500 45px/55px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.tb-about-content-section .tb-about-content-card .tb-about-content-card-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}


@media (max-width: 1499px) {

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon {
        margin: 0 auto 15px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 42px;
        line-height: 52px;
        margin: 0 0 5px;
    }

    .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;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon {
        width: 90px;
        height: 90px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon1 img {
        width: 55px;
        height: 45px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon2 img {
        width: 45px;
        height: 30px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon3 img {
        width: 45px;
        height: 45px;
    }

    .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 .tb-about-content-icon {
        width: 80px;
        height: 80px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon1 img {
        width: 50px;
        height: 40px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon2 img {
        width: 40px;
        height: 25px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-icon.tb-icon3 img {
        width: 40px;
        height: 40px;
    }

    .tb-about-content-section .tb-about-content-card .tb-about-content-card-title {
        font-size: 28px;
        line-height: 34px;
    }

    .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.tb-card1,
    .tb-about-content-section .tb-about-content-card.tb-card2 {
        margin: 0 0 30px;
    }
}


@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::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-card1,
    .tb-about-content-section .tb-about-content-card.tb-card2 {
        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;
}

.tb-spring-collection-section .tb-spring-collection-img {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.tb-spring-collection-section .tb-spring-collection-img::before,
.tb-spring-collection-section .tb-spring-collection-img::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    background: rgba(255, 255, 255, 0.08);
    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-spring-collection-section .tb-spring-collection-img::before {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
}

.tb-spring-collection-section .tb-spring-collection-img::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
}

.tb-spring-collection-section .tb-spring-collection-img.tb-img1:hover::before,
.tb-spring-collection-section .tb-spring-collection-img.tb-img1:focus::before,
.tb-spring-collection-section .tb-spring-collection-img.tb-img1:active::before,
.tb-spring-collection-section .tb-spring-collection-img.tb-img1:hover::after,
.tb-spring-collection-section .tb-spring-collection-img.tb-img1:focus::after,
.tb-spring-collection-section .tb-spring-collection-img.tb-img1:active::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.tb-spring-collection-section .tb-spring-collection-card:hover .tb-spring-collection-img.tb-img2::before,
.tb-spring-collection-section .tb-spring-collection-card:focus .tb-spring-collection-img.tb-img2::before,
.tb-spring-collection-section .tb-spring-collection-card:active .tb-spring-collection-img.tb-img2::before,
.tb-spring-collection-section .tb-spring-collection-card:hover .tb-spring-collection-img.tb-img2::after,
.tb-spring-collection-section .tb-spring-collection-card:focus .tb-spring-collection-img.tb-img2::after,
.tb-spring-collection-section .tb-spring-collection-card:active .tb-spring-collection-img.tb-img2::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.tb-spring-collection-section .tb-spring-collection-img.tb-img2 {
    margin: 0 0 40px;
}

.tb-spring-collection-section .tb-spring-collection-content {
    text-align: center;
    padding: 0 60px;
}

.tb-spring-collection-section .tb-instagram-link {
    font: 800 18px/20px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ebb100;
    margin: 0 0 30px;
}

.tb-spring-collection-section .tb-instagram-link i {
    margin: 0 8px 0 0;
}

.tb-spring-collection-section .tb-spring-collection-title {
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    position: relative;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.tb-spring-collection-section .tb-spring-collection-detail {
    font: 400 17px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 15px;
}

.tb-spring-collection-section .tb-spring-collection-detail.tb-last-para {
    margin: 0;
}


@media (max-width: 1499px) {

    .tb-spring-collection-section .tb-instagram-link {
        font-size: 16px;
        line-height: 18px;
        margin: 0 0 25px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 55px;
        line-height: 57px;
        margin: 0 0 8px;
    }

    .tb-spring-collection-section .tb-spring-collection-detail {
        font-size: 16px;
        line-height: 28px;
        margin: 0 0 8px;
    }

}


@media (max-width: 1399px) {

    .tb-spring-collection-section .tb-spring-collection-img.tb-img2 {
        margin: 0 0 12px;
    }

    .tb-spring-collection-section .tb-instagram-link {
        margin: 0 0 15px;
    }

    .tb-spring-collection-section .tb-spring-collection-detail {
        margin: 0 0 5px;
    }

}


@media (max-width: 1299px) {

    .tb-spring-collection-section {
        margin: 0 0 80px;
    }

    .tb-spring-collection-section .tb-spring-collection-content {
        text-align: center;
        padding: 0 20px;
    }

    .tb-spring-collection-section .tb-instagram-link {
        margin: 0 0 10px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        margin: 0;
    }

}


@media (max-width: 1199px) {

    .tb-spring-collection-section {
        margin: 0 0 60px;
    }

    .tb-spring-collection-section .tb-instagram-link {
        font-size: 13px;
        line-height: 15px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-spring-collection-section .tb-spring-collection-detail {
        font-size: 13px;
        line-height: 22px;
    }

}


@media (max-width: 991px) {

    .tb-spring-collection-section {
        margin: 0 0 40px;
        text-align: center;
    }

    .tb-spring-collection-section .tb-spring-collection-img.tb-img1 {
        margin: 0 0 20px;
    }

    .tb-spring-collection-section .tb-spring-collection-img.tb-img2 {
        margin: 0 0 15px;
    }

    .tb-spring-collection-section .tb-spring-collection-content {
        padding: 0;
    }

    .tb-spring-collection-section .tb-instagram-link {
        margin: 0 0 10px;
    }

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 40px;
        line-height: 42px;
    }

    .tb-spring-collection-section .tb-spring-collection-detail {
        margin: 0 0 8px;
    }

}


@media (max-width: 767px) {

    .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-img-section {
        padding: 0;
        margin: 0 0 30px;
        padding: 20px 0;
        justify-content: center;
    }

}


@media (max-width: 575px) {

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 35px;
        line-height: 37px;
    }

}


@media (max-width: 480px) {

    .tb-spring-collection-section .tb-spring-collection-title {
        font-size: 30px;
        line-height: 32px;
    }

    .tb-spring-collection-section .tb-spring-collection-img-section {
        margin: 0 0 20px;
    }

}






/* ? ============================== GALLERY PAGE ============================== */
/* =============== OUR GALLERY SECTION =============== */
.tb-our-gallery-section {
    margin: 0 0 100px;
}

.tb-our-gallery-section .tb-our-gallery-section-title {
    font: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin: 0 0 5px;
}

.tb-our-gallery-section .tb-our-gallery-section-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0 0 50px;
    padding: 0 100px;
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-col .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-inner-col {
    padding: 0 15px;
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img {
    margin: 0 0 30px;
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img.tb-img7,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img.tb-img8 {
    margin: 0;
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img {
    margin: 0 0 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-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-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img .tb-gallery-section-search-icon:hover,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img .tb-gallery-section-search-icon:focus,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img .tb-gallery-section-search-icon:active {
    background: #ffe470;
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img .tb-gallery-section-search-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #111111;
    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-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img:hover:before,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img:focus:before,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img:active:before {
    background: rgba(0, 0, 0, 0.6);
}

.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img:hover .tb-gallery-section-search-icon,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img:focus .tb-gallery-section-search-icon,
.tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img:active .tb-gallery-section-search-icon {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


@media (max-width: 1499px) {

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 55px;
        line-height: 57px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        margin: 0 0 40px;
    }

}


@media (max-width: 1299px) {

    .tb-our-gallery-section {
        margin: 0 0 80px;
    }

}


@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;
    }

    .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 .tb-our-gallery-section-col {
        padding: 0 10px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img {
        margin: 0 0 15px;
    }

}


@media (max-width: 991px) {

    .tb-our-gallery-section {
        margin: 0 0 40px;
        text-align: center;
    }

    .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 40px;
    }

    .tb-our-gallery-section-inner-col{
        padding: 0 10px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img {
        margin: 0 0 16px;
    }

}


@media (max-width: 767px) {

    .tb-our-gallery-section .tb-our-gallery-section-detail {
        padding: 0 20px;
    }

    .tb-our-gallery-section-content {
        padding: 0 5px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img .tb-gallery-section-search-icon {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

}


@media (max-width: 575px) {

    .tb-our-gallery-section .tb-our-gallery-section-title {
        font-size: 35px;
        line-height: 37px;
    }

    .tb-our-gallery-section-content {
        padding: 0;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img.tb-img7 {
        margin: 0 0 16px;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-col{
        padding: 0 15px;
    }

}

@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;
        padding: 0;
    }

    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img,
    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img.tb-img3,
    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img.tb-img6,
    .tb-our-gallery-section .tb-our-gallery-section-content .tb-our-gallery-section-img.tb-img7 {
        margin: 0 0 10px;
    }

}


@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: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-align: center;
    text-transform: uppercase;
}

.tb-blog-list-section .tb-blog-list-section-detail {
    font: 400 17px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0 0 40px;
    padding: 0 100px;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 {
    border: 1px solid #dedede;
    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: 500 28px/30px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    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-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-post-date {
    font: 800 14px/16px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #ebb100;
    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-recent-post-card-title {
    font: 500 24px/26px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    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 {
    font: 400 14px/22px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #5f5f5f;
}

.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-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 25px 50px;
    z-index: 1;
    text-align: center;
}

.tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
    font: 500 50px/52px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    margin: 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-content .tb-recent-post-img-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
}

.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 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #5f5f5f;
    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: 14px 25px;
}

.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;
    display: inline-block;
    vertical-align: top;
}

.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;
    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: #ffe470;
}

.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 {
    border: 1px solid #dedede;
    padding: 21px 25px;
}

.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: #ebb100;
    display: flex;
    font: 800 15px/17px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    margin: 0 0 25px;
}

.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;
    font-weight: 500;
}

.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: 500 30px/32px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    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: 400 15px/28px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #545454;
    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 .tb-common-btn {
    padding: 14px 25px;
    font-size: 15px;
    line-height: 17px;
}


@media (max-width: 1499px) {

    .tb-blog-list-section .tb-blog-list-section-title {
        font-size: 55px;
        line-height: 57px;
    }

    .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: 26px;
        line-height: 28px;
    }

    .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: 22px;
        line-height: 24px;
        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-content {
        padding: 20px 58px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        font-size: 45px;
        line-height: 47px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-detail {
        font-size: 13px;
        line-height: 25px;
    }

    .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 {
        padding: 26px 25px;
    }

    .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;
    }

    .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: 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-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-card1 .tb-blog-list-card-img .tb-recent-post-img-content {
        padding: 20px 41px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content {
        padding: 13px 12px 13px 25px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        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 .tb-blog-title {
        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-detail {
        margin: 0 0 15px;
    }

}


@media (max-width: 1299px) {

    .tb-blog-list-section {
        margin: 0 0 80px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content {
        padding: 15px 34px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        font-size: 42px;
        line-height: 44px;
    }

    .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 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-title {
        margin: 0 0 3px;
    }

    .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: 13px;
        line-height: 15px;
    }

}


@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;
    }

    .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-content {
        padding: 10px 12px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        font-size: 32px;
        line-height: 34px;
        margin: 0;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-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 {
        padding: 5px 5px 5px 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-date {
        margin: 0 0 8px;
    }

    .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;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card2 .tb-blog-card .tb-blog-card-content .tb-blog-detail {
        margin: 0 0 8px;
    }

    .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: 10px 18px;
    }

}


@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 40px;
    }

    .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 {
        padding: 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: 24px;
        line-height: 26px;
        margin: 0 0 15px;
    }

    .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: 20px;
        line-height: 22px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content {
        padding: 5px 3px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        font-size: 28px;
        line-height: 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-detail {
        font-size: 12px;
        line-height: 14px;
    }

    .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 15px 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-date {
        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-title {
        font-size: 26px;
        line-height: 28px;
        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-detail {
        margin: 0 0 12px;
    }

}


@media (max-width: 767px) {

    .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-detail {
        padding: 0 20px;
    }

    .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-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-content {
        padding: 45px 68px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        font-size: 44px;
        line-height: 46px;
    }

    .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 {
        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-content {
        padding: 35px 60px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        top: 25px;
        font-size: 42px;
        line-height: 44px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-detail {
        font-size: 14px;
        line-height: 20px;
    }

    .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-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-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-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-img {
        width: 160px;
        margin: 0 15px 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: 18px;
        line-height: 20px;
        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-content {
        padding: 20px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-title {
        font-size: 34px;
        line-height: 36px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .tb-recent-post-img-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 {
        padding: 15px;
    }

    .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;
    }

}


@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-detail {
        padding: 0;
    }

    .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-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-blog-list-card-img .tb-recent-post-img-content {
        padding: 20px 30px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-recent-post-card .tb-recent-post-img {
        width: 140px;
    }

    .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: 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: 200px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content {
        padding: 15px;
    }

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-list-section-card1 .tb-blog-list-card-img .tb-recent-post-img-content .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 {
        padding: 10px;
    }

}






/* ? ============================== BLOG DETAILS PAGE ============================== */
/* =============== BLOG DETAILS SECTION =============== */
.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;
    border: 1px solid #dedede;
}

.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: 800 15px/17px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    color: #ebb100;
    display: flex;
    margin: 0 0 25px;
}

.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;
    font-weight: 500;
    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: 500 30px/32px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    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 14px/22px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.2px;
    color: #5f5f5f;
    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: 28px;
        line-height: 30px;
    }

    .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: 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: 26px;
        line-height: 28px;
        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: 991px) {

    .tb-blog-list-section .tb-blog-list-section-content .tb-blog-detail-section-card .tb-blog-card .tb-blog-card-content {
        padding: 25px 35px 25px 25px;
    }

}


@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 {
        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;
    }

    .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;
    }

}


@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;
    }

    .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;
    }

}


@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: 500 60px/62px 'Teko', Helvetica, sans-serif;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin: 0 0 5px;
}

.tb-form-section .tb-form-section-detail {
    font: 400 16px/30px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0 0 50px;
}

.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;
    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::placeholder,
.tb-form-section .tb-form-section-content .tb-input-box textarea::placeholder {
    font: 700 16px/28px 'Nanum Gothic', Helvetica, sans-serif;
    letter-spacing: 0.3px;
}

.tb-form-section .tb-form-section-content .tb-input-box input,
.tb-form-section .tb-form-section-content .tb-input-box textarea {
    font: 400 16px/28px 'Nanum Gothic', 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;
    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 'Nanum Gothic', 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;
    }

    .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 .tb-our-gallery-section-img .tb-our-gallery-section-img-title {
        font-size: 25px;
        line-height: 27px;
    }

}


@media (max-width: 1199px) {

    .tb-form-section {
        margin: 0 0 60px;
    }

    .tb-form-section .tb-form-section-title {
        font-size: 45px;
        line-height: 47px;
    }

    .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;
    }

    .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-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-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 iframe {
    width: 100%;
    height: 600px;
    display: inline-block;
    vertical-align: top;
}


@media (max-width: 1299px) {

    .tb-contact-page-map iframe {
        height: 500px;
    }

}


@media (max-width: 991px) {

    .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;
    }

}