/* CSS 함수
-----------------------------------------------------------------*/
:root {
  --kakao: #007bff;
}
html {
  font-size: 100%;
}

/* 클래스 선택자 (지정)
-----------------------------------------------------------------*/
.opacity0 {
  opacity: 0;
}
.list-style-none {
  list-style: none;
}
.d-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 폰트
-----------------------------------------------------------------*/
@supports (font-size-adjust: 1) {
    /*폰트 크기 조정 속성*/
    article {
        font-size-adjust: 0.5;
    }
}
*:lang(en) {
    letter-spacing: 0 !important;
}
body, button, input, select, td, textarea, th {
    font-size: 18px;
    word-break: keep-all;
    /*letter-spacing: -0.0555em;
    자간자동조절(1/18인 0.0555em를 이용하면 -1px)*/
    color: #1b1b1b;
    -webkit-text-size-adjust: none;
    /*ios 자동폰트조절방지*/
}
h1.main-title {
    font-size: 3.2rem;
    margin-left: -5px;
}
h1 {
    font-size: 2.5em;
    line-height: calc(1ex / 0.42);
}
h2 {
    font-size: 2em;
    line-height: calc(1ex / 0.42);
}
h3 {
    font-size: 1.75em;
    line-height: calc(1ex / 0.38);
}
h4 {
    font-size: 1.4em;
    line-height: calc(1ex / 0.37);
	font-weight: 700;
}
h5, h6 {
    margin-bottom: 0px;
}
p {
    font-size: 1em;
    line-height: calc(1ex / 0.32);
}
p:last-child {
    margin-bottom: 0;
}
/* 브라우저가 하이픈 연결을 지원합니다. */
p[lang="en"] {
    text-align: justify;
    hyphens: auto;
}
/* 브라우저가 하이픈 연결을 지원하지 않습니다. */
p[lang="it"] {
    text-align: left;
    hyphens: none;
}
.font-weight-black {
    font-weight: 900 !important;
}
.font-weight-500 {
    font-weight: 500 !important;
}
.font-weight-700 {
    font-weight: 700 !important;
}
.ls-1 {
    letter-spacing: -1px !important;
}
.section-title {
    font-size: 2.556rem;
    margin-top: -55px;
    position: absolute;
}
.section-title[lang="en"] {
    font-size: 2.556rem;
}

/* 그라데이션
-----------------------------------------------------------------*/
.bg-gradient-animation {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}
@keyframes gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
.text-gradient-animation {
    font-size: 5.667rem;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: text-gradient 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes text-gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* 커서
  -----------------------------------------------------------------*/
#cursor {
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
    mix-blend-mode: difference;
}
@media (hover: hover) and (pointer: fine) {
    .cursor__circle {
        width: 64px;
        height: 64px;
        margin-top: -50%;
        margin-left: -50%;
        border-radius: 50%;
        border: solid 1px rgba(255, 255, 255, 0.64);
        transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }
    #cursor.arrow .cursor__circle {
        width: 128px;
        height: 128px;
        background-color: #ffe000;
        border-color: #ffe000;
    }
    #cursor.arrow::after {
        content: "";
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
        background-image: url("https://svgshare.com/i/MzQ.svg");
        background-repeat: no-repeat;
        background-position: center;
    }
}

/* 간격
  -----------------------------------------------------------------*/
.container {
    padding-left: 0.75em;
    padding-right: 0.75em;
}
.section {
    width: 100%;
    margin: 4em 0;
    padding: 4em 0;
}
.row {
    margin-left: -0.75em;
    margin-right: -0.75em;
}
.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: 0.75em;
    padding-right: 0.75em;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 0.75em;
    padding-left: 0.75em;
}
.col-mb-50 > .col, .col-mb-50 > [class*="col-"] {
    padding-bottom: 4rem;
}
.content-wrap {
    padding: 6em 0;
}
.p-6 {
    padding: 5em !important;
}
.mt-7 {
    margin-top: 6em !important;
}
.pt-6, .py-6 {
    padding-top: 5em !important;
}
.pb-6, .py-6 {
    padding-bottom: 5em !important;
}
.heading-block {
    margin-bottom: 1.25em;
}

/* 정렬
  -----------------------------------------------------------------*/
.position-center {
    position: absolute;
    transform: translate(50%, 50%);
    top: -50%;
    left: -50%;
}
.bg-center {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.pos-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    width: 54%;
    height: 100%;
}
.pos-img-center{
	position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    height: 50%;
 }
.about_us .pos-img, .service .pos-img{
    width: 1200px;
    height: 770px;
    z-index: 0;
}

/* 버튼
  -----------------------------------------------------------------*/
.button {
    font-weight: 400;
    font-size: 1rem;
    padding: 16px 42px;
	cursor:pointer;
}
.side-header.open-header #header-trigger{
	cursor:pointer;
}
.button.button-border:not(.button-fill):hover, .button:hover {
    background-color: var(--primary);
}
.button.button-reveal.text-right i {
    opacity: 0;
    left: auto;
    right: 32px;
    background-color: transparent;
    transition: all 0.3s ease !important;
}
.button:hover.button-reveal.text-right i {
    opacity: 1;
    right: 18px;
    transform: translateX(-10px);
}
.button.underline {
    display: inline-block;
    position: relative;
    color: #000;
    border-bottom: 2px solid #000;
    background-color: transparent !important;
    font-weight: 700 !important;
}
.button.underline:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: 0.35s;
    transition: 0.35s;
}
.button.underline:hover {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    border-bottom-color: transparent;
}
.button.underline:hover:before {
    width: 100%;
    background-color: #000;
}
.button.underline.light {
    color: #fff;
    border-bottom: 2px solid #fff;
}
.button.underline.light:hover:before {
    background-color: #fff;
}
.btn-group, .btn-group-vertical {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
    height: auto;
}
#gotoTop {
	width: 70px;
    height: 70px;
    font-size: 1.6rem;
    line-height: 70px;
    color: #fff;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.2);
}

/* SNS
  -----------------------------------------------------------------*/
.si-colored.si-kakao {
    background-color: #007bff !important;
}
.icon-kakao:before {
    content: "";
    background-image: url("../images/icons/kakao.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    width: 38px;
    height: 38px;
    display: block;
}
.si-colored.si-kakao, .si-kakao:hover {
    background-color: #fae100 !important;
}
.icon-kakao-w:before {
    content: "";
    background-image: url("../images/icons/kakao-w.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    width: 38px;
    height: 38px;
    display: block;
}

/* 헤더
  -----------------------------------------------------------------*/
#logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: 3%;
}
.menu_white i{
	color: #ffffff !important;
}
.menu_black i{
	color: #111111 !important;
}
/*
#header-trigger .icon-line-cross{
	color: #ffffff !important
}
#header-logo{
	position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: 80px;
    line-height: 80px;
    z-index: 999;
}
#header-logo a.white{display: block !important;}
#header-logo a.black{display: none !important;}
#header-logo.logo_white a.white{display: block !important}
#header-logo.logo_black a.black{display: block !important}
*/

/* 푸터
  -----------------------------------------------------------------*/
#footer p, #footer ul li {
    font-size: 0.875rem;
    line-height: 1.4;
}
#copyrights {
    background-color: #fff;
}

/* 페이지로더
  -----------------------------------------------------------------*/
body {
    overflow: hidden;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 10000;
}
#container {
    width: 70px;
    height: 35px;
    overflow: hidden;
    position: absolute;
    top: calc(50% - 17px);
    left: calc(50% - 35px);
}
#status {
    width: 70px;
    height: 70px;
    border-style: solid;
    border-top-color: #fff;
    border-right-color: #fff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotate 3s ease-in-out infinite;
    transform: rotate(-200deg);
}
@keyframes rotate {
    0% {
        border-width: 10px;
    }
    25% {
        border-width: 3px;
    }
    50% {
        transform: rotate(115deg);
        border-width: 10px;
    }
    75% {
        border-width: 3px;
    }
    100% {
        border-width: 10px;
    }
}

/* 페이지스타일
  -----------------------------------------------------------------*/
#page-title.page-title-sub h1 {
    letter-spacing: 30px;
    font-size: 4.556rem;
    line-height: 1.4;
}
#download{
	position: fixed;
    left: 6px;
    bottom: 80px;
    z-index: 10;
	transform: rotate(90deg);
	letter-spacing: 0px;
	color: #999;
}
#download:before{
	content: '';
    width: 5px;
    height: 5px;
    background: #007bff;
    border: 0px;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 14px;
}
.side-info {
  margin-top: 0.6em;
  margin-bottom: 1em;
}
.side-info h5,
.side-info p {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.4rem;
}
.side-info > div > div:last-child p{
	margin-bottom: 0rem;
}
.side-info h5 {
  color: #111111;
  margin-bottom: 0px !important;
}
.side-content::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #999999;
  position: absolute;
  left: -30px;
  top: 0;
}
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    transition: top 0.3s;
}
#sticky-bar{
	margin-bottom: 4rem;
}
.bg-color-box {
    position: relative;
    height: 580px;
    margin-bottom: 200px;
}
.list-style1 {
    list-style: none;
    margin-top: 0.75em;
    font-weight: 400;
}
.cloudtree-keyword {
    position: relative;
}
.cloudtree-keyword > div > div {
    position: relative;
    top: 0;
    width: 100%;
    font-size: 24px;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    mix-blend-mode: multiply;
}
.cloudtree-keyword > div > div:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    padding-bottom: 100%;
}
.cloudtree-keyword > div > div > strong {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 1.8rem;
}
.cloudtree-keyword > div > div:nth-child(2) strong {
    margin-left: 1.563em;
}
.cloudtree-keyword > div > div:nth-child(3) strong {
    margin-left: 2.6em;
}
.cloudtree-keyword > div > div:nth-child(1):after {
    background-color: #007bff;
}
.cloudtree-keyword > div > div:nth-child(2):after {
    background-color: #2ab0ff;
    margin-left: 1.563em;
}
.cloudtree-keyword > div > div:nth-child(3):after {
    background-color: #ecc70f;
    margin-left: 3.125em;
}
.cloudtree-keyword > div > div:nth-child(4):after {
    background-color: #57d5ff;
}
.cloudtree-service {
    position: relative;
}
.cloudtree-service > div > div {
    position: relative;
    top: 0;
    width: 100%;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    mix-blend-mode: multiply;
}
.cloudtree-service > div > div:after {
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    padding-bottom: 100%;
}
.cloudtree-service > div > div > strong {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 1.3rem;
    color: #111;
    line-height: 1.4;
    letter-spacing: -0.001em;
}
.cloudtree-service > div > div > small {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888888;
    position: absolute;
    top: 30%;
	font-size: 2rem;
	font-weight: 800
}
.cloudtree-service > div > div:nth-child(1):after, .cloudtree-service > div > div:nth-child(2):after, .cloudtree-service > div > div:nth-child(3):after {
    background-color: #ededed;
}
.cloudtree-service > div > div:nth-child(4):after {
    background-color: #ffffff;
}
.cloudtree-service > div > div.active > strong {
    color: #ffffff !important;
}
.cloudtree-service > div > div.active:after {
    background-color: #111111 !important;
}
.cloudtree-service div > div:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 58%;
    border-top: 1px solid #999999;
    z-index: -2;
}
.cloudtree-service div > div:nth-child(4):before {
    border-top: 0 solid #999999;
}

/* 애니메이션
  -----------------------------------------------------------------*/
.waveBox svg {
    position: absolute;
    top: 150px;
    left: 0;
    overflow: hidden;
}
.waveBox svg .wave {
    fill: transparent;
    stroke: #eee;
    stroke-width: 0.075px;
    -webkit-animation: wave 7s linear infinite;
    -o-animation: wave 7s linear infinite;
    animation: wave 7s linear infinite;
}
.waveBox svg #feel-the-wave, .waveBox svg #feel-the-wave-two {
    stroke: #eee !important;
    stroke-width: 1px;
    animation-name: wave;
}
@keyframes wave {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}
@-webkit-keyframes wave {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
    }
}

/* 포트폴리오
  -----------------------------------------------------------------*/
.bg-img{
    display: block;
    position: relative;
    height: 270px;
    background-color: #EEE;
	
}

/* 관리자영역
  -----------------------------------------------------------------*/
.ctt_admin a {
    float: right;
}

/* 미디어쿼리
  -----------------------------------------------------------------*/
@media (min-width: 992px) {
	.dark #header.transparent-header, .dark #header.dark.sticky-header.transparent-header #header-wrap:not(.not-dark),
	.dark .border-bottom,  .dark.border-bottom {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
	}
	.dark #header.transparent-header .primary-menu ul:last-child {
		border-left: 1px solid rgba(255, 255, 255, 0.15);
	}
	#header.transparent-header {
		background: #f9f9f9;
	}
	#header.transparent-header.sticky-header-sub,
	#header.transparent-header.sticky-header-sub:not(.sticky-header)
	#header-wrap {
		background: #fff !important;
	}
	.slider-element h2 {
		font-size: 5.2rem;
	}
	.side-header #logo {
		margin: 4rem 0;
		width: 100%;
	}
    .dark #header.dark.sticky-header.transparent-header #header-wrap:not(.not-dark), .dark #header.transparent-header, .dark .border-bottom, .dark.border-bottom {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    .dark #header.transparent-header .primary-menu ul:last-child {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }
    #header.transparent-header, #header.transparent-header:not(.sticky-header) #header-wrap {
        background: #f9f9f9;
    }
    #header.transparent-header.sticky-header-sub, #header.transparent-header.sticky-header-sub:not(.sticky-header) #header-wrap {
        background: #fff !important;
    }
    .slider-element h2 {
        font-size: 5.8rem;
    }
	.co-name img {
		position: absolute;
		top: 0;
		left: 40px;
		width: auto;
		z-index: 2;
		margin: 26px 0;
	}
	.side-header #header {
		width: 500px;
		height: calc( 100% + 40px );
		background-color: rgba(255, 255, 255, 0.9);
	}
	.side-header #header.dark {
		background-color: rgba(200, 94, 81, 0.95);
		border-left: 0;
	}
	.side-header #header-wrap {
		width: 540px;
		width: calc( 100% + 40px );
		padding-bottom: 40px;
		padding-left: 80px;
		margin: 0 auto;
		position: relative;
		background-color: transparent;
	}
	.side-header #header-wrap .container { width: auto; }
	.side-header.side-header-right.open-header #header {
		left: auto;
		right: -500px;
	}
	.side-header .header-title,
	.side-header .menu-link {
		font-size: 3.4rem;
		line-height: 1;
		padding: 18px 0;
		height: auto;
		text-transform: none;
		-moz-transform: translate3d(200px, 0, 0);
		-webkit-transform: translate3d(200px, 0, 0);
		transform: translate3d(200px, 0, 0);
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
		opacity: 0;
		will-change: transform;
		-moz-transition: all 250ms ease-in 0s;
		-o-transition: all 250ms ease-in 0s;
		-webkit-transition: all 250ms ease-in;
		-webkit-transition-delay: 0s;
		transition: all 250ms ease-in 0s;
	}
	.dark #header-wrap:not(.not-dark) .primary-menu .menu-item:hover > .menu-link,
	.dark #header-wrap:not(.not-dark) .primary-menu .menu-item.current > .menu-link {
		color: #FFF !important;
	}
	.dark #header-wrap:not(.not-dark) .primary-menu .menu-item.current > .menu-link {
		opacity: 0.5 !important;
	}
	.side-header .header-title {
		opacity: 0;
		padding: 0;
		margin-bottom: 25px;
		font-size: 10px;
		text-transform: uppercase;
		font-weight: 500;
		letter-spacing: 4px;
	}
	.side-header.side-header-open .header-title,
	.side-header.side-header-open .primary-menu .menu-link {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
		opacity: 1;
		-moz-transition: all 500ms ease-out 0.3s;
		-o-transition: all 500ms ease-out 0.3s;
		-webkit-transition: all 500ms ease-out;
		-webkit-transition-delay: 0.3s;
		transition: all 500ms ease-out 0.3s;
	}
	.side-header.side-header-open .header-title,
	.side-header.side-header-open .primary-menu .menu-item:nth-child(1) .menu-link {
		-moz-transition-delay: 0.0s;
		-o-transition-delay: 0.0s;
		-webkit-transition-delay: 0.0s;
		transition-delay: 0.0s;
	}
	.side-header.side-header-open .primary-menu .menu-item:nth-child(2) .menu-link {
		-moz-transition-delay: 0.1s;
		-o-transition-delay: 0.1s;
		-webkit-transition-delay: 0.1s;
		transition-delay: 0.1s;
	}
	.side-header.side-header-open .primary-menu .menu-item:nth-child(3) .menu-link {
		-moz-transition-delay: 0.2s;
		-o-transition-delay: 0.2s;
		-webkit-transition-delay: 0.2s;
		transition-delay: 0.2s;
	}
	.side-header.side-header-open .primary-menu .menu-item:nth-child(4) .menu-link {
		-moz-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		-webkit-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}
	.side-header.side-header-open .primary-menu .menu-item:nth-child(5) .menu-link {
		-moz-transition-delay: 0.4s;
		-o-transition-delay: 0.4s;
		-webkit-transition-delay: 0.4s;
		transition-delay: 0.4s;
	}
	.side-header #logo:not(.border-bottom-0)::after,
	.side-header .primary-menu:not(.border-bottom-0)::after { content: none; }
	.side-header.side-header-right.open-header.side-header-open #header-trigger { z-index: 399; }
	.side-header.side-header-right.open-header #header-trigger {
		right: 0;
		top: 0;
		width: 74px;
		height: 74px;
		line-height: 74px;
		border-radius: 0;
		text-align: center;
		font-size: 1.8rem;
	}
	.side-header.side-header-right.open-header.side-header-open #header-trigger { right: 0; }
	video {
		width: 100%;
		margin: auto;
	}
}
@media (max-width: 1199px) {
	.content-wrap {
		padding: 4em 0;
	}
	.side-content::after {
	  left: -16px;
	}
}
@media (max-width: 992px) {
	h1.main-title {
		font-size: 2.4rem;
	}
	.parallax h2, h2 {
		font-size: 2.4rem;
	}
    .parallax .container h4 {
        font-size: 1.2rem;
        font-weight: 400 !important;
    }
    .section-title {
        font-size: 2.222rem;
        margin-top: 0;
        position: relative;
    }
    .section-title[lang="en"] {
        font-size: 2.222rem;
    }
    .text-gradient-animation {
        font-size: 3.667rem;
    }
	.cloudtree-keyword > div > div:nth-child(3) strong {
		margin-left: 3.6em;
	}
    .cloudtree-service > div > div > strong {
        font-size: 1rem;
    }
	.cloudtree-keyword > div > div > strong {
		font-size: 1.2rem;
	}
	.pos-img {
		width: 120%;
		height: 100%;
	}
	.section {
		margin: 2em 0;
		padding: 2em 0;
	}
	.section.parallax {
		padding: 5em 0;
	}
	.content-wrap {
		padding: 3em 0;
	}
	#quick-bar,
	#gotoTop {
		display: none !important;
	}
	.col-md-text-light {
		color: #ffffff;
	}
	.pos-img {
		right: -600px;
	}
	.button.button-large {
		padding: 12px 42px;
		font-size: 0.9rem;
	}
	.side-content::after {
		width: 100%;
		height: 1px;
		top: -17px;
		left: 0;
	}
}
@media (max-width: 767.98px) {
    body, button, input, select, td, textarea, th {
        font-size: 85%;
    }
	h1,	.h1 {
		font-size: 1.667rem;
	}
	.parallax h2,	h2 {
		font-size: 1.667rem;
	}
	h3,	.h3 {
		font-size: 1.2rem;
	}
	.text-gradient-animation {
		font-size: 2.8rem;
	}
	.section-title {
		position: relative;
		margin-top: 0px;
		padding-top: 2em;
		font-size: 1.667rem;
	}
	.section-title[lang="en"] {
		font-size: 1.667rem;
	}
	#page-title.page-title-sub{
		padding: 146px 0 !important;
	}
	#page-title.page-title-sub h1 {
		font-size: 1.556rem;
	}
	.bg-img {
		height: 180px !important;
	}
	.cloudtree-keyword > div > div > strong {
		font-size: 1.2rem;
	}
	.section.about_us {
		padding: 5.875em 0;
		margin: 0px 0;
	}
	.cloudtree-keyword > div > div:nth-child(2),
	.cloudtree-keyword > div > div:nth-child(3),
	.cloudtree-keyword > div > div:nth-child(4) {
		margin-left: 0em;
	}
	.cloudtree-service > div div:nth-child(2):before {
		border-top: 0px;
	}
	.content-wrap {
		position: relative;
		overflow: hidden;
		padding: 4em 0;
	}
	.min-vh-75 {
		min-height: 54vh !important;
	}
	#footer p,
	#footer ul li {
		font-size: 0.8125rem;
	}
	.pos-img {
		right: -300px;
	}
	#logo img {
		height: 22px;
	}
	.bg-color-box {
		height: auto;
		margin-bottom: 0;
	}
	.button {
		font-size: 0.8rem;
		padding: 1.2em 2.2em;
	}
	.button.w-md {
		width: 134px;
	}
	.p-6 {
		padding: 2em !important;
	}
	#download{
		display: none;
	}
}