/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700,900');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css');


@font-face {
    font-family: 'SuseongDotum';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2205@1.0/SuseongDotum.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Swis721 BlkOul BT Black";
    src: url("https://db.onlinewebfonts.com/t/6bc1c879a5295c51ba1f70cb78afa9d7.eot");
    src: url("https://db.onlinewebfonts.com/t/6bc1c879a5295c51ba1f70cb78afa9d7.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/6bc1c879a5295c51ba1f70cb78afa9d7.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/6bc1c879a5295c51ba1f70cb78afa9d7.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/6bc1c879a5295c51ba1f70cb78afa9d7.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/6bc1c879a5295c51ba1f70cb78afa9d7.svg#Swis721 BlkOul BT Black")format("svg");
}


:root {
    --thm-font: 'Jost', sans-serif;
    --thm-reey-font: 'reeyregular';
    --thm-gray: #6f6f6f;
    --thm-gray-rgb: 111, 111, 111;
    --thm-primary: #fe1f07;
    --thm-primary-rgb: 254, 31, 7;
    --thm-black: #0d0d0d;
    --thm-black-rgb: 13, 13, 13;
    --thm-base: #ffffff;
    --thm-base-rgb: 255, 255, 255;
    --thm-extra: #e8e8e8;
    --thm-extra-rgb: 232, 232, 232;
}




.row {
    --bs-gutter-x: 30px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}


html { font-family: 'Pretendard', 'Aggravo', 'yg-jalnan', 'Rubik', 'Raleway', 'Nanum Gothic', 'Roboto', 'Poppins', 'Almarai','GmarketSansMedium', 'Inter', 'SCoreDream', sans-serif;}


body {
    font-family: 'Pretendard', 'Aggravo', 'yg-jalnan', 'Rubik', 'Raleway', 'Nanum Gothic', 'Roboto', 'Poppins', 'Almarai','GmarketSansMedium', 'Inter', 'SCoreDream', sans-serif;
    color: var(--thm-gray);
    font-size: 18px;
    line-height: 34px;
    font-weight: 400;
	word-break:keep-all;
	overflow-x:hidden;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--thm-gray);
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    margin: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
}

::placeholder {
    color: inherit;
    opacity: 1;
}


.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1300px) {
    .container {
        max-width: 1400px;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.section-separator {
    border-color: var(--thm-border);
    border-width: 1px;
    margin-top: 0;
    margin-bottom: 0;
}


.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--thm-base);
    color: var(--thm-black);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 60px 16px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--thm-primary);
}

.thm-btn:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background-color: var(--thm-primary);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    opacity: 1;
    transform-origin: bottom;
    transform-style: preserve-3d;
    z-index: -1;
}

.thm-btn:hover:after {
    width: 100%;
    opacity: 1;
}

.thm-btn:hover {
    color: var(--thm-base);
}



.section-title {
    margin-top: -8px;
    margin-bottom: 48px;
}

.section-title__tagline {
    display: inline-flex;
    color: var(--thm-gray);
    font-size: 16px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 3px;
}

.section-title__tagline::before {
    content: '';
    background-color: var(--thm-primary);
    width: 3px;
    height: 15px;
    margin-right: 10px;
}




.section-title__tagline2 {
    display: inline-flex;
    color: #c5c5c5;
    font-size: 20px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing:3px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 3px;
}






.section-title__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 50px;
    line-height: 60px;
    font-weight: 400;
	 font-family: 'Pretendard', sans-serif;

}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
    box-shadow: none !important;
    outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
    box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    z-index: 991;
    border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--thm-primary);
    color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
    font-size: 16px;
    font-weight: 500;
    padding: 4px 20px;
    color: #ffffff;
    background: var(--thm-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
    background: var(--thm-primary);
    color: #fff;
    cursor: pointer;
}


.preloader {
    position: fixed;
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--thm-primary);
    position: fixed;
    bottom: 20px;
    right: 24px;
    z-index: 99;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--thm-black);
}

.scroll-to-top:hover i {
    color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background: transparent;
    z-index: 999;
    transition: all 500ms ease;			
}

.main-menu {
    position: relative;
    padding: 0 0;
    z-index: 91;
   
}

.main-menu-wrapper {
    position: relative;
    display: block;
}

.main-menu-wrapper:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 1px;
    background-color: rgba(var(--thm-base-rgb), 1);
}

.main-menu-wrapper:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    height: 5px;
    background-color: var(--thm-primary);
}

.main-menu-wrapper-inner {
    position: relative;
    display: block;
}

.main-menu-wrapper__left {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__logo {
    position: relative;
    float: left;
    margin-right: 70px;
}

.main-menu-wrapper__main-menu {
    position: relative;
    display: block;
    float: left;
}

.main-menu-wrapper__right {
    position: relative;
    display: flex;
    float: right;
    padding: 25px 0;
    align-items: center;
}

.main-menu-wrapper__call {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    margin-right: 50px;
}

.main-menu-wrapper__call-icon {
    height: 50px;
    width: 50px;
    background-color: transparent;
    font-size: 24px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--thm-primary);
    border-radius: 50%;
}

.main-menu-wrapper__call:hover .main-menu-wrapper__call-icon {
    background-color: var(--thm-primary);
    color: var(--thm-base);
}



.main-menu-wrapper__call-number {
    margin-left: 20px;
}

.main-menu-wrapper__call-number a {
    color: var(--thm-base);
    font-size: 16px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main-menu-wrapper__call-number a:hover {
    color: var(--thm-primary);
}

.main-menu-wrapper__call-number p {
    font-size: 14px;
    margin: 0;
    line-height: 14px;
    font-weight: 300;
    opacity: .7;
    color: var(--thm-base);
}

.main-menu-wrapper__search-box {
    position: relative;
    display: block;
    float: right;
}

.main-menu-wrapper__search-box:before {
    position: absolute;
    top: -14px;
    bottom: -11px;
    left: 0;
    content: "";
    width: 1px;
    background-color: rgba(var(--thm-base-rgb), .10);
}

.main-menu-wrapper__search {
    position: relative;
    font-size: 24px;
    color: var(--thm-base);
    width: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
}

.main-menu-wrapper__search:hover {
    color: var(--thm-primary);
}

.stricky-header.main-menu {
    padding: 0 0;
    background-color: white;	/*dm*/
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 1200px) {

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
    padding-top: 38px;
    padding-bottom: 37px;
    position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
    margin-left: 75px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #000;
    position: relative;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
    content: '';
    height: 12px;
    width: 3px;
    border-radius: 0px;
    background-color: var(--thm-primary);
    position: absolute;
    top: 16px;
    bottom: 0;
    left: -12px;
    transition: transform 500ms ease;
    transform: scale(0) translateY(-50%);
    z-index: -1;
}




.main-menu .main-menu__list>li:hover>a,			 
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}





/*


.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
    color: var(--thm-base);
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1) translateY(-50%);
}

.main-menu .main-menu__list>li.current>a::before {
    background-color: var(--thm-primary);
}
*/




.main-menu .main-menu__list>li:hover>a::before {
    background-color: var(--thm-primary);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: 500ms ease;
    z-index: 99;
    box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
    border-top: 1px solid RGBA(var(--thm-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
    font-size: 16px;
    line-height: 30px;
    color: var(--thm-black);
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: 500ms;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
    background-color: var(--thm-primary);
    color: #fff;
}

.main-menu .main-menu__list li ul li>ul,
.stricky-header .main-menu__list li ul li>ul {
    top: 0;
    left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
    display: none;
}

.stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    transform: translateY(-120%);
    transition: transform 500ms ease, visibility 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
    .stricky-header {
        display: none !important
    }
}

.stricky-header.stricky-fixed {
    transform: translateY(0);
    visibility: visible;
}

.stricky-header .main-menu__inner {
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.mobile-nav__buttons {
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

@media (min-width: 1200px) {
    .mobile-nav__buttons {
        display: none;
    }
}

.mobile-nav__buttons a {
    font-size: 20px;
    color: var(--thm-black);
    cursor: pointer;
}

.mobile-nav__buttons a+a {
    margin-left: 10px;
}

.mobile-nav__buttons a:hover {
    color: var(--thm-base);
}

.main-menu .mobile-nav__toggler {
    font-size: 36px;
    color: #000;
	/*var(--thm-primary)*/
    cursor: pointer;
    transition: 500ms;
   right: 0px;
}

.main-menu .mobile-nav__toggler:hover {
    color: var(--thm-base);
}

.main-menu-two .mobile-nav__toggler:hover {
    color: var(--thm-black);
}

@media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
        display: none;
    }
}


 .toptel{height:110px; background:#007bc9; color:#fff; text-align:left; vertical-align:middle; min-width:260px; float:right; line-height:170%; top:0px; position:relative; right:-100px; padding:25px 30px 0;}	   
	.toptel span{font-size:28px; font-family:'Rubik', sans-serif; font-weight:600;}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    background: rgba(255,255,255,1);		 /*header*/
    z-index: 999;
    transition: all 300ms ease;
}

.main-menu-two {
    padding: 0 60px;
}

.main-menu-two-wrapper {
    position: relative;
    display: block;
	 
}

.main-menu-two-wrapper__logo {
    position: relative;
    display: block;
    float: left;
    padding: 20px 0px;
}

.main-menu-two-wrapper__main-menu {
    position: relative;
    display: flex;
    align-items: right;
    justify-content: right;
    width: 79%;
    float: left;
}

.main-menu-two .main-menu__list>li>a {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: #000;
    position: relative;
    transition: all 300ms ease;
}



.stricky-header .main-menu-two .main-menu__list>li>a {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #000;
    position: relative;
    transition: all 300ms ease;
}




  



.main-menu-two .main-menu__list>li:hover>a {
    color: #007bc9;
    text-shadow: 0 0 1px currentColor;
}




.stricky-header.main-menu-two .main-menu__list>li:hover>a		  {
    color: #000;
    text-shadow: 0 0 1px currentColor;
}
 




  /*

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a {
    color: #007bc9;
    text-shadow: 0 0 1px currentColor;
}



.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a		  {
    color: #000;
    text-shadow: 0 0 1px currentColor;
}
   */







.main-menu-two-wrapper__right {
    position: relative;
    display: none;			   /*dm*/
    float: right;
    padding: 42.5px 0;
}

.main-menu-two-wrapper__search-box {
    position: relative;
    display: block;
    float: left;
}

.main-menu-two-wrapper__search-box:before {
    position: absolute;
    top: -10px;
    bottom: -10px;
    right: 0;
    content: "";
    width: 1px;
    background-color: var(--thm-extra);
}

.main-menu-two-wrapper__search {
    font-size: 24px;
    color: var(--thm-black);
    display: flex;
    align-items: center;
    padding-right: 50px;
    transition: all 500ms ease;
}

.main-menu-two-wrapper__search:hover {
    color: var(--thm-primary);
}

.main-menu-two__social {
    position: relative;
    display: flex;
    float: right;
    align-items: center;
    margin-left: 50px;
    padding: 4.5px 0;
}

.main-menu-two__social a {
    font-size: 15px;
    color: var(--thm-black);
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.main-menu-two__social a:hover {
    color: var(--thm-primary);
}

.main-menu-two__social a+a {
    margin-left: 20px;
}

.stricky-header.main-menu-two {
    padding: 0 50px;
    background: #fff;
}



/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transform: translateX(-50%);
    transform-origin: right center;
    transition: transform 300ms ease-in, opacity 300ms linear, visibility 300ms ease-in;
    z-index: 999;
    visibility: hidden;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
}

.mobile-nav__content {
    width: 300px;
    background-color: #fff;
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
}

.mobile-nav__content .thm-btn {
    padding: 8px 0;
    width: 100%;
    text-align: center;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--thm-text-dark);
    cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.5);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-nav__content .main-menu__list li a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: #000;
    font-size: 16px;
    font-family: var(--thm-font);
    font-weight: 500;
    height: 50px;
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--thm-secondary);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: #fff;		   /*    background-color: #007bc9;*/
    border: none;
    outline: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: #fff;
    color: #fff;			 /*    color: var(--thm-black);*/
}

.mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
    color: var(--thm-text-dark);
}

.mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--thm-primary);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 30px;
}

.mobile-nav__social a:hover {
    color: #ffffff;
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--thm-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: #000;
    transition: 500ms;			 font-size:20px;
}

.mobile-nav__contact li a:hover {
    color: var(--thm-primary);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f78f00;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-110%);
    transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
    transform: translateY(0%);
}

.search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--thm-black);
    opacity: 0.75;
    cursor: pointer;
}

.search-popup__content {
    width: 100%;
    max-width: 560px;
}

.search-popup__content form {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    background-color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__content .thm-btn {
    padding: 0;
    width: 68px;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    border: 0;
}

.search-popup__content .thm-btn:hover {
    background-color: var(--thm-black);
}

.search-popup__content .thm-btn i {
    margin: 0;
}

/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/
.main-slider {
    overflow: hidden;
    position: relative;
}

.main-slider .swiper-slide {
    position: relative;
    background-color: var(--thm-black);
}

.main-slider .swiper-slide .container {
    position: relative;
    z-index: 30;
}

.main-slider .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1);
    transition: transform 7000ms ease;
    z-index: 1;
}

.main-slider .image-layer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
  
    z-index: 2;
}

.main-slider .container {
    padding-top: 550px;
    padding-bottom: 150px;
}

.main-slider__content {
    position: relative;
    display: block;
    text-align: right;
}

 .main-slider__content2 {
    position: relative;
    display: block;
    text-align: left;
}


.main-slider h2 {
    margin: 0;
    margin-bottom: 45px;
    color: #fff;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    transform: translateY(140px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 61px;
	font-family: 'Pretendard';		 
    line-height: 140%;	   margin-top:15px;
    z-index: 2;
}
.wt {color:#000;}
.main-slider .mm01 {margin-top:0px; color:#fff; font-weight:700; line-height:90%;display:block;font-size: 61px;}
.main-slider .mm02 {margin-top:0px; color:#fff;  font-weight:600;font-size: 61px;}








.main-slider .main-slider__sub-title {
    position: relative;
    display: inline-block;
    font-size: 61px;
    color: #00fff0;
    font-weight: 700;
	text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0px;	
    opacity: 1;		
	line-height:70%;
    transform: translateY(100px);
    transition-delay: 3000ms;
    transition: transform 2000ms ease,
    opacity 2000ms ease,
    color 500ms ease,
    background 500ms ease;
    z-index: 2;
}

 .main-slider .main-slider__sub-title2 {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #fff;
    font-weight: 400;
	text-transform: uppercase;
    margin: 0;
    margin-bottom: 14px;
    line-height: 30px;
    opacity: 1;
    transform: translateY(100px);
    transition-delay: 3000ms;
    transition: transform 2000ms ease,
    opacity 2000ms ease,
    color 500ms ease,
    background 500ms ease;
    z-index: 2;
}

	
.main-slider .mtel span{	      
    transform: translateY(300px);
    transition-delay: 3000ms;
    transition: transform 3000ms ease, opacity 3000ms ease;
    font-size: 48px;
	font-family: 'Pretendard';	  	     opacity: 1;
    line-height: 140%;	   margin-top:150px;
    z-index: 2;
}

   .main-slider .mtel img{	      
     opacity: 1;
}

.main-slider__btn {
    background-color: transparent;
    color: var(--thm-base);
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 2500ms;
    transition: transform 2000ms ease,
        opacity 2000ms ease,
        color 500ms ease,
        background 500ms ease;
    z-index: 2;
}

.main-slider .swiper-slide-active .main-slider__btn {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider .swiper-slide-active .main-slider__sub-title {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}
.main-slider .swiper-slide-active .main-slider__sub-title2 {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider .swiper-slide-active .image-layer {
    transform: scale(1);		 /*dm     transform: scale(1.15);*/
}

.main-slider .swiper-slide-active h2 {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.main-slider__nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    left: 50px;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 50px;
    height: 50px;
    font-size: 11px;
    color: var(--thm-black);
    background-color: var(--thm-base);
    opacity: 1;
    margin: 0;
    text-align: center;
    border-radius: 50%;
    font-weight: 900;
    transition: all 500ms ease;
}


.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
    color: var(--thm-black);
    background-color: var(--thm-base);
    opacity: 0.15;
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
    display: none;
}

.main-slider__nav .swiper-button-prev {
    margin-bottom: 0px;
}

.main-slider__nav .swiper-button-prev i {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

.main-slider__nav .swiper-button-prev .icon-right-arrow-angle,
.main-slider__nav .swiper-button-next .icon-right-arrow-angle {
    font-weight: bold;
}

#main-slider-pagination {
    z-index: 100;
    bottom: 59px;
    left: 50%;
    width: 100%;
    max-width: 1170px;
    -webkit-transform: translate(-50%, calc(-50% + 95px));
    transform: translate(-50%, calc(0% + 0px));
    text-align: center;
}

#main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #000;
    opacity: .60;
    margin: 0px 10px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    border: 2px solid transparent;
}

#main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-left: 2.5px;
}

#main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bc9;
}

.main-slider__date-time {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    z-index: 100;
}

.main-slider__date-time p {
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--thm-base);
    transform: rotate(-90deg);
    margin: 0;
}

.main-slider__date-time p span {
    margin-left: 20px;
}

.main-slider__social {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    display: flex;
    z-index: 100;
    align-items: center;
    flex-direction: column;
}

.main-slider__social a {
    font-size: 15px;
    color: var(--thm-base);
    display: flex;
    align-items: center;
    transition: all 500ms ease
}

.main-slider__social a:hover {
    color: var(--thm-primary);
}

.main-slider__social a+a {
    margin-top: 25px;
}




/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
    position: relative;
    display: block;
}

.main-slider-two .container {
    padding-top: 249px;
}

.main-slider-two .main-slider__content {
    text-align: left;
}

.main-slider-two .main-slider__sub-title:before {
    display: none;
}


.main-slider-two .main-slider__sub-title2:before {
    display: none;
}




/*--------------------------------------------------------------
# Welcome One
--------------------------------------------------------------*/
.welcome-one {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.welcome-one__outer-img {
    position: absolute;
    top: 0;
    right: 0;
}

.welcome-one__outer-img img {
    filter: grayscale(100%);
}

.welcome-one__outer-img-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-primary-rgb), .90);
}

.welcome-one-shape-1 {
    position: absolute;
    top: 170px;
    left: 0;
    -webkit-animation-name: shapeMover;
    animation-name: shapeMover;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}



.welcome-one-shape-2 {
    position: absolute;
    bottom: 207px;
    left: 150px;
}

.welcome-one-shape-2 img {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.welcome-one__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.welcome-one__left .section-title {
    margin-bottom: 39px;
}

.welcome-one__text-1 {
    color: var(--thm-black);
    margin: 0;
    padding-bottom: 34px;
}

.welcome-one__text-2 {
    margin: 0;
}

.welcome-one__points-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 51px;
}

.welcome-one__points li {
    display: flex;
    align-items: center;
}

.welcome-one__points li .icon {
    height: 16px;
    width: 16px;
    font-size: 9px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-one__points li .text {
    margin-left: 10px;
}

.welcome-one__points li .text p {
    color: var(--thm-black);
    margin: 0;
}

.welcome-one__right {
    position: relative;
    display: block;
}

.welcome-one__img-box {
    position: relative;
    display: block;
}

.welcome-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.welcome-one__img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 10;
}

.welcome-one__img:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s;
}

.welcome-one__img img {
    width: 100%;
}

.welcome-one__completed {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 35px 60px 30px;
}

.welcome-one__completed:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    width: 4px;
}

.welcome-one__completed h3 {
    font-size: 36px;
    color: var(--thm-black);
    font-weight: 400;
    font-family: var(--thm-font) !important;
    line-height: 36px !important;
}

.welcome-one__completed p {
    font-size: 16px;
    color: var(--thm-primary);
    font-weight: 400;
    margin: 0;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.services-one__box {
    position: relative;
    display: block;
}





.services-one__single {
    position: relative;
    max-width: 390px;
    width: 100%;
    float: left;
    
    padding: 60px 60px 47px;
    background-color: #fcefe9;
    transition: all 500ms ease;
}

.services-one__single:hover {
    background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .10);
    z-index: 2;
}

.services-one__single:nth-child(2) {
    border-left: 0;
}

.services-one__single:nth-child(3) {
    border-left: 0;
}

.services-one__single:nth-child(4) {
    border-top: 0;
}

.services-one__single:nth-child(5) {
    border-left: 0;
    border-top: 0;
}





.services-one__single1 {
    position: relative;
    max-width: 390px;
    width: 100%;
    float: left;
    
    padding: 60px 60px 47px;
    background-color: #fbe3f5;
    transition: all 500ms ease;
}

.services-one__single1:hover {
    background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .10);
    z-index: 2;
}

.services-one__single1:nth-child(2) {
    border-left: 0;
}

.services-one__single1:nth-child(3) {
    border-left: 0;
}

.services-one__single1:nth-child(4) {
    border-top: 0;
}

.services-one__single1:nth-child(5) {
    border-left: 0;
    border-top: 0;
}





.services-one__single2 {
    position: relative;
    max-width: 390px;
    width: 100%;
    float: left;
    
    padding: 60px 60px 47px;
    background-color: #e0f9fb;
    transition: all 500ms ease;
}

.services-one__single2:hover {
    background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .10);
    z-index: 2;
}

.services-one__single2:nth-child(2) {
    border-left: 0;
}

.services-one__single2:nth-child(3) {
    border-left: 0;
}

.services-one__single2:nth-child(4) {
    border-top: 0;
}

.services-one__single2:nth-child(5) {
    border-left: 0;
    border-top: 0;
}





.services-one__single3 {
    position: relative;
    max-width: 390px;
    width: 100%;
    float: left;
    
    padding: 60px 60px 47px;
    background-color: #eae6fe;
    transition: all 500ms ease;
}

.services-one__single3:hover {
    background-color: var(--thm-base);
    box-shadow: 0px 0px 60px 0px rgb(0, 0, 0, .10);
    z-index: 2;
}

.services-one__single3:nth-child(2) {
    border-left: 0;
}

.services-one__single3:nth-child(3) {
    border-left: 0;
}

.services-one__single3:nth-child(4) {
    border-top: 0;
}

.services-one__single3:nth-child(5) {
    border-left: 0;
    border-top: 0;
}






.services-one__icon span {
    font-size: 65px;
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon span {
    color: var(--thm-primary);
}

.services-one__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 29px;
    margin-top: 30px;
    margin-bottom: 14px;
}

.services-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.services-one__single:hover .services-one__title a {
    color: var(--thm-primary);
}

.services-one__text {
    margin: 0;
    font-weight: 300;
}

/*--------------------------------------------------------------
# Discover World
--------------------------------------------------------------*/
.discover-world {
    position: relative;
    display: block;
}

.discover-world__container {
    position: relative;
    display: block;
    max-width: 1440px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.discover-world__inner {
    position: relative;
    display: block;
    padding: 110px 0 120px;
    z-index: 1;
}

.discover-world-shape-1 {
    position: absolute;
    top: -183px;
    right: 225px;
    -webkit-animation-name: squareMover;
    animation-name: squareMover;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.discover-world-shape-2 {
    position: absolute;
    right: -95px;
    top: -90px;
    -webkit-animation-name: shapeMover;
    animation-name: shapeMover;
    -webkit-animation-duration: 9s;
    animation-duration: 9s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    z-index: -1;
}

.discover-world-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.discover-world-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .70);
    z-index: -1;
}

.discover-world__title {
    font-size: 60px;
    color: var(--thm-base);
    font-weight: 500;
	margin-top:20px;
    margin-bottom: 0px;
     text-align: center;
}
.discover-world__title img{
max-width:100%;
}
.discover-world__title1 {
font-family: 'Pretendard',sans-serif;
    font-size: 42px;
    color: #145122;
    font-weight: 700;
     text-align: center;
}

.discover-world__title2 {
font-family: 'Pretendard',sans-serif;
    font-size: 20px;
    color: #54533d;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0px;
    text-align: center;
}

.discover-world__video-link {
    position: relative;
    display: block;
}

.discover-world__video-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    line-height: 108px;
    text-align: center;
    font-size: 25px;
    color: var(--thm-base);
    background-color: var(--thm-primary);
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.discover-world__video-icon:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.discover-world__video-icon:before {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    content: "";
    border-radius: 50%;
    background-color: var(--thm-base);
    z-index: -1;
    opacity: 0.05;
}

.discover-world__video-link .ripple,
.discover-world__video-icon .ripple:before,
.discover-world__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--thm-primary-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    border-radius: 50%;
}

.discover-world__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.discover-world__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.discover-world__running {
    position: absolute;
    bottom: -190px;
    right: 120px;
    background-color: var(--thm-primary);
    padding: 50px 72px 44px 60px;
}

.discover-world__running span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.discover-world__running:hover span {
    transform: rotateY(360deg);
}

.discover-world__running h3 {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 400;
    line-height: 32px;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# We Shape
--------------------------------------------------------------*/
.we-shape {
    position: relative;
    display: block;
    background:url('../../image/back1.jpg') no-repeat center top;
    margin-top: 0px;
}

.we-shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
}

.we-shape__top {
    position: relative;
    display: block;
    padding: 100px 0 50px;
}



.we-shape__tagline {
    display: inline-flex;
    color: #fff;
    font-size: 26px;
    align-items: center;
    line-height: 30px;
    margin-bottom: 3px;
}

.we-shape__tagline::before {
    content: '';
    background-color: var(--thm-primary);
    width: 3px;
    height: 15px;
    margin-right: 10px;
}

.we-shape__title {
    margin-bottom:70px;;
    color: #000;
	font-family: 'Aggravo', sans-serif;
    font-size: 50px;				 text-align:center;
	text-transform: uppercase;		 
    font-weight: 500;
}
 
.we-shape__title span{
    margin: 0;
    color: #525252;
	font-family: 'Aggravo', sans-serif;
    font-size: 50px;				 text-align:center;
	text-transform: uppercase;		 
    font-weight: 300;
}
.we-shape__title1 {
    margin: 0;
    color: #fff;
	font-family: "Swis721 BlkOul BT Black";
    font-size: 75px;
	text-transform: uppercase;
    line-height: 80px;
    font-weight: 400;
}




.we-shape__top-title {
    position: relative;
    display: block;
}

.we-shape__top-title h2 {
    font-size: 60px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 46px;
}

.we-shape__top-btn {
    background-color: transparent;
    color: var(--thm-base);
}

.we-shape__bottom {
    position: relative;
    display: block;
    padding: 0 0 65px;
}

.we-shape__single {
    position: relative;
    display: flex;
    margin-bottom: 30px;
}

.we-shape__icon {
    position: relative;
    display: block;
    top: 6px;
}

.we-shape__icon span {
    font-size: 65px;
    color: var(--thm-primary);
    position: relative;
    display: inline-block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.we-shape__single:hover .we-shape__icon span {
    transform: scale(1.2);
    color: var(--thm-base);
}

.we-shape__content {
    margin-left: 30px;
}

.we-shape__content h4 {
    font-size: 20px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 12px;
}

.we-shape__content p {
    font-size: 16px;
    color: var(--thm-base);
    opacity: .7;
    margin: 0;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Grow And Experience
--------------------------------------------------------------*/
.grow-and-experience {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.grow-and-experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

.grow-and-experience-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(246, 246, 246);
    opacity: 0.9;
}

.grow-and-experience__left {
    position: relative;
    display: block;
    margin-right: 80px;
}

.grow-and-experience__left .section-title {
    margin-bottom: 28px;
}

.grow-and-experience__text {
    margin: 0;
    font-weight: 300;
    margin-bottom: 39px;
}

.grow-and-experience__progress {
    display: flex;
    align-items: center;
    line-height: 0;
}

.grow-and-experience__progress-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

@media (min-width: 768px) {
    .grow-and-experience__progress-wrap {
        grid-template-columns: repeat(2, 249px);
    }
}

.grow-and-experience__progress-box {
    position: relative;
    display: inline-block;
}

.grow-and-experience__progress-box canvas {
    transform: rotate(90deg);
}

.grow-and-experience__progress-box span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    transform: translateY(-50%) translateX(-50%);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: var(--thm-gray);
}

.grow-and-experience__progress h3 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--thm-black);
    width: 120px;
    margin-left: 20px;
}

.faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 0;
    background-color: var(--thm-base);
    border: 1px solid transparent;
}

.faq-one-accrodion .accrodion.active {
    border: 1px solid var(--thm-extra);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
}

.faq-one-accrodion .accrodion:before {
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 10px;
    content: "";
    background-color: var(--thm-primary);
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.faq-one-accrodion .accrodion.active:before {
    transform: scaleX(1);
}

.faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 26px 40px 26px;
    padding-right: 27px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    border-bottom: 1px solid transparent;
}

.faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--thm-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
    color: var(--thm-black);
}

.faq-one-accrodion .accrodion-title h4::before {
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    color: var(--thm-black);
    ;
    position: absolute;
    top: 50%;
    right: 0;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--thm-primary);
    ;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-one-accrodion .accrodion-content {
    position: relative;
    padding: 0px 40px 40px;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
    background-color: var(--thm-base);
}

.faq-one-accrodion .accrodion-content p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

/*--------------------------------------------------------------
# Three Boxes
--------------------------------------------------------------*/
.three-boxes {
    position: relative;
    display: block;
    padding: 120px 0 90px;
}

.three-boxes__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.three-boxes__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1
}

.three-boxes__img:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 10px;
    background-color: rgba(var(--thm-black-rgb), 0.8);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
    content: "";
    z-index: 1;
}

.three-boxes__single:hover .three-boxes__img:before {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.three-boxes__img img {
    width: 100%;
    transition: transform 500ms ease;
    transform: scale(1);
}

.three-boxes__single:hover .three-boxes__img img {
    transform: scale(1.05);
}

.three-boxes__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    z-index: 2;
}

.three-boxes__content h3 {
    font-size: 30px;
    color: var(--thm-base);
    font-weight: 500;
    line-height: 36px;
}

/*--------------------------------------------------------------
# Inspire
--------------------------------------------------------------*/
.inspire {
    position: relative;
    display: block;
    z-index: 1;
}

.inspire__container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px;
}

.inspire__container1 {
    position: relative;
    display: block;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 20px;
}
.inspire__container11 {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 0 60px;
}
.inspire-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -1;
}

.inspire-bg-overly {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--thm-primary-rgb), .90);
    z-index: -1;
}

.inspire-bg.jarallax div div {
    filter: grayscale(100%);
}

.inspire__left {
    position: relative;
    display: block;
    margin-right: 82px;
}

.inspire__carousel {
    position: relative;
    display: block;
}

.inspire__single {
    position: relative;
    display: block;
}

.inspire__quote {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.inspire__quote span {
    font-size: 75px;
    color: var(--thm-base);
}

.inspire__text {
    font-size: 30px;
    color: var(--thm-base);
    line-height: 50px;
    margin: 0;
}

.inspire__client-info {
    position: relative;
    display: block;
    margin-top: 32px;
}

.inspire__clinet-name {
    font-size: 34px;
    color: var(--thm-base);
    font-weight: 400;
    line-height: 44px;
    margin-bottom: 12px;
}

.inspire__clinet-title {
    font-size: 16px;
    color: var(--thm-base);
    line-height: 26px;
    margin: 0;
}

.inspire__right {
    position: relative;
    display: block;
}

.inspire__counter {
    position: relative;
    display: block;
}

.inspire__counter li {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 50px;
    padding-top: 35px;
    padding-bottom: 40px;
    z-index: 1;
}

.inspire__counter li:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .15);
    z-index: -1;
}

.inspire__counter li+li {
    margin-top: 2px;
}

.inspire__icon {
    display: flex;
    align-items: center;
    position: relative;
    top: 4px;
}

.inspire__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-base);
    transition: all 500ms ease;
}

.inspire__counter li:hover .inspire__icon span {
    transform: rotateY(180deg);
}

.inspire__content {
    margin-left: 30px;
}

.inspire__content h2 {
    font-size: 40px;
    color: var(--thm-base);
    font-weight: 400;
    line-height: 40px !important;
    font-family: var(--thm-font) !important;
}

.inspire__content p {
    font-size: 16px;
    color: var(--thm-base);
    margin: 0;
    line-height: 18px;
}

.inspire__content .odometer-formatting-mark {
    display: none;
}

/*--------------------------------------------------------------
# Inspire
--------------------------------------------------------------*/
.project-one {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

.project-one:before {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    content: "";
    height: 580px;
    background-color: #f6f6f6;
    z-index: -1;
}

.project-one .container {
    max-width: 1000px;
}

.project-one__carousel {
    position: relative;
    display: block;
}

.project-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0px 0px;
}

.project-one__carousel.owl-carousel .owl-dots {
    position: absolute;
    bottom: -50px;
    right: 0px;
    left: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--thm-black);
    opacity: .20;
    margin: 0px 2.5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
    border: 2px solid transparent;
}

.project-one__carousel.owl-carousel .owl-dot.active {
    opacity: 1;
    background-color: transparent;
    border: 2px solid var(--thm-primary);
}

.project-one__carousel.owl-carousel .owl-dot:focus {
    outline: none;
}

.project-one__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
}

.project-one__single {
    position: relative;
    display: block; 
	text-align:center;
	   	 margin:0 auto;
}

.project-one__img {
    position: relative;
	 margin:0 auto;
    overflow: hidden;
    z-index: 1; 
}

/*
.project-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .30);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: top center;
    z-index: 1;
}

.project-one__single:hover .project-one__img:before {
    transform: scale(1, 1);
    transform-origin: bottom center;
}
*/
.project-one__img img {
	 max-width:228px;			  	 margin:0 auto;		text-align:center;
    transform: scale(1);
    transition: transform 500ms ease;
}

.project-one__single:hover .project-one__img img {
    transform: scale(1);
}

.project-one__content {
    position: relative;
	width:100%;

   margin:0 auto; text-align:center;

    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 2;
}


	/*


.project-one__content:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    width: 0%;
    content: "";
    background-color: var(--thm-primary);
    z-index: -1;
    transform: translateY(0%);border-radius: 20px;
    transition: all 500ms ease;
}

.project-one__single:hover .project-one__content:before {
    transform: translateY(0);
    width: 100%;border-radius: 20px;
}
*/

.project-one__tagline {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 300;
    line-height: 22px;
    transition: all 500ms ease;
}

.project-one__single:hover .project-one__tagline {
    color: var(--thm-base);
}

.project-one__tagline span {
    padding-right: 3px;
    padding-left: 3px;
}

.project-one__tilte {
    font-size: 30px;margin-top:10px;
    line-height: 140%;
    font-weight: 700;
	font-family: 'Pretendard',sans-serif;
}

   .project-one__content p{
    font-size: 19px;margin-top:10px;
    line-height: 140%;		  color:#000;
    font-weight:300;
	font-family: 'Pretendard',sans-serif;
}

.project-one__tilte>a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.project-one__tilte>a:hover {
    color: var(--thm-base);
}

.project-one__single:hover .project-one__tilte>a {
    color: var(--thm-base);
}

.project-one__arrow {
    position: absolute;
    top: 0;
    right: 0;
}

.project-one__arrow>a {
    height: 40px;
    width: 40px;
    background-color: #f3f3f3;
    color: var(--thm-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    transition: all 500ms ease;
}

.project-one__arrow>a .icon-right-arrow-angle {
    font-weight: bold;
}

.project-one__single:hover .project-one__arrow>a {
    background-color: var(--thm-black);
    color: var(--thm-base);
}





.whitehotel {
  display: flex;			 
  align-items: stretch; /* 높이를 서로 맞춤 */
}
  
.whitehotel .hotelleft {
  display: block;
width: 50%;
  height: auto;
}

.whitehotel .hotelleft img {
  display: block;
width: 100%;
  height: auto;
}

.whitehotel .hotelright {
  flex: 1;
}

.whitehotel .r1 {
  background-color: #cfdeeb;
  color:#2a4458;					  
  padding:80px 30px 0 60px;	  
  height: 50%;			
  float:left; 
  font-weight:600;    font-size:40px;
  width:50%;
}


.whitehotel .r1 p {   
  color:#55697a;		 font-size:17px; 		 font-weight:300;			   margin-top:10px;
}


.whitehotel .r2 {
  background-color: #004a74;
   color:#fff;		  padding:80px 30px 0 60px;	  
  height: 50%;			float:left;  	   font-weight:600;    font-size:40px;
  width:50%;
}

.whitehotel .r2 p {   
  color:#fff;		font-size:26px; 		 font-weight:300;			   margin-top:40px;
}


.whitehotel .r3 {
  background-color: #6f9abc;
  color:#fff;		    padding:80px 30px 0 60px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:40px;
  width:50%;
}

.whitehotel .r3 p {   
  color:#fff;		 	font-size:26px; 	   font-weight:300;		      margin-top:40px;
}


.whitehotel .r4 {
  background-color: #0a2e4d;
  color:#fff;		  padding:80px 30px 0 60px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:40px;
  width:50%;
}


 .whitehotel .r4 p {   
  color:#fff;		 	  font-size:26px; 		    font-weight:300;				     margin-top:40px;
}











   .whitehotel2 {   
background:url('../../image/hotelback.jpg')no-repeat center top; min-height:384px; 		padding:80px 0;
}
   .whitehotel2 h1 {   
font-size:42px; color:#fff; font-weight:700;		 text-transform: uppercase;
}


      .whitehotel2 h2 {   
font-size:24px; color:#fff; font-weight:500;	margin:20px 0;		  line-height:130%;
}


 
      .whitehotel2 .pricebtn {   
font-size:24px; color:#b2613d; font-weight:400;	margin:20px 0 0;		display:inline-block;background:#fff; padding:15px 25px;  line-height:130%;
}




	 .whitehotel_gall {  	     position: relative;
    display: block;
    padding: 50px 0 50px;  }

   	 .whitehotel_gall .gallin{  max-width:1500px;width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}

 .whitehotel_gall .f1{ float:left; width:50%;padding:20px; text-align:center;}
  .whitehotel_gall .f1 img{ max-width:100%;text-align:center;}
   .whitehotel_gall .f1 h2{ font-size:27px; color:#000;text-align:center; margin:40px 0 20px;  text-transform: uppercase;font-weight:700;}
    .whitehotel_gall .f1 h3{ font-size:21px; color:#000; text-align:center; width:60%; margin:0 20%; line-height:140%; font-weight:400;}




   .grayblock{ background: #2196eb url(../../image/grayback.jpg) no-repeat right top;
  background-size: auto 100%;   /* 높이를 100%로 맞춤 */
  position: relative;
  clear: both;
  margin-top: 100px;
  padding: 50px 50px;
  width: 100%; }

	  .grayblock .con{max-width:870px; margin:0 auto}
   .grayblock h1{font-size:22px; color:#fff;text-align:left; margin:0px 0 0px 20px;  text-transform: uppercase;font-weight:500;}

     .grayblock h2{font-size:43px; color:#fff;text-align:left; margin:15px 0 0px;  line-height:140%;text-transform: uppercase;font-weight:600;}
	  .grayblock h2 span{font-size:43px; border-radius:50px;color:#2196eb; background:#fff; padding:10px 20px;text-align:left; margin:10px 14px 10px 0;  line-height:140%;text-transform: uppercase;font-weight:400;}









 .reform	 {  position: relative;
    display: block;
    padding: 50px 0 50px;width:100%; 
	}

 .reform .repic {   
	 float:left; width:50%;
}	    
.reform .repic img {   
max-width:100%;
}
 .reform .form {   
  color:#000;			   font-size:48px; 	 height:auto;
  font-weight:600;		float:left;	 width:50%;	padding:2% 5%;
}



.oksection{   display:inline-block; width:100%; margin:100px 0 50px; border-bottom:2px solid #686868; position: relative;}

	.oksection .okleft{  width:60%; float:left; }

   	.oksection .okleft h1{ font-size:40px; font-weight:700;color:#000;}

     	.oksection .okleft h1 span{ font-size:40px; font-weight:700;color:#009ed9;}

     	.oksection .okleft p{color:#4c4c4c; font-size:22px; margin-top:20px;margin-bottom:30px;font-weight:400; line-height:140%;}

    	.oksection .okright{  width:40%; position:relative; float:right;text-align:center; }

	  	.oksection .okright img{  max-width:100%; padding:0; bottom:0px; text-align:center; }





		  .golfmap {  display:inline-block; width:100%; margin:100px 0 100px; position: relative;}
		  .golfmap .golfleft{  width:65%; float:left; }
			 	  .golfmap .golfleft h1{ font-size:44px; font-weight:700;color:#000;}
					 	  .golfmap .golfleft h2{ font-size:22px;padding:15px 30px;; font-weight:600; border-radius:0 30px 30px 0; display:inline-block; color:#fff; margin-top:20px;background:#306852; }
						 	  .golfmap .golfleft h3{ font-size:22px; font-weight:600;color:#606060; margin:20px 0;padding:0px 0px 0 30px; }

	.golfmap .golfleft p{color:#000; font-size:22px; margin-top:30px;margin-bottom:30px;font-weight:400; line-height:150%;}
		.golfmap .golfleft p span{color:#ff0000; }


			  .golfmap .golfright{  width:35%; position:relative; float:right;text-align:center; }
			     .golfmap .golfright img{   max-width:100%; text-align:center; }









		  .golfmap2 {  display:inline-block; width:100%; margin:100px 0 50px; position: relative;}
		  .golfmap2 .golfleft{  width:50%; float:left; }
	 .golfmap2 .golfleft img{   max-width:687px; width:100%; text-align:center; }

				  	.golfmap2 .golfright	  {  width:50%; float:left; padding:0 50px; }

			 	  .golfmap2 .golfright h1{ font-size:50px; font-weight:600;color:#000;}
					 	  .golfmap2 .golfright h2{ font-size:32px;margin:40px 0; font-weight:600; color:#3287e6;}
						 	  .golfmap2 .golfright h3{ font-size:22px; font-weight:700;color:#000; margin-top:30px;}
						    .golfmap2 .golfright p{ font-size:22px; font-weight:300;color:#000; margin-top:10px; line-height:130%;}




	  		  .golfmap2 {  display:inline-block; width:100%; margin:50px 0; position: relative;}
		  .golfmap2 .golfleft{  width:50%; margin-right:10%;float:left; }		
	 .golfmap2 .golfleft img{   max-width:695px; width:100%; text-align:center; }
	  	  .golfmap2 .golfleft1{  width:50%; margin-left:10%;float:left; }
	 .golfmap2 .golfleft1 img{   max-width:695px; width:100%; text-align:center; }


				  	.golfmap2 .golfright	  {  width:40%; float:left; padding:50px 0px 0; }

			 	  .golfmap2 .golfright h1{ font-size:50px; font-weight:600;color:#000;}
					 	  .golfmap2 .golfright h2{ font-size:32px;margin:40px 0; font-weight:600; color:#3287e6;}
						 	  .golfmap2 .golfright h3{ font-size:22px; font-weight:700;color:#000; margin-top:30px;}
						    .golfmap2 .golfright p{ font-size:22px; font-weight:300;color:#000; margin-top:10px; line-height:130%;}















		   .hotelgall	   { display:inline-block; width:100%; margin:100px 0; position: relative;}

		    	   .hotelgall .hgallin{ max-width:1500px;width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}			 


	 	   .hotelgall	h1   { font-size:20px; color:#555555; text-align:center; font-weight:500;text-transform: uppercase}
		     .hotelgall h2   { font-size:40px; color:#6076a9;text-align:center; margin-bottom:50px;font-weight:700; text-transform: uppercase}

     .hotelgall .p1{ float:left; width:33.3%; padding:1%;text-align:center;}
     .hotelgall .p1 img{ max-width:100%;text-align:center;}
     .hotelgall .p1 h2{ font-size:22px; color:#000;text-align:left; margin:40px 0 30px;  text-transform: uppercase;font-weight:600;}
     .hotelgall .p1 h3{ font-size:18px; color:#676767; text-align:left; line-height:140%; font-weight:400;}




       .hotelgall .p2{ float:left; width:50%; padding:1%;text-align:center;}
	        .hotelgall .p2 img{ max-width:100%;text-align:center;}
     .hotelgall .p2 h2{ font-size:22px; color:#000;text-align:left; margin:40px 0 30px;  text-transform: uppercase;font-weight:600;}
     .hotelgall .p2 h3{ font-size:18px; color:#676767; text-align:left; line-height:140%; font-weight:400;}

	       .hotelgall .p3{ float:left; background:#f5f1e5;padding:40px;width:48%;margin:1%; height:100%;text-align:center;}
		       .hotelgall .p3 img{ max-width:100%;}

 .hotelgall .p3 h2{ font-size:36px; font-family:'GmarketSansBold', sans-serif; color:#5f4907;text-align:left; margin:40px 0 20px;  text-transform: uppercase;font-weight:800;}
     .hotelgall .p3 h3{ font-size:20px; color:#000; text-align:left; margin-top:20px; line-height:140%; font-weight:500;}
	  .hotelgall .p3 h4{ font-size:20px; color:#000; text-align:left; margin-top:20px; line-height:140%; font-weight:300;}





    .hotelgall .bottomborder{ clear:both;border-bottom:1px solid #000; padding-top:70px;min-height:1px; width:100%;margin-bottom:100px;}			 



/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
    position: relative;
    display: block;
}

.brand-one__inner {
    position: relative;
    display: block;
    border-top: 1px solid var(--thm-extra);
    padding: 98px 0 99px;
}

.brand-one .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-one .swiper-slide img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.3;
    max-width: 100%;
}

.brand-one .swiper-slide img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
    display: block;
}

.google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 550px;
    width: 100%;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
    position: relative;
    display: block;
    padding: 0px 0 60px;
}

.news-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-one__img {
    position: relative;
    display: block;
    overflow: hidden;
}

.news-one__img img {
    width: 100%;
    transition: all 500ms ease;
    transform: scale(1);
}

.news-one__single:hover .news-one__img img {
    transform: scale(1.05);
}

.news-one__img>a {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-black-rgb), 0.4);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--thm-base);
    transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-30%);
}

.news-one__img>a>span {
    position: relative;
}

.news-one__img>a>span::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease;
}

.news-one__img>a>span::after {
    content: '';
    transition: all 500ms ease;
    width: 2px;
    height: 20px;
    background-color: var(--thm-base);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.news-one__img>a:hover>span::before,
.news-one__img>a:hover>span::after {
    background-color: var(--thm-primary);
}

.news-one__single:hover .news-one__img>a {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.news-one__date-box {
    position: absolute;
    bottom: 0;
    left: 50px;
    background-color: var(--thm-base);
    padding: 7px 20px 6px;
}

.news-one__date-box p {
    font-size: 12px;
    margin: 0;
    line-height: 22px;
}

.news-one__content {
    position: relative;
    display: block;
    padding: 20px 50px 50px;
    border: 1px solid var(--thm-extra);
    border-top: 0;
}

.news-one__content:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-extra);
    height: 11px;
}

.news-one__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-one__meta li {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 400;
}

.news-one__meta li+li {
    margin-left: 12px;
}

.news-one__meta li a {
    color: var(--thm-gray);
    transition: all 500ms ease;
}

.news-one__meta li a:hover {
    color: var(--thm-primary);
}

.news-one__meta li a i {
    color: var(--thm-primary);
}

.news-one__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
}

.news-one__title a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.news-one__title a:hover {
    color: var(--thm-primary);
}

.news-one__read-more {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    margin-top: -11px;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: top center;
    z-index: 2;
}

.news-one__single:hover .news-one__read-more {
    transform: scaleY(1.0);
}

.news-one__read-more>a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--thm-base);
    padding-left: 50px;
    padding-top: 3px;
    padding-bottom: 3px;
}

.news-one__read-more>a>i {
    font-size: 15px;
    margin-left: 15px;
    position: relative;
    top: 2px;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
    padding-bottom: 90px;
}

.news-two .news-one__content:before {
    width: 100%;
    transition: all 500ms ease;
}

.news-two .news-one__single:hover .news-one__content:before {
    width: 0%;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
    position: relative;
    display: block;
}

.site-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    z-index: -1;
}

.site-footer-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ac802a;
    z-index: -1;
}

.site-footer__top {
    position: relative;
    display: block;
    margin-bottom: 91px;
}

.site-footer__call-and-social {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.site-footer__call {
    margin-right: 40px;
}

.site-footer__call p {
    font-size: 24px;
    color: #9e9e9e;
    margin: 0;
    font-weight: 300;
}

.site-footer__call p a {
    color: var(--thm-base);
    font-weight: 400;
    transition: all 500ms ease;
}

.site-footer__call p a:hover {
    color: var(--thm-primary);
}

.site-footer__social {
    display: flex;
    align-items: center;
}

.site-footer__social a {
    position: relative;
    height: 40px;
    width: 40px;
    font-size: 14px;
    border: 1px solid #404040;
    color: #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.site-footer__social a:hover {
    color: var(--thm-primary);
    border: 1px solid transparent;
}

.site-footer__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-base);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.site-footer__social a:hover:before {
    transform: scaleX(1.0);
}

.site-footer__social a+a {
    margin-left: 10px;
}

.footer-widget__title {
    font-size: 22px;
    color: var(--thm-base);
    line-height: 32px;
    margin-bottom: 30px;
}

.footer-widget__contact-text {
    font-size: 16px;
    color: #9e9e9e;
    line-height: 34px;
    margin: 0;
}

.footer-widget__contact-phone-and-email {
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
}

.footer-widget__contact-email {
    color: var(--thm-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-email:hover {
    color: var(--thm-primary);
}

.footer-widget__contact-phone {
       color: #f78f00;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__contact-phone:hover {
color: #f78f00;;
}

.footer-widget__links {
    position: relative;
    display: block;
    margin-right: 38px;
}

.footer-widget__links-list {
    position: relative;
    display: block;
    float: left;
}

.footer-widget__links-list li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #9e9e9e;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
    color: var(--thm-base);
}

.footer-widget__links-list li a:before {
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: -10px;
    content: "";
    width: 3px;
    background-color: var(--thm-primary);
    transition: transform 500ms ease;
    transform: scale(0);
}

.footer-widget__links-list li a:hover:before {
    transform: scale(1);
}

.footer-widget__links-list-two {
    float: right;
}

.footer-widget__newsletter-form {
    position: relative;
    display: block;
    margin-top: -17px;
}

.footer-widget__newsletter-input-box {
    position: relative;
    display: block;
}

.footer-widget__newsletter-input-box:before {
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    content: "";
    height: 3px;
    background-color: rgba(var(--thm-base-rgb), .20);
    border-radius: 0;
}

.footer-widget__newsletter-input-box input[type="email"] {
    font-size: 16px;
    color: #9e9e9e;
    font-weight: 400;
    height: 70px;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding-right: 60px;
    outline: none;
}

.footer-widget__newsletter-btn {
    position: absolute;
    top: 50%;
    right: 0;
    height: 70px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
    border: 0;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 500ms ease;
    padding: 0;
}

.footer-widget__newsletter-bottom {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.footer-widget__newsletter-bottom-icon {
    height: 18px;
    width: 18px;
    border: 1px solid rgba(var(--thm-base-rgb), .20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-widget__newsletter-bottom-icon i {
    font-size: 8px;
    color: #9e9e9e;
}

.footer-widget__newsletter-bottom-text {
    margin-left: 10px;
}

.footer-widget__newsletter-bottom-text p {
    font-size: 16px;
    margin: 0;
    color: #9e9e9e;
    font-weight: 400;
}

.site-footer__copy-right {
    position: relative;
    display: block;
    padding: 60px 0 52px;
}

.site-footer__copy-right-inner {
    position: relative;
    display: block;
}

.site-footer__copy-right-text {
    font-size: 16px;
    color: #9e9e9e;
    margin: 0;
}

.site-footer__copy-right-text a {
    color: #9e9e9e;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.site-footer__copy-right-text a:hover {
    color: var(--thm-base);
}

/*--------------------------------------------------------------
# Get To Know
--------------------------------------------------------------*/
.get-to-know {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.get-to-know-shape-1 {
    position: absolute;
    top: 115px;
    right: 200px;
    -webkit-animation-name: squareMover;
    animation-name: squareMover;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.get-to-know-shape-2 {
    position: absolute;
    bottom: 145px;
    right: 125px;
}

.get-to-know-shape-2 img {
    -webkit-animation: animation1 5s ease-in infinite;
    animation: animation1 5s ease-in infinite;
}

.get-to-know__left {
    position: relative;
    display: block;
}

.get-to-know__img-box {
    position: relative;
    display: block;
    margin-left: -362px;
    margin-right: 321px;
}

.get-to-know__img {
    position: relative;
    display: block;
}

.get-to-know__img img {
    width: 100%;
}

.get-to-know__content {
    position: absolute;
    right: -300px;
    top: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--thm-primary);
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 58px;
    padding-right: 56px;
}

.get-to-know__icon span {
    position: relative;
    display: inline-block;
    font-size: 65px;
    color: var(--thm-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.get-to-know__content:hover .get-to-know__icon span {
    transform: rotateY(180deg);
}

.get-to-know__text-1 {
    font-size: 30px;
    color: var(--thm-base);
    margin: 0;
    line-height: 40px;
    padding-top: 23px;
    padding-bottom: 42px;
}

.get-to-know__text-2 {
    color: var(--thm-base);
    margin: 0;
    padding-bottom: 123px;
}

.get-to-know__btn {
    border: 1px solid var(--thm-base);
    background-color: var(--thm-primary);
    padding: 11px 40px 11px;
    color: var(--thm-base);
}

.get-to-know__btn:after {
    background-color: var(--thm-base);
}

.get-to-know__btn:hover {
    color: var(--thm-primary);
}

.get-to-know__right {
    position: relative;
    display: block;
    padding-top: 120px;
    margin-left: 70px;
}

.get-to-know__right .section-title {
    margin-bottom: 29px;
}

.get-to-know__right-text-1 {
    color: var(--thm-black);
    font-weight: 500;
    margin: 0;
}

.get-to-know__right-text-2 {
    margin: 0;
    padding-top: 33px;
    padding-bottom: 39px;
}

.get-to-know__points {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 58px;
}

.get-to-know__points li {
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 20px 0px rgb(0, 0, 0, .07);
    padding: 11px 25px 10px;
}

.get-to-know__points li+li {
    margin-left: 25px;
}

.get-to-know__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.get-to-know__points li .text {
    margin-left: 10px;
}

.get-to-know__points li .text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--thm-black);
    margin: 0;
}

.get-to-know__founder {
    font-size: 30px;
    color: var(--thm-primary);
    font-family: var(--thm-reey-font);
    line-height: 40px;
    font-weight: 400;
}

.get-to-know__founder span {
    font-size: 18px;
    color: var(--thm-black);
    font-family: var(--thm-font);
}

/*--------------------------------------------------------------
# Discover World Two
--------------------------------------------------------------*/
.discover-world-two {
    position: relative;
    display: block;
    padding: 40px 0 40px;
}

.discover-world-two-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    z-index: -1;
}

.discover-world-two-bg:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    
    z-index: -1;
}

/*--------------------------------------------------------------
# Project Two
--------------------------------------------------------------*/
.project-two {
    position: relative;
    display: block;
    padding: 0px auto 0px;
    z-index: 1;
}

.project-two:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    padding: 50px 0 50px;
    z-index: -1;
}
.project-two .project-one__single{
width:33.3%; float:left;
}

.project-two__carousel.owl-carousel .owl-stage-outer {
  /*  margin-right: -360px;*/
	 margin-right: 0px;
    padding-bottom: -130px;
}

.project-two__carousel.owl-theme .owl-nav {
    position: absolute;	display:block !important;
    top: 230px;
    left: -51.2%;
}

.project-two__carousel.owl-theme .owl-nav .owl-next {
    height: 50px;
    width: 50px;
    background: var(--thm-base);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 12px;
    text-align: center;
    margin: 0;
    margin-left: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev {
    height: 50px;
    width: 50px;
    background: var(--thm-base);
    border-radius: 50%;
    color: var(--thm-black);
    font-size: 12px;
    text-align: center;
    margin: 0;
    margin-right: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-two__carousel.owl-theme .owl-nav .owl-prev span {
    position: relative;
    display: inline-block;
    transform: rotate(180deg);
}

.project-two__carousel.owl-theme .owl-nav .owl-prev .icon-right-arrow-angle,
.project-two__carousel.owl-theme .owl-nav .owl-next .icon-right-arrow-angle {
    font-weight: bold;
}

.project-two__carousel.owl-theme .owl-nav .owl-next:hover,
.project-two__carousel.owl-theme .owl-nav .owl-prev:hover {
    color: var(--thm-base);
    background: var(--thm-primary);
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.brand-two__inner {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--thm-extra);
    padding-bottom: 112px;
}

.brand-two__left {
    position: relative;
    display: block;
}

.brand-two__left .section-title {
    margin-bottom: 28px;
}

.brand-two__text {
    margin: 0;
    font-weight: 300;
}

.brand-two__points {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.brand-two__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.brand-two__points li+li {
    margin-left: 40px;
}

.brand-two__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.brand-two__points li .text {
    margin-left: 10px;
}

.brand-two__points li .text p {
    font-size: 16px;
    color: var(--thm-black);
    margin: 0;
}

.brand-two__right {
    position: relative;
    display: block;
    margin-left: -30px;
}

.brand-two__list {
    position: relative;
    display: block;
    overflow: hidden;
}

.brand-two__list li {
    position: relative;
    float: left;
}

.brand-two__list li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-color: var(--thm-extra);
    width: 1px;
}

.brand-two__list li:nth-child(1):before {
    display: none;
}

.brand-two__list li:nth-child(4):before {
    display: none;
}

.brand-two__list li:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: var(--thm-extra);
    height: 1px;
}

.brand-two__list li:nth-child(4):after {
    display: none;
}

.brand-two__list li:nth-child(5):after {
    display: none;
}

.brand-two__list li:nth-child(6):after {
    display: none;
}

.brand-two__list li a img {
    -webkit-transition: 500ms;
    transition: 500ms;
    opacity: 0.2;
}

.brand-two__list li:hover a img {
    opacity: 1;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
    position: relative;
    display: block;
    padding: 80px 0 80px;
}

.team-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.team-one__img:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(var(--thm-black-rgb), .30);
    width: 0%;
    transform: translateY(100%);
    transition: all 500ms ease;
    z-index: 1;
}

.team-one__single:hover .team-one__img:before {
    transform: translateY(0);
    width: 100%;
}

.team-one__img img {
    width: 100%;
    transform: scale(1);
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__img img {
    transform: scale(1.05);
}

.team-one__social {
    position: absolute;
    display: flex;
    flex-direction: column;
    left: 0;
    bottom: 0;
    background-color: var(--thm-base);
    padding: 40px 12px;
    transform: scaleY(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: bottom center;
    z-index: 3;
}

.team-one__single:hover .team-one__social {
    transform: scaleY(1.0);
}

.team-one__social a {
    font-size: 15px;
    color: var(--thm-black);
    position: relative;
    transform: rotate(-90deg);
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.team-one__social a:hover {
    color: var(--thm-primary);
}

.team-one__social a+a {
    margin-top: 20px;
}


.team-one__content {
    position: relative;
    display: block;
    text-align: center;
    background-color: #fcefe9;
	border-radius: 20px;
    padding: 60px 20px 60px;
}

.team-one__content:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--thm-primary);
    content: "";
    width: 0%;
    opacity: 0;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__content:before {
    width: 100%;
    opacity: 1;
}




.team-one__content1 {
    position: relative;
    display: block;
    text-align: center;
	border-radius:20px;
    background-color: #fbe3f5;
    padding: 60px 20px 60px;
}

.team-one__content1:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--thm-primary);
    content: "";
    width: 0%;
    opacity: 0;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__content1:before {
    width: 100%;
    opacity: 1;
}




.team-one__content2 {
    position: relative;
    display: block;
    text-align: center;
	border-radius: 20px;
    background-color: #e0f9fb;
    padding: 60px 20px 60px;
}

.team-one__content2:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--thm-primary);
    content: "";
    width: 0%;
    opacity: 0;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__content2:before {
    width: 100%;
    opacity: 1;
}




.team-one__content3 {
    position: relative;
    display: block;
    text-align: center;
	border-radius: 20px;
    background-color: #eae6fe;
    padding: 60px 20px 60px;
}

.team-one__content3:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--thm-primary);
    content: "";
    width: 0%;
    opacity: 0;
    transition: all 500ms ease;
}

.team-one__single:hover .team-one__content3:before {
    width: 100%;
    opacity: 1;
}




.team-one__icon span {
    font-size: 65px;
    color: var(--thm-black);
    transition: all 500ms ease;
}
.team-one__icon img {
  max-width:100%;
}
.team-one__single:hover .services-one__icon span {
    color: var(--thm-primary);
}




.team-one__name {
	font-family: 'Pretendard',sans-serif;
    font-size: 24px;
    font-weight: 500;
	margin-top:40px;
    line-height: 32px;
}

.team-one__title {
	font-family: 'Pretendard',sans-serif;
    font-size: 14px;
    margin: 0;
    line-height: 24px;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
    position: relative;
    display: block;
    background-color: #f6f6f6;
    padding: 120px 0 0;
}

.testimonial-one-shape {
    position: absolute;
    top: -89px;
    right: 90px;
    -webkit-animation-name: squareMover;
    animation-name: squareMover;
    -webkit-animation-duration: 10s;
    animation-duration: 10s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.testimonial-one__carousel {
    position: relative;
    display: block;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
    padding-top: 45px;
}

.testimonial-one__single {
    position: relative;
    display: block;
    text-align: center;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .07);
    padding: 77px 60px 37px;
    z-index: 3;
}

.testimonial-one__single:before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--thm-primary);
    content: "";
    width: 0%;
    opacity: 0;
    transition: all 500ms ease;
}

.testimonial-one__single:hover:before {
    width: 100%;
    opacity: 1;
}

.testimonial-one__img {
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
}

.testimonial-one__img img {
    width: auto !important;
    margin: 0 auto;
}

.testimonial-one__text {
    font-size: 20px;
    margin: 0;
    line-height: 36px;
}

.testimonial-one__client-name {
    color: var(--thm-black);
    margin: 0;
    font-weight: 500;
    padding-top: 18px;
    padding-bottom: 13px;
}

.testimonial-one__quote span {
    font-size: 65px;
    color: var(--thm-primary);
}

/*--------------------------------------------------------------
# The Only
--------------------------------------------------------------*/
.the-only {
    position: relative;
    display: block;
    padding: 240px 0 120px;
    background-color: var(--thm-black);
    margin-top: -120px;
}

.the-only-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
}

.the-only__knowledge {
    position: relative;
    display: block;
    background-color: var(--thm-primary);
    padding: 44px 50px 28px;
}

.the-only__knowledge h3 {
    font-size: 24px;
    color: var(--thm-base);
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 25px;
}

.the-only__knowledge a {
    font-size: 14px;
    color: var(--thm-base);
    display: inline-block;
    font-weight: 500;
}

.the-only__scale-your-business {
    position: relative;
    display: block;
    margin-top: 63px;
    margin-left: 35px;
    margin-right: -14px;
}

.the-only__scale-your-business p {
    font-size: 24px;
    margin: 0;
    line-height: 40px;
    color: var(--thm-base);
}

.the-only__text-box {
    position: relative;
    display: block;
    margin-top: 50px;
    margin-left: 33px;
    margin-right: -30px;
}

.the-only__text-box p {
    color: #9e9e9e;
    font-weight: 300;
    margin: 0;
}

.the-only__points-box {
    position: relative;
    display: block;
    margin-top: 50px;
    margin-left: 32px;
}

.the-only__points {
    position: relative;
    display: block;
}

.the-only__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.the-only__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.the-only__points li .text {
    margin-left: 20px;
}

.the-only__points li .text p {
    color: var(--thm-base);
    margin: 0;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    display: block;
    padding: 0 0 120px;
}

.cta-one__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f6f6f6;
    padding: 92px 0;
    padding-left: 100px;
}

.cta-one__inner:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10000000px;
    content: "";
    background-color: #f6f6f6;
    left: 0;
    z-index: -1;
}

.cta-one__inner:after {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    left: 0;
    width: 20px;
}

.cta-one__title {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
}

.cta-one__btn {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}

.cta-one__btn:after {
    background-color: var(--thm-black);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    position: relative;
    display: block;
    padding: 226px 0 127px;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(var(--thm-black-rgb), .12);
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: left;
}

.page-header__inner h2 {
    font-size: 50px;
    color: var(--thm-base);
    line-height: 52px;
    font-weight: 600;
    margin-top: 9px;
}

.thm-breadcrumb {
    padding-top: 5px;
}

.thm-breadcrumb li {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 24px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li+li {
    margin-left: 5px;
}

.thm-breadcrumb li a {
    color: var(--thm-base);
    font-size: 24px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.thm-breadcrumb li:hover {
    color: var(--thm-base);
}

.thm-breadcrumb li:hover a {
    color: var(--thm-base);
}

/*Services Three*/
.services-three {
    padding-top: 120px;
}

/*Services Page The Only*/
.services-page-the-only {
    padding-top: 120px;
    margin-top: 0;
}

/*Services Page Brand*/

.services-page__brand .brand-two__inner {
    border-bottom: 0;
    padding-bottom: 0;
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.service-details__sidebar {
    position: relative;
    display: block;
}

.service-details__sidebar-service {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 48px 30px 23px;
}

.service-details__sidebar-title {
    font-size: 20px;
    font-weight: 400;
    padding-left: 20px;
    margin-bottom: 18px;
}

.service-details__sidebar-service-list {
    margin: 0;
}

.service-details__sidebar-service-list li+li {
    margin-top: 2px;
}

.service-details__sidebar-service-list li a {
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 16px 20px;
}

.service-details__sidebar-service-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    color: var(--thm-black);
}

.service-details__sidebar-service-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.service-details__sidebar-service-list li a span.icon-right-arrow-angle {
    font-weight: bold;
}

.service-details__sidebar-service-list li a:hover span {
    color: var(--thm-primary);
}

.service-details__need-help {
    position: relative;
    display: block;
    padding: 60px 60px 49px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
}

.service-details__need-help-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: -1;
}

.service-details__need-help-bg-overly {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--thm-primary-rgb), .90);
    z-index: -1;
}

.service-details__need-help-icon {
    height: 85px;
    width: 85px;
    background-color: var(--thm-black);
    color: var(--thm-base);
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
    background-color: var(--thm-base);
    color: var(--thm-primary);
}

.service-details__need-help-title {
    font-size: 34px;
    color: var(--thm-base);
    font-weight: 400;
    line-height: 46px;
    font-family: var(--thm-reey-font);
}

.service-details__need-help-contact {
    position: relative;
    display: block;
    margin-top: 27px;
}

.service-details__need-help-contact p {
    font-size: 16px;
    color: var(--thm-base);
    margin: 0;
    line-height: 18px;
}

.service-details__need-help-contact a {
    font-size: 24px;
    color: var(--thm-base);
}

.service-details__right {
    position: relative;
    display: block;
}

.service-details__img {
    position: relative;
    display: block;
}

.service-details__img img {
    width: 100%;
}

.service-details__content {
    position: relative;
    display: block;
    margin-top: 22px;
}

.service-details__title {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 37px;
}

.service-details__text {
    font-weight: 300;
    margin: 0;
}

.service-details__benefits {
    position: relative;
    display: block;
    margin-top: 51px;
    margin-bottom: 60px;
}

.service-details__benefits-img {
    position: relative;
    display: block;
}

.service-details__benefits-img img {
    width: 100%;
}

.service-details__benefits-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 26px;
    margin-top: -8px;
}

.service-details__benefits-text {
    font-size: 18px;
    margin: 0;
}

.service-details__benefits-list {
    position: relative;
    display: block;
    margin-top: 33px;
}

.service-details__benefits-list li {
    position: relative;
    display: flex;
    align-items: center;
}

.service-details__benefits-list li+li {
    margin-top: 6px;
}

.service-details__benefits-list li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.service-details__benefits-list li .text {
    margin-left: 10px;
}

.service-details__benefits-list li .text p {
    font-size: 18px;
    color: var(--thm-black);
    font-weight: 400;
    margin: 0;
}

.service-details__faq .faq-one-accrodion .accrodion {
    background-color: #f6f6f6;
}

/*--------------------------------------------------------------
# Project Page
--------------------------------------------------------------*/
.project-page {
    position: relative;
    display: block;
    padding: 108px 0 90px;
}

.project-filter {
    position: relative;
    display: block;
    text-align: center;
    margin-bottom: 60px;
}

.project-filter.style1 li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.project-filter.style1 li .filter-text {
    position: relative;
    display: inline-block;
    padding-left: 15px;
    color: var(--thm-gray);
    font-size: 18px;
    font-weight: 400;
    display: block;
    cursor: pointer;
    transition: all 0.4s ease;
}

.project-filter.style1 li .filter-text:before {
    position: absolute;
    top: 8px;
    left: 2px;
    bottom: 10px;
    content: "";
    background: var(--thm-primary);
    width: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 0;
    transform: scale(0);
}

.project-filter.style1 li .filter-text:hover:before,
.project-filter.style1 li.active .filter-text:before {
    transform: scale(1.0);
}

.project-filter.style1 li:hover .filter-text,
.project-filter.style1 li.active .filter-text {
    color: var(--thm-primary);
}

.project-filter.style1 li .count {
    color: var(--thm-black);
    font-size: 12px;
    line-height: 26px;
    font-weight: 500;
    display: inline-block;
    padding: 0 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    top: -4px;
}

.project-filter.style1 li:hover .count,
.project-filter.style1 li.active .count {
    color: var(--thm-primary);
    opacity: 1;
}

.project-filter.style1 li+li {
    margin-left: 4px;
}

.project-page .project-one__single {
    margin-bottom: 30px;	
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.project-details__img {
    position: relative;
    display: block;
}

.project-details__img img {
    width: 100%;
}

.project-details__info {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--thm-base);
    padding: 54px 60px;
}

.project-details__info-list {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details__info-list li+li {
    margin-left: 105px;
}

.project-details__info-client {
    font-size: 18px;
    color: var(--thm-gray);
    font-weight: 400;
    margin-bottom: 2px;
}

.project-details__info-name {
    font-size: 16px;
    color: var(--thm-black);
    margin: 0;
}

.project-details__content {
    position: relative;
    display: block;
    margin-top: 33px;
}

.project-details__title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 37px;
}

.project-details__text-1 {
    margin: 0;
    font-weight: 300;
    padding-bottom: 34px;
}

.project-details__text-2 {
    margin: 0;
    font-weight: 300;
    padding-bottom: 37px;
}

.project-details__points {
    position: relative;
    display: block;
}

.project-details__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.project-details__points li+li {
    margin-top: 6px;
}

.project-details__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.project-details__points li .text {
    margin-left: 10px;
}

.project-details__points li .text p {
    font-size: 20px;
    color: var(--thm-black);
    margin: 0;
    line-height: 30px;
}

.project-details__pagination-box {
    position: relative;
    display: block;
    text-align: center;
    border-top: 1px solid var(--thm-extra);
    border-bottom: 1px solid var(--thm-extra);
    padding: 50px 0;
    margin-top: 113px;
}

.project-details__pagination li {
    display: inline-block;
}

.project-details__pagination li.next {
    float: left;
    position: relative;
}

.project-details__pagination li a {
    font-size: 18px;
    color: var(--thm-black);
    font-weight: 400;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}

.project-details__pagination li a:hover {
    color: var(--thm-primary);
}

.project-details__pagination li.next i {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    font-size: 10px;
    transform: rotate(180deg);
}

.project-details__pagination li.previous {
    position: relative;
    float: right;
}

.project-details__pagination li.previous i {
    margin-left: 10px;
    font-size: 10px;
}

.project-details__pagination li.next .icon-right-arrow-angle,
.project-details__pagination li.previous .icon-right-arrow-angle {
    font-weight: bold;
}

/*--------------------------------------------------------------
# Similar Work
--------------------------------------------------------------*/
.simialr-work {
    position: relative;
    display: block;
    padding: 0 0 90px;
}

.simialr-work .project-one__single {
    margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Grow And Experience
--------------------------------------------------------------*/
.grow-and-experience-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.grow-and-experience-two__left {
    position: relative;
    display: block;
    margin-right: 70px;
}

.grow-and-experience-two__left .section-title {
    margin-bottom: 28px;
}

.grow-and-experience-two__text {
    margin: 0;
    font-weight: 300;
    margin-bottom: 30px;
}

.grow-and-experience-two__list {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.grow-and-experience-two__list li {
    position: relative;
    display: flex;
    align-items: center;
}

.grow-and-experience-two__list li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.grow-and-experience-two__list li .text {
    margin-left: 10px;
}

.grow-and-experience-two__list li .text p {
    margin: 0;
    color: var(--thm-black);
}

.grow-and-experience-two__btn {
    border: 1px solid var(--thm-black);
    background-color: transparent;
}

.grow-and-experience-two__btn:after {
    background-color: var(--thm-black);
}

.grow-and-experience-two__right {
    position: relative;
    display: block;
    margin-left: -26px;
}

.grow-and-experience-two__images {
    position: relative;
    display: block;
    overflow: hidden;
}

.grow-and-experience-two__images li {
    position: relative;
    display: block;
    float: left;
}

.grow-and-experience-two__images li+li {
    margin-left: 12px;
}

/*--------------------------------------------------------------
# About Page Discover World Two
--------------------------------------------------------------*/
.about-page-discover-world-two {
    padding-bottom: 240px;
}

/*--------------------------------------------------------------
# About Page Inspire
--------------------------------------------------------------*/
.about-page-inspire {
    margin-top: -120px;
}

/*--------------------------------------------------------------
# About Page Team
--------------------------------------------------------------*/
.about-page-team {
    padding-top: 120px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.news-details__left {
    position: relative;
    display: block;
}

.news-details__img {
    position: relative;
    display: block;
}

.news-details__img img {
    width: 100%;
}

.news-details__date-box {
    position: absolute;
    bottom: 0;
    left: 50px;
    background-color: var(--thm-base);
    padding: 7px 20px 6px;
}

.news-details__date-box p {
    font-size: 12px;
    margin: 0;
    line-height: 22px;
}

.news-details__content {
    position: relative;
    display: block;
    margin-top: 20px;
}

.news-details__meta {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 0;
}

.news-details__meta li {
    font-size: 12px;
    color: var(--thm-gray);
    font-weight: 400;
}

.news-details__meta li+li {
    margin-left: 12px;
}

.news-details__meta li a {
    color: var(--thm-gray);
    transition: all 500ms ease;
}

.news-details__meta li a:hover {
    color: var(--thm-primary);
}

.news-details__meta li a i {
    color: var(--thm-primary);
}

.news-details__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
    margin-bottom: 21px;
}

.news-details__text-1 {
    margin: 0;
    font-weight: 300;
}

.news-details__text-2 {
    margin: 0;
    font-weight: 300;
    padding-top: 35px;
    padding-bottom: 35px;
}

.news-details__text-3 {
    margin: 0;
    font-weight: 300;
}


.news-details__bottom {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0 30px;
    margin-top: 51px;
    border-top: 1px solid var(--thm-extra);
}

.news-details__bottom p {
    margin: 0;
}

.news-details__tags span {
    color: var(--thm-black);
    font-weight: 500;
    font-size: 18px;
    margin-right: 16px;
}

.news-details__tags-btn {
    position: relative;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    display: inline-block;
    padding: 2px 30px;
    border: 1px solid var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__tags-btn:after {
    background-color: var(--thm-black);
}

.news-details__tags a+a {
    margin-left: 6px;
}

.news-details__social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.news-details__social-list a {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--thm-black);
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.news-details__social-list a+a {
    margin-left: 30px;
}

.news-details__social-list a:hover {
    color: var(--thm-primary);
}


/* author */
.author-one {
    background-color: #f6f6f6;
    padding: 60px 60px 60px;
    display: -webkit-box;
    display: flex;
    margin-bottom: 53px;
}

.author-one__image img {
    border-radius: var(--thm-border-radius);
}

.author-one__content {
    margin-left: 35px;
}

.author-one__content h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
}

.author-one__content p {
    margin: 0;
    margin-top: 21px;
    font-size: 16px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
    margin: 0;
    color: var(--thm-black);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 53px;
}

.comment-one__single {
    display: -webkit-box;
    display: flex;
    border-bottom: 1px solid var(--thm-extra);
    padding-bottom: 60px;
    margin-bottom: 58px;
}

.comment-one__content {
    position: relative;
    margin-left: 45px;
}

.comment-one__content h3 {
    margin: 0;
    font-size: 20px;
    color: var(--thm-black);
    font-weight: 400;
    margin-bottom: 25px;
}

.comment-one__content p {
    font-size: 16px;
    margin: 0;
}

.comment-one__btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    display: inline-block;
    padding: 2px 30px;
    border: 1px solid var(--thm-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.comment-one__btn:after {
    background-color: var(--thm-black);
}

.comment-one__image img {
    border-radius: 50%;
}

.comment-form .comment-form__title {
    margin-top: -5px;
}

.comment-one__form .row {
    --bs-gutter-x: 20px;
}

.comment-form__input-box {
    position: relative;
    display: block;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
    height: 68px;
    width: 100%;
    border: none;
    background: #f6f6f6;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 20px;
    border-radius: 0px;
    outline: none;
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 400;
    display: block;
}

.comment-form__input-box textarea {
    font-size: 14px;
    color: var(--thm-gray);
    font-weight: 400;
    height: 195px;
    width: 100%;
    background: #f6f6f6;
    padding: 20px 30px 30px;
    border: none;
    border-radius: 0px;
    outline: none;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
    .sidebar {
        margin-top: 50px;
    }

}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}

.sidebar__search {
    position: relative;
    display: block;
}

.sidebar__search-form {
    position: relative;
}

.sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--thm-primary);
    color: var(--thm-base);
    font-size: 16px;
    font-weight: 500;
    padding-left: 50px;
    height: 75px;
    border-radius: 0;
    width: 100%;
    padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form ::placeholder {
    color: var(--thm-base);
    opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar__search-form ::-ms-input-placeholder {
    color: var(--thm-base);
}

.sidebar__search-form button[type="submit"] {
    background-color: transparent;
    color: var(--thm-base);
    font-size: 22px;
    position: absolute;
    top: 0;
    right: 18px;
    bottom: 0;
    width: 60px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
}

.sidebar__post {
    position: relative;
    display: block;
    padding: 45px 50px 43px;
    background-color: #f6f6f6;
}

.sidebar__post-list {
    margin: 0;
}

.sidebar__post-list li {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.sidebar__post-list li+li {
    margin-top: 19px;
}

.sidebar__post-image {
    margin-right: 20px;
}

.sidebar__post-image>img {
    width: 60px;
}

.sidebar__post-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 26px;
}

.sidebar__post-content_meta {
    font-size: 12px;
    font-weight: 400;
    color: var(--thm-gray);
    display: block;
}

.sidebar__post-content_meta i {
    font-size: 12px;
    color: var(--thm-primary);
    padding-right: 4px;
}

.sidebar__post-content h3 a {
    color: var(--thm-black);
    transition: all 500ms ease;
}

.sidebar__post-list li:hover .sidebar__post-content h3 a {
    color: var(--thm-primary);
}

.sidebar__category {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 45px 30px 36px;
}

.sidebar__category .sidebar__title {
    padding-left: 20px;
    margin-bottom: 13px;
}

.sidebar__category-list {
    margin: 0;
}

.sidebar__category-list li+li {
    margin-top: 9px;
}

.sidebar__category-list li a {
    color: var(--thm-gray);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    background: none;
    padding: 3px 20px;
}

.sidebar__category-list li a:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, .05);
    color: var(--thm-gray);
}

.sidebar__category-list li a span {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    color: var(--thm-black);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.sidebar__category-list li a span.icon-right-arrow-angle {
    font-weight: bold;
}

.sidebar__category-list li a:hover span {
    color: var(--thm-primary);
}

.sidebar__tags {
    position: relative;
    display: block;
    background: #f6f6f6;
    padding: 47px 45px 50px;
}

.sidebar__tags .sidebar__title {
    margin-left: 5px;
    margin-bottom: 24px;
}

.sidebar__tags-list {
    margin-top: -10px;
}

.sidebar__tags-btn {
    position: relative;
    color: var(--thm-black);
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    display: inline-block;
    padding: 2px 30px;
    border: 1px solid var(--thm-black);
    margin-left: 5px;
    margin-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.sidebar__tags-btn:after {
    background-color: var(--thm-black);
}

.sidebar__tags-list a+a {
    margin-left: 5px;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
}

.contact-page__left {
    position: relative;
    display: block;
}

.contact-page__left .section-title {
    margin-bottom: 28px;
}

.contact-page__text {
    font-weight: 300;
    margin: 0;
}

.contact-page__points {
    position: relative;
    display: block;
    padding-top: 35px;
    padding-bottom: 41px;
}

.contact-page__points li {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-page__points li .icon {
    height: 16px;
    width: 16px;
    border: 2px solid var(--thm-primary);
    border-radius: 50%;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-primary);
}

.contact-page__points li .text {
    margin-left: 10px;
}

.contact-page__points li .text p {
    font-size: 16px;
    margin: 0;
}

.contact-page__social {
    display: flex;
    align-items: center;
}

.contact-page__social a {
    position: relative;
    height: 40px;
    width: 40px;
    font-size: 14px;
    border: 1px solid var(--thm-extra);
    color: var(--thm-black);
    background-color: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.contact-page__social a:hover {
    color: var(--thm-base);
    border: 1px solid transparent;
}

.contact-page__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--thm-primary);
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.contact-page__social a:hover:before {
    transform: scaleX(1.0);
}

.contact-page__social a+a {
    margin-left: 10px;
}

/*--------------------------------------------------------------
# Information
--------------------------------------------------------------*/
.information {
    position: relative;
    display: block;
}

.information .row {
    --bs-gutter-x: 0px;
}

.information__single {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--thm-extra);
    padding-top: 77px;
    padding-bottom: 77px;
}

.information__icon {
    position: relative;
    font-size: 65px;
    color: var(--thm-primary);
    display: flex;
    align-items: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.information__single:hover .information__icon {
    transform: scale(1.2);
    color: var(--thm-black);
}

.information__text {
    margin-left: 30px;
}

.information__text p {
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    line-height: 35px;
}

.information__text h4 {
    font-size: 20px;
    font-weight: 300;
    color: var(--thm-gray);
    line-height: 35px;
}

.information__number-1 {
    transition: all 500ms ease;
}

.information__single:hover .information__number-1 {
    color: var(--thm-primary);
}

.information__number-2 {
    transition: all 500ms ease;
}

.information__single:hover .information__number-2 {
    color: var(--thm-primary);
}

.information__mail-1 {
    transition: all 500ms ease;
}

.information__single:hover .information__mail-1 {
    color: var(--thm-primary);
}

.information__mail-2 {
    transition: all 500ms ease;
}

.information__single:hover .information__mail-2 {
    color: var(--thm-primary);
}

.information__single-1 {
    border-left: 0;
    border-bottom: 0;
}

.information__single-2 {
    border-left: 0;
    border-bottom: 0;
    padding-left: 78px;
}

.information__single-3 {
    border-left: 0;
    border-bottom: 0;
    border-right: 0;
    padding-left: 105px;
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
    position: relative;
    display: block;
}

.contact-page-google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 560px;
    width: 100%;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
    padding-bottom: 90px;
}

.news-page .news-one__single {
    margin-bottom: 0px;
    transform: translateY(0);
    transition: all 500ms ease;
}

.news-page .news-one__single:hover {
    transform: translateY(-30px);
}







/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
float:left;
	 background:#ededed;
width:100%;
}

#footer .footer-top .footer-info {
padding:30px 0 0px; text-align:left;  margin:0 auto;		font-size:14px;  color:#565656;		font-weight:400;			 text-transform: uppercase;
}


#footer .copyright {
  text-align:left; color:#888888;  font-family: 'Pretendard', sans-serif;
  padding-top: 0px;padding-bottom:30px; font-size:14px; font-weight:400; line-height:160%;
}
#footer .copyright .tel {
 color:#161c2d;  font-family: 'Nexa Bold', sans-serif;
  padding-top: 0px; font-size:24px; vertical-align:-5px;
}
#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}






.cc01 {font-size:36px; color:#fff; font-weight:500;text-align:center; padding-top:10px;}

.cc02 {font-size:18px; color:#fff; padding-top:13px; text-align:center;line-height: 24px;}

.cc03 {font-size:18px; color:#fff; text-align:center;}



.subcon{position:relative; width:100%; min-height:600px; top:0px; margin-bottom:150px; color:#5c5c5c; font-size:17px; line-height:180%;}

.container_s{max-width:1400px;width:100%;margin-top:100px; padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}


.subcontents {position:relative;  margin:100px auto 0px;letter-spacing:0px; font-family:'Pretendard', sans-serif; color:#000; line-height:160%; font-size:19px;font-weight:400; }


.sub_tit1 {font-size:48px; color:#145122; font-weight:700; line-height:52px;}
.sub_tit2 {font-size:24px; font-weight:500; text-transform: uppercase;}
.sub_tit3 {font-size:35px; color:#145122;  font-weight:700; line-height:52px;}
.sub_tit4 {font-size:35px; color:#000; font-weight:400; line-height:52px;}


.tab{border-bottom:1px solid #d6d6d6;top:0px;width:100%;  }

.tabArea{position:relative;width:100%; height:76px;overflow:hidden;text-align:center;top:0px;z-index:99;margin-left:-25px; }
.tabArea ul{overflow:hidden;height:76px;}
.tabArea ul li{float:left;height:76px; list-style:none; }
.tabArea ul li a{display:block;height:76px;line-height:290%;overflow:hidden;border-right:1px solid #c7c7c7; color:#4d4d4d;font-size:20px;padding-top:9px;text-decoration:none; list-style:none; font-weight:500;}
.tabArea ul li.fir a{display:block;height:76px;line-height:290%;border-right:1px solid #c7c7c7; border-left:1px solid #c7c7c7;color:#4d4d4d;font-size:20px;padding-top:9px;text-decoration:none;font-weight:500;}
.tabArea ul li a.on{display:block; height:76px;width:100%; background:#145122; color:#fff;font-weight:500;padding-top:9px;font-size:20px;cursor:inherit}


.tabArea.tabOne li{width:100%}
.tabArea.tabTwo li{width:50%}
.tabArea.tabThree li{width:33.3333333%}
.tabArea.tabFour li{width:25%}
.tabArea.tabFive li{width:20%}
.tabArea.tabSix li{width:16.6666666%}




.table-responsive {
width: 100%;				
margin-bottom: 15px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border:0px;
}
.table-responsive > .table {
margin-bottom: 0;
}
.table-responsive > .table > thead > tr > th,
.table-responsive > .table > tbody > tr > th,
.table-responsive > .table > tfoot > tr > th,
.table-responsive > .table > thead > tr > td,
.table-responsive > .table > tbody > tr > td,
.table-responsive > .table > tfoot > tr > td {
white-space: nowrap;
}
.table-responsive > .table-bordered {
border: 0;
}
.table-responsive > .table-bordered > thead > tr > th:first-child,
.table-responsive > .table-bordered > tbody > tr > th:first-child,
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
.table-responsive > .table-bordered > thead > tr > td:first-child,
.table-responsive > .table-bordered > tbody > tr > td:first-child,
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
border-left: 0;
}
.table-responsive > .table-bordered > thead > tr > th:last-child,
.table-responsive > .table-bordered > tbody > tr > th:last-child,
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
.table-responsive > .table-bordered > thead > tr > td:last-child,
.table-responsive > .table-bordered > tbody > tr > td:last-child,
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
border-right: 0;
}
.table-responsive > .table-bordered > tbody > tr:last-child > th,
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
.table-responsive > .table-bordered > tbody > tr:last-child > td,
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
border-bottom: 0;
}


/* Table 1 Style */
table.table1{
margin-top:50px;margin-bottom:50px; 
width:100%;color:#000;border:0px;			
font-family:'Pretendard', sans-serif; font-weight: 400;	    border-top:1px solid #e3e3e3;

}
.table1 thead th{
padding:10px; font-size: 19px;
color:#000;	text-align:center;border-left:1px solid #e3e3e3;				  border-top:1px solid #000;	    border-bottom:1px solid #000;
background-color:#fff;    font-weight: 400;
}
.table1 thead th.fir{
padding:10px; 
color:#000;	text-align:center;
background-color:#fff; border-left:0px solid #e3e3e3;			 font-weight: 400;
}


.table1 tbody td{
padding:15px 10px; font-size: 19px;
text-align:center;							 border-left:1px solid #e3e3e3;					  line-height:120%;
background-color:#fff; border-bottom:1px solid #e3e3e3;font-family:'Pretendard', sans-serif; font-weight: 400;
color:#000;
}



.table1 tbody td.fir{
padding:15px 10px;  font-size: 19px;
text-align:center;								 border-left:0px solid #e3e3e3;
background-color:#fff; border-bottom:1px solid #e3e3e3;font-family:'Pretendard', sans-serif; font-weight: 400;
color:#000;
}



.stit1_1 {
position:relative;
margin-top:0px; padding-bottom:10px;
color: #000; font-size:32px; font-family: 'Pretendard',sans-serif; font-weight:600; line-height:180%;
text-align:center;
}
 .stit1_1 span{
position:relative;
margin-top:0px; padding-bottom:10px;
color: #00586a; font-size:32px; font-family: 'Pretendard',sans-serif; font-weight:600; line-height:180%;
text-align:center;
}



.w_logo {margin-top:20px;}


.proimg_pc {margin-top:0px;}
.proimg_mo {display:none;}








/* ******************  회사소개 :: 연혁 ********************** */
.history-con {display:flex; padding:47px 0 0;/* border-top:1px solid #919191; */}
.history-con .left-box {width:40%;}
.history-con .right-box {width:100%; padding-left:0%; -webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
 box-sizing: border-box; }
.history-con .era {font-size:3.625em; letter-spacing: -0.0603em; transition:color 0.4s;}
.history-con .img-box {margin-top:0px; position:relative; }
.history-con .year-item {display:flex; padding:50px 0; border-bottom:1px solid #e6e6e6;}
.history-con .year-item:first-child {padding-top:0;}
.history-con .year-item:last-child {padding-bottom:0; border-bottom:0;}
.history-con .year-item .year {display:block; width:170px; font-size:2.125em; letter-spacing:-0.0102em; }
.history-con .year-item .month-box {width:calc(100% - 170px);}
.history-con .year-item .item {position:relative; padding-left:107px; margin-top:16px;}
.history-con .year-item .item:first-child {margin-top:0;}
.history-con .year-item .item .month {position:absolute; left:0; top:-1px;  font-size:1.125em; letter-spacing:-0.01944em; font-weight:600; }
.history-con .year-item .item .txt {margin-left:10px; font-weight:500; font-size:1.0625em; letter-spacing:-0.02058em; color: #555; line-height:1.4; margin-top:16px;}
.history-con .year-item .item .txt:first-child {margin-top:0;}
.history-tab-content .sub-tab-con {padding-top:90px;}
.history-tab-content .sub-tab-con:first-child  {padding-top:0;}
.history-tab-content .sub-tab-con:first-child .era ,
.history-tab-content .sub-tab-con.active .era {color:var(--main-color)}

@media all and (max-width:1600px){

 

.whitehotel {
  display: flex;			 
  align-items: stretch; /* 높이를 서로 맞춤 */
}
  
.whitehotel .hotelleft {
  display: block;
width: 50%;
  height: auto;
}

.whitehotel .hotelleft img {
  display: block;
width: 100%;
  height: auto;
}

.whitehotel .hotelright {
  flex: 1;
}

.whitehotel .r1 {
  background-color: #cfdeeb;
  color:#2a4458;					  
  padding:40px 10px 0 40px;	  
  height: 50%;			
  float:left; 
  font-weight:600;    font-size:30px;
  width:50%;
}


.whitehotel .r1 p {   
  color:#55697a;		 font-size:17px; 		 font-weight:300;			   margin-top:10px;
}


.whitehotel .r2 {
  background-color: #004a74;
   color:#fff;		  padding:40px 10px 0 40px;	  
  height: 50%;			float:left;  	   font-weight:600;    font-size:30px;
  width:50%;
}

.whitehotel .r2 p {   
  color:#fff;		font-size:19px; 		 font-weight:300;			   margin-top:40px;
}


.whitehotel .r3 {
  background-color: #6f9abc;
  color:#fff;		    padding:40px 10px 0 40px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:30px;
  width:50%;
}

.whitehotel .r3 p {   
  color:#fff;		 	font-size:19px;    font-weight:300;		      margin-top:40px;
}


.whitehotel .r4 {
  background-color: #0a2e4d;
  color:#fff;		    padding:40px 10px 0 40px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:30px;
  width:50%;
}


 .whitehotel .r4 p {   
  color:#fff;		 	  font-size:19px; 	    font-weight:300;				     margin-top:40px;
}




		 }




/* ******************  회사소개 :: 연혁 ********************** */
@media all and (max-width:1380px){
	.history-con .year-item {display:block;}
	.history-con .year-item .year {width:100%;}
	.history-con .year-item .month-box {width:100%; margin-top:20px;}
	.history-con .year-item .item {padding-left:85px;}

	  



.whitehotel {
  display: flex;			 
  align-items: stretch; /* 높이를 서로 맞춤 */
}
  
.whitehotel .hotelleft {
  display: block;
width: 50%;
  height: auto;
}

.whitehotel .hotelleft img {
  display: block;
width: 100%;
  height: auto;
}

.whitehotel .hotelright {
  flex: 1;
}

.whitehotel .r1 {
  background-color: #cfdeeb;
  color:#2a4458;					  
  padding:30px 10px 0 30px;	  
  height: 50%;			
  float:left; 
  font-weight:600;    font-size:26px;
  width:50%;
}


.whitehotel .r1 p {   
  color:#55697a;		 font-size:17px; 		 font-weight:300;			   margin-top:0px;
}


.whitehotel .r2 {
  background-color: #004a74;
   color:#fff;		  padding:30px 10px 0 30px;	  
  height: 50%;			float:left;  	   font-weight:600;    font-size:26px;
  width:50%;
}

.whitehotel .r2 p {   
  color:#fff;		font-size:19px; 		 font-weight:300;		line-height:130%;	   margin-top:20px;
}


.whitehotel .r3 {
  background-color: #6f9abc;
  color:#fff;		    padding:30px 10px 0 30px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:26px;
  width:50%;
}

.whitehotel .r3 p {   
  color:#fff;		 	font-size:19px;    font-weight:300;		line-height:130%;	        margin-top:20px;
}


.whitehotel .r4 {
  background-color: #0a2e4d;
  color:#fff;		      padding:30px 10px 0 30px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:26px;
  width:50%;
}


 .whitehotel .r4 p {   
  color:#fff;		 	  font-size:19px; 	    font-weight:300;			line-height:130%;	  	     margin-top:20px;
}


		




}
@media all and (max-width:800px){
	.history-con {display:block; padding:0;}
	.history-con .left-box {width:417px;}
	.history-con .right-box {width:100%; padding-left:0; margin-top:30px;}
	.history-con .img-box {margin-top:30px;}
	.history-con .year-item {padding:30px 0;}
	.history-con .year-item .item {margin-top:10px; padding-left:78px;}
	.history-con .year-item .item .month {top:0px;}
	.history-con .year-item .item .txt {margin-top:8px;}
	.history-tab-content .sub-tab-con,
	.history-tab-content .sub-tab-con:first-child {padding-top:50px;}
}
@media all and (max-width:480px){
	.history-con .left-box {width:100%;}	
}








.right_quick{float:right; position:fixed; right:50px; width:100px; z-index:9999; text-align:center; font-weight:500; color:#dedede; line-height:120%; padding:15px;border-radius:50px;top:250px;}
.right_quick a{color:#dedede; }
.right_quick a:hover{color:#fff000; }
.right_quick img{margin-bottom:10px;}

@media (max-width: 1200px) {  /*dm*/

.right_quick{display:none;;}
.toptel{display:none}



}



@media (max-width: 1053px) {  
.w_logo{display:none;}




				 
.whitehotel {
  display: block;	 
  align-items: stretch; /* 높이를 서로 맞춤 */
}
  
.whitehotel .hotelleft {
  display: block;
width: 100%;
  height: auto;
}

.whitehotel .hotelleft img {
  display: block;
width: 100%;
  height: auto;
}

.whitehotel .hotelright {
  display: block;
width: 100%;			  	float:left;margin-bottom:70px !important;
}

.whitehotel .r1 {
  background-color: #cfdeeb;
  color:#2a4458;					  
	  padding:30px 10px 0px 30px;	  
  height: 50%;			
  float:left; 											min-height:180px;
  font-weight:600;    font-size:22px;
  width:50%;
}


.whitehotel .r1 p {   
  color:#55697a;		line-height:100%; font-size:16px; 		 font-weight:300;			   margin-top:0px;
}


.whitehotel .r2 {
  background-color: #004a74;
   color:#fff;		 	 	  padding:30px 10px 0px 30px;	  
  height: 50%;			float:left;  	   font-weight:600;    font-size:22px;	 min-height:180px;
  width:50%;
}

.whitehotel .r2 p {   
  color:#fff;		font-size:18px; 		 font-weight:300;		line-height:130%;	   margin-top:20px;
}


.whitehotel .r3 {
  background-color: #6f9abc;
  color:#fff;		  			  padding:30px 10px 0px 30px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:22px;			min-height:180px;
  width:50%;
}

.whitehotel .r3 p {   
  color:#fff;		 	font-size:18px;    font-weight:300;		line-height:130%;	        margin-top:20px;
}


.whitehotel .r4 {
  background-color: #0a2e4d;
  color:#fff;		     		  padding:30px 10px 0px 30px;	  
  height: 50%;			float:left;  	    font-weight:600;    font-size:22px;			min-height:180px;
  width:50%;
}


 .whitehotel .r4 p {   
  color:#fff;		 	  font-size:18px; 	    font-weight:300;			line-height:130%;	  	     margin-top:20px;
}








}



@media (max-width: 992px) {
  .main-slider .container {
    padding-top: 250px;
    padding-bottom: 130px;
}

   .main-slider h2 {
    margin: 0;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(140px);
    transition-delay: 1000ms;
    transition: transform 2000ms ease, opacity 2000ms ease;
    font-size: 30px;
	font-family: 'Pretendard';		 
    line-height: 140%;	   margin-top:0px;
    z-index: 2;
}
.wt {color:#fff;}

.main-slider .mm01 {margin-top:0px; color:#fff; font-weight:700; line-height:90%;display:block;font-size: 30px;}
.main-slider .mm02 {margin-top:0px; color:#fff;  font-weight:600;font-size: 30px;}







 .main-slider .main-slider__sub-title2 {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #fff	   	;
    font-weight: 400;
	text-transform: uppercase;
    margin: 0;
    margin-bottom: 14px;
    line-height: 30px;
    opacity: 0;
    transform: translateY(100px);
    transition-delay: 3000ms;
    transition: transform 2000ms ease,
    opacity 2000ms ease,
    color 500ms ease,
    background 500ms ease;
    z-index: 2;
}

	
.main-slider .mtel span{	      
    transform: translateY(300px);
    transition-delay: 3000ms;
    transition: transform 3000ms ease, opacity 2000ms ease;
    font-size: 20px;
	font-family: 'Pretendard';	  					  opacity: 1;
    line-height: 140%;	   margin-top:30px;
    z-index: 2;
}

 .main-slider .mtel img{	      
max-width:70%;			 opacity: 1;
}





	  .reform	 {  position: relative;
    display: block;
    padding: 0px 0 0px;width:100%; 
	}

 .reform .repic {   
	 float:none; width:100%;
}	    
.reform .repic img {   
max-width:100%;
}
 .reform .form {   
  color:#000;			   font-size:30px; margin-top:20px;	 height:auto;
  font-weight:600;		 float:none; width:100%;padding:2%;
}



/* Table 1 Style */
table.table1{
margin-top:10px;margin-bottom:40px; 
width:100%;color:#000;border:0px;
font-family:'Pretendard', sans-serif; font-weight: 400;

}
.table1 thead th{
padding:10px; font-size: 16px;
color:#000;	text-align:center;border-left:1px solid #e3e3e3;				  border-top:1px solid #000;	    border-bottom:1px solid #000;
background-color:#fff;    font-weight: 400;				  line-height:120%;
}

.table1 thead th.fir{
padding:10px; 
color:#000;	text-align:center;
background-color:#fff; border-left:0px solid #e3e3e3;			 font-weight: 400;
}


.table1 tbody td{
padding:10px; font-size: 16px;
text-align:center;							 border-left:1px solid #e3e3e3;					  line-height:120%;
background-color:#fff; border-bottom:1px solid #e3e3e3;font-family:'Pretendard', sans-serif; font-weight: 400;
color:#000;
}



.table1 tbody td.fir{
padding:10px;  font-size: 16px;
text-align:center;								 border-left:0px solid #e3e3e3;
background-color:#fff; border-bottom:1px solid #e3e3e3;font-family:'Pretendard', sans-serif; font-weight: 400;
color:#000;
}




 .stit1_1 {
position:relative;
margin-top:0px; padding-bottom:10px;
color: #000; font-size:24px; font-family: 'Pretendard',sans-serif; font-weight:600; line-height:180%;
text-align:center;
}
 .stit1_1 span{
position:relative;
margin-top:0px; padding-bottom:10px;
color: #00586a; font-size:24px; font-family: 'Pretendard',sans-serif; font-weight:600; line-height:180%;
text-align:center;
}




  .we-shape__top {
    position: relative;
    display: block;
    padding: 0px 0 0px;
}

 .we-shape__title {
    margin-bottom:30px;;
    color: #000;
	font-family: 'Aggravo', sans-serif;
    font-size: 34px;				 text-align:center;
	text-transform: uppercase;		 
    font-weight: 500;
}
  .we-shape__title span{

    font-size: 34px;				
}

.project-one__content {
    position: relative;
	width:100%;

   margin:0 auto; text-align:center;

    padding-top: 30px;
    padding-bottom: 0px;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 2;
}





.inspire__container {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 96%;
    margin: 0 auto;
    padding: 0px 2% 60px;
}

.inspire__container1 {
    position: relative;
    display: block;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 5% 20px;
}
.inspire__container11 {
    position: relative;
    display: block;
    max-width: 1600px;
    width: 96%;
    margin: 0 auto;
    padding: 50px 2% 50px;
}
.col-md-66{flex:0 0 auto;width:50% !important;}


.proimg_pc {display:none;}
.proimg_mo { display: block;margin-top:0px;}


.sub_tit1 {font-size:30px; color:#145122; font-weight:700; line-height:34px;}


.project-two .project-one__single{
width:100%; float:none;	margin:0px 0 40px; padding:0px;	   text-align:center;
}



 .whitehotel .hotelleft img {
  display: block;
  max-width: 100%;
  height: auto;
}











				   .oksection{   display:inline-block; width:100%; margin:50px 0 50px; border-bottom:2px solid #686868; position: relative;}




 	.oksection .okleft{  width:100%; float:left; }

   	.oksection .okleft h1{ font-size:24px; font-weight:700;color:#000;}

     	.oksection .okleft h1 span{ font-size:24px; font-weight:700;color:#009ed9;}

     	.oksection .okleft p{color:#4c4c4c; font-size:18px; margin-top:20px;margin-bottom:30px;font-weight:400; line-height:140%;}

    	.oksection .okright{  width:100%; position:relative; float:right;text-align:center; }
	    	.oksection .okright img{  max-width:70%;}



	
	 .whitehotel_gall {  	     position: relative;
    display: block;
    padding: 50px 0 50px;  }

   	 .whitehotel_gall .gallin{  max-width:1500px;width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}

 .whitehotel_gall .f1{ float:none; width:100%;padding:20px; }
  .whitehotel_gall .f1 img{ max-width:100%}

   .whitehotel_gall .f1 h2{ font-size:24px; color:#000;text-align:center; margin:30px 0 10px;  text-transform: uppercase;font-weight:700;}
    .whitehotel_gall .f1 h3{ font-size:18px; color:#000; text-align:center; width:80%; margin:0 10%; line-height:140%; font-weight:400;}


	  
		  .golfmap {  display:inline-block; width:100%; margin:80px 0 80px; position: relative;}
		  .golfmap .golfleft{  width:100%; float:none; }
			 	  .golfmap .golfleft h1{ font-size:27px; font-weight:700;color:#000;}
					 	  .golfmap .golfleft h2{ font-size:20px;padding:15px 30px;; font-weight:600; border-radius:0 30px 30px 0; display:inline-block; color:#fff; margin-top:20px;background:#306852; }
						 	  .golfmap .golfleft h3{ font-size:20px; font-weight:600;color:#606060; margin:20px 0;padding:0px 0px 0 30px; }

	.golfmap .golfleft p{color:#000; font-size:20px; margin-top:30px;margin-bottom:30px;font-weight:400; line-height:150%;}

			  .golfmap .golfright{  width:100%; position:relative; float:right;text-align:center; }
			     .golfmap .golfright img{  margin-top:10px; max-width:80%; text-align:center; }










   
		  .golfmap2 {  display:inline-block; width:100%; margin:0px 0 80px; position: relative;}
		  .golfmap2 .golfleft{  width:100%; float:none; text-align:center;}
	 .golfmap2 .golfleft img{    width:100%; text-align:center; }


	   	  	  .golfmap2 .golfleft1{ width:100%; margin-left:0%;float:none; text-align:center; }
	 .golfmap2 .golfleft1 img{    width:100%; text-align:center; }

				  	.golfmap2 .golfright	  {  width:100%; float:left; padding:0 0px; }

			 	  .golfmap2 .golfright h1{ font-size:26px;margin-top:40px; font-weight:600;color:#000;}
					 	  .golfmap2 .golfright h2{ font-size:20px;margin:10px 0; font-weight:600; color:#000; border-bottom:4px solid #000; padding-bottom:20px;}
						 	  .golfmap2 .golfright h3{ font-size:18px; font-weight:700;color:#000; margin-top:30px;}
						    .golfmap2 .golfright p{ font-size:18px; font-weight:300;color:#000; margin-top:10px; line-height:130%;}


		   		  .golfmap2 .golfright{  width:100%; float:none; text-align:left;}
	 .golfmap2 .golfright img{  width:100%; text-align:center; }








   .whitehotel2 h1 {   
font-size:30px; color:#fff; font-weight:700;		 text-transform: uppercase;
}


      .whitehotel2 h2 {   
font-size:20px; color:#fff; font-weight:500;	margin:20px 0;		  line-height:130%;
}


 
      .whitehotel2 .pricebtn {   
font-size:20px; color:#b2613d; font-weight:400;	margin:20px 0 0;		display:inline-block;background:#fff; padding:15px 25px;  line-height:130%;
}

   .grayblock{ background: #2196eb;
  background-size: auto 100%;   /* 높이를 100%로 맞춤 */
  position: relative;
  clear: both;
  margin-top: 50px;
  padding: 30px 30px;
  width: 100%; }

	  .grayblock .con{max-width:400px; margin:0 auto}
   .grayblock h1{font-size:17px; color:#fff;text-align:left; margin:0px 0 0px 0px;  text-transform: uppercase;font-weight:500;}

     .grayblock h2{font-size:20px; color:#fff;text-align:left; clear:both;margin:3px 0px 0px 0;  line-height:140%;text-transform: uppercase;font-weight:600;}
	  .grayblock h2 span{font-size:17px; border-radius:50px;color:#2196eb; display:inline-block; background:#fff; padding:10px 10px;text-align:left; margin:10px 5px 0px -10px;  line-height:140%;text-transform: uppercase;font-weight:400;}




			   .hotelgall	   { display:inline-block; width:100%; margin:0px 0; position: relative;}

    .hotelgall .p1{ float:none; width:100%; padding:0%;text-align:center;}
     .hotelgall .p1 img{ max-width:100%;margin-top:0px;text-align:center;}
     .hotelgall .p1 h3{ font-size:18px; color:#676767; text-align:left; line-height:140%; font-weight:400;margin-bottom:50px;}																										 																																				  


       .hotelgall .p2{  float:none;width:100%; padding:0%;text-align:center;}
	        .hotelgall .p2 img{ max-width:100%;margin-top:0px;text-align:center;}
     .hotelgall .p2 h2{ font-size:22px; color:#000;text-align:left; margin:40px 0 30px;  text-transform: uppercase;font-weight:600;}
     .hotelgall .p2 h3{ font-size:18px; color:#676767; text-align:left; line-height:140%;margin-bottom:50px; font-weight:400;}

	       .hotelgall .p3{  float:none;background:#f5f1e5;padding:40px;width:100%;margin:0%; height:100%;text-align:center;}





}






/*---------- SPACING ----------*/
/* Padding Zero */
.p0 {
    padding: 0!important
}
/* Padding Top */
.pt10 {
    padding-top: 10px!important
}
.pt15 {
    padding-top: 15px!important
}
.pt20 {
    padding-top: 20px!important
}
.pt30 {
    padding-top: 30px!important
}
.pt40 {
    padding-top: 40px!important
}
.pt50 {
    padding-top: 50px!important
}
.pt60 {
    padding-top: 60px!important
}
.pt70 {
    padding-top: 70px!important
}
.pt80 {
    padding-top: 80px!important
}
.pt90 {
    padding-top: 90px!important
}
.pt100 {
    padding-top: 100px!important
}
.pt110 {
    padding-top: 110px!important
}
.pt120 {
    padding-top: 120px!important
}
.pt130 {
    padding-top: 130px!important
}
.pt140 {
    padding-top: 140px!important
}
.pt180 {
    padding-top: 180px!important
}
/* Padding Bottom */
.pb0 {
    padding-bottom: 0px!important
}
.pb10 {
    padding-bottom: 10px!important
}
.pb15 {
    padding-bottom: 15px!important
}
.pb20 {
    padding-bottom: 20px!important
}
.pb30 {
    padding-bottom: 30px!important
}
.pb40 {
    padding-bottom: 40px!important
}
.pb50 {
    padding-bottom: 50px!important
}
.pb60 {
    padding-bottom: 60px!important
}
.pb70 {
    padding-bottom: 70px!important
}
.pb80 {
    padding-bottom: 80px!important
}
.pb90 {
    padding-bottom: 90px!important
}
.pb100 {
    padding-bottom: 100px!important
}
.pb110 {
    padding-bottom: 110px!important
}
.pb120 {
    padding-bottom: 120px!important
}
.pb130 {
    padding-bottom: 130px!important
}
.pb140 {
    padding-bottom: 140px!important
}
/* Padding Left */
.pl0 {
    padding-left: 0px!important
}
.pl3 {
    padding-left: 3px!important
}
.pl5 {
    padding-left: 5px!important
}
.pl10 {
    padding-left: 10px!important
}
.pl20 {
    padding-left: 20px!important
}
.pl30 {
    padding-left: 30px;
}
.pl40 {
    padding-left: 40px;
}
.pl50 {
    padding-left: 50px;
}
.pl60 {
    padding-left: 60px;
}
.pl70 {
    padding-left: 70px;
}
.pl80 {
    padding-left: 80px;
}
.pl90 {
    padding-left: 90px;
}
.pl100 {
    padding-left: 100px;
}
/* Padding Right */
.pr0 {
    padding-right: 0px!important
}
.pr5 {
    padding-right: 5px!important
}
.pr10 {
    padding-right: 10px!important
}
.pr20 {
    padding-right: 20px!important
}
.pr30 {
    padding-right: 30px!important
}
.pr40 {
    padding-right: 40px;
}
.pr50 {
    padding-right: 50px;
}
.pr60 {
    padding-right: 60px;
}
.pr70 {
    padding-right: 70px;
}
.pr76 {
    padding-right: 76px;
}

.pr80 {
    padding-right: 80px;
}
.pr90 {
    padding-right: 90px;
}
.pr100 {
    padding-right: 100px;
}
.pr110 {
    padding-right: 110px;
}
.pr120 {
    padding-right: 120px;
}
@media (min-width:1200px) {
    .pl-lg-50 {
        padding-left: 50px;
    }
    .pl-lg-80 {
        padding-left: 80px;
    }
}
@media (min-width:992px) {
    .pt-md-50 {
        padding-top: 50px;
    } 
}

/* Margin Auto */
.mr-auto {
    margin: auto;
    float: none;
}
/* Margin Top */
.mt0 {
    margin-top: 0!important
}
.mt5 {
    margin-top: 5px!important
}
.mt10 {
    margin-top: 10px!important
}
.mt20 {
    margin-top: 20px!important
}
.mt30 {
    margin-top: 30px!important
}
.mt32 {
    margin-top: 32px!important
}
.mt40 {
    margin-top: 40px!important
}
.mt50 {
    margin-top: 50px!important
}
.mt60 {
    margin-top: 60px!important
}
.mt70 {
    margin-top: 70px!important
}
.mt80 {
    margin-top: 80px!important
}
.mt85 {
    margin-top: 85px!important
}
.mt90 {
    margin-top: 90px!important
}
.mt96 {
    margin-top: 96px!important
}
.mt100 {
    margin-top: 100px!important; clear:both;
}
.mt105 {
    margin-top: 105px!important
}
.mt110 {
    margin-top: 110px!important
}
.mt120 {
    margin-top: 120px!important
}
.mt145 {
    margin-top: 120px!important
}
.mt170 {
    margin-top: 170px!important
}
.mt200 {
    margin-top: 200px!important
}
/* Margin Bottom */
.mb0 {
    margin-bottom: 0px!important
}
.mb5 {
    margin-bottom: 5px!important
}
.mb10 {
    margin-bottom: 10px!important
}
.mb15 {
    margin-bottom: 15px!important
}
.mb20 {
    margin-bottom: 20px!important
}
.mb30 {
    margin-bottom: 30px!important
}
.mb40 {
    margin-bottom: 40px!important
}
.mb50 {
    margin-bottom: 50px
}
.mb60 {
    margin-bottom: 60px
}
.mb70 {
    margin-bottom: 70px
}
.mb80 {
    margin-bottom: 80px
}
.mb90 {
    margin-bottom: 90px
}
.mb100 {
    margin-bottom: 100px
}
.mb110 {
    margin-bottom: 110px
}
.mb120 {
    margin-bottom: 120px
}
/* Margin Left */
.ml0 {
    margin-left: 0px!important;
}
.ml15 {
    margin-left: 5px;
}
.ml10 {
    margin-left: 10px;
}
.ml20 {
    margin-left: 20px;
}
.ml30 {
    margin-left: 30px;
}
.ml40 {
    margin-left: 40px;
}
.ml50 {
    margin-left: 50px;
}
.ml60 {
    margin-left: 60px;
}
.ml70 {
    margin-left: 70px;
}
.ml80 {
    margin-left: 80px;
}
.ml90 {
    margin-left: 90px;
}
.ml100 {
    margin-left: 100px;
}
.ml110 {
    margin-left: 110px;
}
/* Margin Right */
.mr0 {
    margin-right: 0px!important
}
.mr5 {
    margin-left: 5px!important
}
.mr10 {
    margin-right: 10px!important
}
.mr20 {
    margin-right: 20px!important
}
.mr30 {
    margin-right: 30px!important
}
.mr40 {
    margin-right: 40px!important
}
.mr50 {
    margin-right: 50px!important
}
.mr60 {
    margin-right: 60px!important
}
.mr70 {
    margin-right: 70px!important
}
.mr80 {
    margin-right: 80px!important
}
.mr90 {
    margin-right: 90px!important
}
.mr100 {
    margin-right: 100px;
}
.mr110 {
    margin-right: 110px;
}