@charset "utf-8";

/* ========================================
   CSS Variables
======================================== */
:root {
    --white: #fff;
    --blackbg: #222;
    --primary-blue: #264fff;
    --text-dark: #333;
    --text-gray: #777;
    --text-light: #999;
    --border-gray: #ddd;
    --bg-light: #f5f5f5;
}

/* ========================================
   Utility Classes
======================================== */
.mt5 {
    margin-top: 5rem;
}

.inner {
    max-width: 1760px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 1760px) {
    .inner {
        width: 93.65%;
    }
}

.m_only {
	display:none;
}

/* ========================================
   Header Styles
======================================== */
#hd {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    min-width: 320px;
}

#hd_wrapper .inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:3rem 0;
}

/* Global Navigation */
#hd_wrapper.open .gnb_box.on,
#hd.open .gnb_box,
#hd.open .right_box .search_box,
#hd.open .right_box .global_box
{
    display: none;
}

#hd_wrapper .gnb_box {
	position: absolute;
    left: 50%;
    width: fit-content;
    text-align: center;
	transform: translateX(-50%);
}

#hd_wrapper .gnb_box .main_nav {
    display: flex;
    gap: 45px;
}

#hd_wrapper .gnb_box .main_nav li {
	 position: relative;
}

#hd_wrapper .gnb_box .main_nav > li > a {
	display: block;
	width: max-content;
	height: 7rem;
    line-height: 7rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
}

/* Right Box */
#hd_wrapper .right_box {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search_box */
#search_wrap {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height:100vh;
    opacity: 0;
	visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
	z-index:400;
}

#search_wrap.on {
    height: 100vh;
    opacity: 1;
    visibility: visible;
}

#search_wrap .overlay_bg {
	position:fixed;
	top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
	background-color: rgba(0, 0, 0, 0.5);
	visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid #777;
    overflow: hidden;
	z-index:200;
}

#search_wrap .overlay_bg.on {
	 height: 100vh;
    opacity: 1;
    visibility: visible;
}

#search_wrap .search_form {
	position:relative;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color:#fff;
	padding:50px 0;
	width:100%;
	background:#fff;
	z-index:300;
	border-top:1px solid #777;
}

#search_wrap .search_form .input_box {
	position:relative;
    width:700px;
	height: 60px;
	border: 2px solid #333333;
	padding:0 25px;
}

/* 입력창 스타일 개선 */
#search_wrap .search_form input {
    width:95%;
	height:100%;
    font-size: 1.6em;
	border:none;
}

#search_wrap .search_form button {
	position: absolute;
    top: 1.5rem;
	width:26px;
	height:26px;
}

#search_wrap .search_form input:focus {
	border:none !important;
	box-shadow:unset;
}

#search_wrap .search_form input::placeholder {
	font-size:16px;
	color:#999;
	font-weight:500;
}

@media screen and (max-width: 800px) {
	#search_wrap .search_form {
		display:none;
	}
}

/* Global Box */
#hd_wrapper .global_box {
    position: relative;
    border-radius: 1.8rem;
/*    background: var(--blackbg);*/
	background: rgba(0, 0, 0, 0.5);
	width:85px;
}

#hd_wrapper .global_box button {
	   padding: 8px 10px;
	display: flex;
    align-items: center;
    gap: 5px;
	width:100%;
}

#hd_wrapper .global_box button span {
    display: inline-block;
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--white);
}

#hd_wrapper .global_box ul {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    display: none;
    width: 100%;
    padding: 13px;
    border-radius: 18px;
    background-color: var(--blackbg);
    transition:all 1s;
}

#hd_wrapper .global_box ul.on {
    display: block;
}

#hd_wrapper .global_box ul li a {
    display: block;
    font-size: 1.5rem;
    text-align: center;
    color: #aaa;
	letter-spacing: -0.02em;
	line-height:1.8;
}

#hd_wrapper .global_box ul li:first-child a {
    margin-top: 0;
}

#hd_wrapper .global_box ul li:hover a {
    color: var(--white);
}

.dropdown {
	display:none;
    position: absolute;
    top: 100%;
    left: 50%;
	width: max-content;
    padding: 20px 25px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    z-index: 1000;
	background:#222;
}

.dropdown > li > a {
    display: block;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
	color:#888;
	letter-spacing: -0.02em;
	line-height:2.5;
}

.dropdown a:hover {
    color:var(--white);
}

.main_nav li:hover .dropdown {
  display:block;
}

@media screen and (max-width: 1500px) {
	#hd_wrapper .gnb_box .main_nav {
		gap:30px;
	}
}

@media screen and (max-width: 1280px) {
	#hd_wrapper .gnb_box ul {
		gap: 20px;
	}
}

@media screen and (max-width: 1024px) {
	#hd_wrapper .gnb_box {
        display: none;
    }

	#hd.open .right_box .allmenu_box {
		display:block;
	}

	#hd #logo > a > img {
		width:130px;
	}
}

@media screen and (max-width: 800px) {
	#hd_wrapper .inner {
		gap:1.5rem;
	}
	#hd_wrapper .right_box {
		gap:8px;
	}
	#hd_wrapper .right_box .search_box {
	display:none;'
	}
}

/* 전체메뉴 */
#hd .allmenu_box #all-menu-btn {
    position: relative;
    width: 40px;
    height: 30px;
    border: none;
    background: none;
}

#hd .allmenu_box #all-menu-btn .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0.3em;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

#hd .allmenu_box #all-menu-btn .bar1 {
	margin-top: -0.35rem;
    transform: translate(-50%, calc(-50% - 0.3rem));
}

#hd .allmenu_box #all-menu-btn .bar2 {
	margin-top: 0.15rem;
    transform: translate(-50%, calc(-50% + 0.3rem));
}

#hd .allmenu_box #all-menu-btn.open .bar1 {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

#hd .allmenu_box #all-menu-btn.open .bar2 {
    margin-top: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

#hd.on:not(.open) {
/*    background: rgba(0, 0, 0, 0.95);*/
	background: #264fff;
}

#hd.on {
    background: rgba(0, 0, 0, 0.95);
	z-index:400;
}

/* ========================================
   All Menu Desktop
======================================== */
#all-menu {
    position:fixed;
	top: 0;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: 100%;
    padding:32rem 0 0 19rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(0.8rem);
}

#all-menu nav {
    height: 100%;
    text-align: center;
    overflow-y: auto;
}

#all-menu nav a {
    color: var(--white);
}

#all-menu .depth1-ul {
    display: flex;
	justify-content: center;
    row-gap: 1rem;
}

#all-menu .depth1-ul > li {
    width: 350px;
    text-align: left;
}

#all-menu .depth1-ul > li > a {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--white);
}

#all-menu .depth2-ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 80px;
}

#all-menu .depth2-ul > li > a {
    font-size: 1.7em;
    font-weight: 500;
    color: #888;
    transition: all 0.3s;
}

@media screen and (max-width: 1760px) {
	 #all-menu .depth1-ul {
		margin-left: 10em;
    }
}

@media screen and (max-width: 1440px) {
	#all-menu .depth1-ul {
		flex-wrap:wrap;
	}
}

@media screen and (max-width: 1023px) {
    #all-menu {
        display: none !important;
    }
	#all-menu-m .close-btn {
		display:none;
	}
}

@media screen and (min-width: 1024px) {
    #all-menu-m {
        display: none !important;
    }
}
/* ========================================
   All Menu Mobile
======================================== */
#all-menu-m {
	display:none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    min-width: 320px;
}

#all-menu-m .dummy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#all-menu-m .inner-box {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 5rem;
    padding:160px 30px 0 30px;
    background: #01090a;
    overflow-x: hidden;
}

#all-menu-m .inner-box .m_logo {
    position: absolute;
    top: 3em;
    left: 4.5em;
    z-index: 9999;
    width: 8.3rem;
    height: 2.1rem;
	cursor:pointer;
}

#all-menu-m .inner-box .m_logo a {
	display:inline-block;
	width:130px;
}

#all-menu-m .inner-box #close-btn {
    position: absolute;
    top: 2em;
    right: 3em;
    z-index: 9999;
    width: 4rem;
    height:3rem;
	cursor:pointer;
}

#all-menu-m .inner-box #close-btn.open {
 display:none;
}

#all-menu-m .inner-box #close-btn .bar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0.3rem;
    background: var(--white);
	cursor:pointer;
}

#all-menu-m .inner-box #close-btn .bar1 {
    transform: translate(-50%, -50%) rotate(-45deg);
    background: var(--white);
}

#all-menu-m .inner-box #close-btn .bar2 {
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--white);
}

#all-menu-m .inner-box nav .depth1-ul > li:not(:last-child) {
    margin-bottom: 30px;
}

#all-menu-m .inner-box nav .depth1-ul > li > a,
#all-menu-m .inner-box nav .depth1-ul > li > button {
    display: block;
    width: 100%;
    font-size: 3.2em;
    text-align: left;
    color: var(--white);
}

#all-menu-m .inner-box nav .depth1-ul > li > button {
    position: relative;
    padding-right: 3.5em;
}

#all-menu-m .inner-box nav .depth1-ul > li > button:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 2.5rem;
    height: 1.4rem;
    margin-top: -0.7rem;
    background: url("../img/all-menu-arrow-ico.png") no-repeat center right / 100% auto;
    content: "";
    transition: all 0.3s;
}

#all-menu-m .inner-box nav .depth1-ul > li > button.on:after {
    transform: rotate(180deg);
}

#all-menu-m .inner-box nav .depth2-ul {
    display: none;
    margin-top: 30px;
    padding: 1.875rem;
    border-radius: 2rem;
    background: #333;
}

#all-menu-m .inner-box nav .depth2-ul > li:not(:last-child) {
    margin-bottom: 30px;
}

#all-menu-m .inner-box nav .depth2-ul > li > a {
    display: block;
    font-size: 1.7em;
    color: #888;
    cursor: pointer;
    transition: all 0.3s;
}

#all-menu-m .inner-box nav .depth2-ul > li > a:hover {
    color: var(--white);
}

#all-menu-m .inner-box .link-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#all-menu-m .inner-box .link-box a {
    width: fit-content;
    font-size: 2.6rem;
    color: #ea0121;
    padding-right: 3.5rem;
    background: url("../img/all-menu-link-arrow-ico.png") no-repeat center right / 2.5rem auto;
}

@media screen and (max-width: 1024px) {

	#all-menu-m .inner-box .m_logo {
		left: 3em;
		top:3.5em;
	}

	#all-menu-m .inner-box #close-btn {
		top: 3em;
		right: 2.5em;
	}

	#all-menu-m .inner-box .m_logo img {
		width:130px;
	}
}

/* ========================================
   Main Section 1 - Hero Slider
======================================== */
#main-section1 {
    position: relative;
}

#main-section1 .text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 11;
    width: 100%;
    color: var(--white);
    text-align: center;
    transform: translate(-50%, -50%);
}

#main-section1 .text-box h2 {
    font-size: 6em;
    font-weight: 700;
    line-height: 1.4;
	letter-spacing:-0.02em;
}

#main-section1 .text-box p {
    margin-top: 3em;
    font-size: 2em;
    font-weight: 400;
    line-height: 1.85;
	letter-spacing:-0.02em;
}

#main-section1 .more_btn {
    margin-top: 8.75rem;
	display: inline-block;
    padding: 20px 30px;
    border-radius: 29px;
	font-weight:700;
    background: var(--primary-blue);
    font-size: 1.6em;
    color: var(--white);
	width:200px;
	height:60px;
	letter-spacing: -0.02em;
}

#main-section1 .text-box .more_btn img {
    display: inline-block;
    margin-left: 20px;
    width: 16px;
    height: 16px;
}

#main-section1 .swiper-slide {
    position: relative;
    height: 100vh;
    max-height:90em;
	min-height:74em;
}

#main-section1 .swiper-slide .img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    transition: transform 5s linear;
}

#main-section1 .swiper-slide-active .img-box {
    transform: translate(-50%, -50%) scale(1);
}

#main-section1 .swiper-slide.slide-1 .img-box {
    background-image: url("/theme/basic/img/main_slide_02.jpg");
}

#main-section1 .swiper-slide.slide-2 .img-box {
    background-image: url("/theme/basic/img/main_slide_03.jpg");
}

#main-section1 .swiper-slide.slide-3 .img-box {
    background-image: url("/theme/basic/img/main_slide_04.jpg");
}

#main-section1 .swiper-slide.slide-4 .img-box {
    background-image: url("/theme/basic/img/main_slide_01.jpg");
}

#main-section1 .main-control-box {
    position: absolute;
    bottom: 4.375em;
    left: 50%;
    z-index: 11;
    width: 100%;
    transform: translateX(-50%);
}

#main-section1 .main-control-box .pagination-dot .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 1);
	opacity:0.3;
}

#main-section1 .main-control-box .pagination-dot .swiper-pagination-bullet-active {
    background: var(--white);
    opacity: 1;
}

@media screen and (max-width: 1024px) {
	#main-section1 .swiper-slide {
		height:85vh;
	}
	#main-section1 .text-box .more_btn {
		margin-top:7em;
	}
	#main-section1 .main-control-box {
		bottom:60px;
	}

	 #main-section1 .text-box {
		top: 50%;
		padding:0 3em;
	}

	#main-section1 .text-box .more_btn {
		margin-top:6.5em;
	}

	#main-section1 .text-box h2 {
		font-size:3.2em;
	}

	#main-section1 .text-box p {
		font-size:1.7em;
	}
}

/* ========================================
   Main Section 2 - Products
======================================== */
#main-section2 {
	position:relative;
    padding: 15em 0 22em 0;
    overflow: hidden;
}

#main-section2 .inner {
    max-width: 1250px;
    margin: 0 auto;
}

#main-section2 .txtbox {
    text-align: center;
}

#main-section2 .txtbox h5 {
    font-size: 5.2em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

#main-section2 .txtbox p {
	margin-top:45px;
    font-size: 1.8em;
    letter-spacing: -0.02em;
    line-height: 1.7;
    color: var(--text-gray);
}

#main-section2 .product_box {
    margin-top: 15em;
}

#main-section2 .product_box ul li {
	width:auto;
	cursor:pointer;
}

#main-section2  .swiper-pagination-bullets {
	bottom:100px;
}

#main-section2  .swiper-pagination-bullets span {
	width:40px;
	height:3px;
	background:#ebebeb;
	border-radius:unset;
	opacity:1;
}

#main-section2  .swiper-pagination-bullets .swiper-pagination-bullet-active {
	background:#333;
}

#main-section2 .product_box ul li .imgbox {
	text-align:center;
	height:420px;
}

#main-section2 .product_box ul li .imgbox img {
    width: 100%;
	height:100%;
}

#main-section2 .product_box .infobox {
    margin-top:60px;
    text-align: center;
}

#main-section2 .product_box .infobox span {
    display: inline-block;
    min-width: 112px;
    padding: 7px 8px;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    background-color: var(--text-dark);
}

#main-section2 .product_box .infobox h4 {
    margin-top: 20px;
    font-size: 2.2em;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

#main-section2 .product_box .infobox .more_btn {
	 margin-top:35px;
    position: relative;
    padding:8px 0;
    font-size: 1.4em;
    letter-spacing: -0.02em;
    color: var(--text-light);
    transition: all 0.3s ease;
	border-bottom:1px solid #aaa;
}

#main-section2 .product_box .infobox .more_btn:hover {
    font-weight: 600;
    color: var(--text-dark);
    border-color:var(--text-dark);
}

@media screen and (max-width: 1280px) {

	#main-section2 .product_box ul li .imgbox img {
		width:100%;
	}
}

@media screen and (max-width: 1024px) {
	.pc_only {
		display:none;
	}
	.m_only {
		display:block;
	}

	#main-section2 .product_box {
		margin-top:120px;
	}

	#main-section2 .product_box ul li {
        width: calc((100% - 130px) / 2);
    }

	#main-section2 .inner{
		padding:0 1.5em;
	}

	#main-section2 .txtbox h5  {
		font-size: 4em;
	}
}

@media screen and (max-width: 800px) {
	#main-section2 .product_box ul li {
		width:100%;
	}
}

/* ========================================
   Main Section 3 - Slider Section
======================================== */
#main-section3 {
    padding: 150px 0;
    background: var(--bg-light);
    overflow: hidden;
}

#main-section3 .com-center-wide {
    display: flex;
    margin-left: 18.75rem;
    gap: 18em;
}

#main-section3 > .com-center-wide > div {
    flex-shrink: 0;
}

#main-section3 .main-title-box {
    margin-bottom: 0;
}

#main-section3 .pagination-number {
    display: flex;
    align-items: baseline;
    gap: 1em;
    font-weight: 700;
}

#main-section3 .pagination-number .current {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--text-dark);
}

#main-section3 .pagination-number .total {
    font-size: 2.4em;
    font-weight: 500;
    color: var(--text-light);
}

#main-section3 .pagination-number .total::before {
    color: var(--text-light);
    content: '/ ';
}

#main-section3 .main-title-box .title {
    margin-top: 60px;
    font-size: 5.2em;
    line-height: 1.3;
    color: var(--text-dark);
}

#main-section3 .main-title-box .desc {
     margin-top: 60px;
    font-size: 1.8em;
    line-height: 1.7;
    color: var(--text-gray);
}

#main-section3 .more_btn_box {
    margin-top: 100px;
}

#main-section3 .more_btn_box .more_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    gap: 10px;
    padding: 20px 25px;
    border: 1px solid var(--text-dark);
    border-radius: 2.9rem;
    background: var(--bg-light);
    font-size: 1.6em;
    font-weight: 700;
    color: var(--text-dark);
}

#main-section3 .more_btn_box .more_btn::after {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/theme/basic/img/arrow_icon_black.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    content: '';
    transition: all 0.3s ease;
}

#main-section3 .more_btn_box .more_btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

#main-section3 .more_btn_box .more_btn:hover::after {
    background-image: url('/theme/basic/img/arrow_icon.png');
}

#main-section3 .swiper-box {
    position: relative;
    width: calc(100% - 180px);
}

#main-section3 .swiper-inner-box {
    overflow: hidden;
}

#main-section3 .swiper {
    position: relative;
    width:60%;
    margin: 0;
    overflow: visible;
}

#main-section3 .swiper-slide {
    position: relative;
    width: 300px;
	flex-shrink: 0 !important;
	height:600px;
    border-radius: 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
	transition:all 1s;
	cursor:pointer;
}

#main-section3 .swiper-slide::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 7rem;
   background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    content: "";
}

#main-section3 .swiper-slide-active {
	opacity: 1;
	width: 600px !important;
}

#main-section3 .swiper-slide .slide-content {
    position: absolute;
	bottom: 3.4rem;
    left: 3.4rem;
    z-index: 3;
	width:400px;
	word-break: keep-all;
}

#main-section3 .swiper-slide .slide-content h3 {
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
	line-height:1.42;
}

#main-section3 .swiper-slide.slide-1 {  background-image: url("/theme/basic/img/01_Retail.jpg");}
#main-section3 .swiper-slide.slide-2 { background-image: url("/theme/basic/img/02_Healthcare.jpg");}
#main-section3 .swiper-slide.slide-3 { background-image: url("/theme/basic/img/03_Banking_Finance.jpg");}
#main-section3 .swiper-slide.slide-4 { background-image: url("/theme/basic/img/04_Self-payment-&-Info-Kiosk.jpg");}
#main-section3 .swiper-slide.slide-5 { background-image: url("/theme/basic/img/05_Parking.jpg");}
#main-section3 .swiper-slide.slide-6 { background-image: url("/theme/basic/img/06_Lotteries_Betting.jpg");}
#main-section3 .swiper-slide.slide-7 { background-image: url("/theme/basic/img/07_Public_Transport.jpg");}
#main-section3 .swiper-slide.slide-8 { background-image: url("/theme/basic/img/08_Logistics_Postal.jpg");}
#main-section3 .swiper-slide.slide-9{ background-image: url("/theme/basic/img/09_Manufacturing.jpg"); }

@media screen and (max-width: 1760px) {
	#main-section3 .com-center-wide  {
		margin-left:30px;
	}
}

@media screen and (max-width: 1280px) {
	#main-section3 .com-center-wide {
		gap:70px;
	}
}

@media screen and (max-width: 1024px) {
	#main-section3 {
		padding:10em 0;
	}

	#main-section3 .com-center-wide {
		flex-wrap:wrap;
	}
	#main-section3 .more_btn_box {
		margin-top:60px;
	}
	#main-section3 .main-title-box .title {
		font-size: 4em;
	}

	#main-section3 .main-title-box .desc {
		font-size:1.6em;
	}

    #main-section3 .com-center-wide {
        flex-wrap: wrap;
    }

    #main-section3 .swiper-box {
        width: 100%;
    }

    #main-section3 .swiper {
        width: 100%;
    }

    #main-section3 .swiper-slide {
        width: 100%;
        border-radius: 2.5rem;
    }
}

@media screen and (max-width: 640px) {
	#main-section3 .swiper-slide {
		width:500px;
		height:500px;
	}
	#main-section3 .swiper-slide-active {
		width: 500px !important;
	}
}

@media screen and (max-width: 500px) {
	#main-section3 .swiper-slide {
		width:300px;
		height:300px;
	}
	#main-section3 .swiper-slide-active {
		width: 300px !important;
	}
}




/* ========================================
   Main Section 4 - Info Section
======================================== */
#main_section4 {
    padding: 150px 0;
}

#main_section4 .inner {
    max-width: 1250px;
	width:100%;
}

#main_section4 .txtbox {
    text-align: center;
}

#main_section4 .txtbox h5 {
    font-size: 5.2em;
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

#main_section4 .txtbox p {
	margin-top:50px;
    font-size: 1.8em;
    letter-spacing: -0.02em;
    line-height: 1.7;
    color: var(--text-gray);
}

#main_section4 .info_box {
    margin-top: 120px;
}

#main_section4 .info_box ul {
    display: flex;
    gap: 15px;
}

#main_section4 .info_box ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((100% - 15px) / 3);
    padding:3em 3.5em;
    border-radius: 2em;
    background: var(--bg-light);
    cursor: pointer;
}

#main_section4 .info_box ul li p {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-dark);
}

#main_section4 .info_box ul li .arrow_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text-dark);
}

#main_section4 .info_box ul li:hover .arrow_box {
    background: var(--primary-blue);
}

#main_section4 .info_box ul li:hover .arrow_box img {
    transform: rotate(-45deg);
    transition: all 0.3s;
}

@media screen and (max-width: 1024px) {

	#main_section4 .inner {
		padding:0 3em;
	}

	 #main_section4 {
        padding:12em 0;
    }

	#main_section4 .txtbox h5 {
		font-size: 2.7em;
	}

	#main_section4 .txtbox p {
		font-size:1.6em;
	}

	#main_section4 .info_box {
		margin-top:80px;
	}

    #main_section4 .info_box ul {
        flex-wrap: wrap;
        gap: 20px;
		justify-content: center;
    }

    #main_section4 .info_box ul li {
        width: 100%;

    }
}

/* ========================================
   Main Section 5 - Navigation
======================================== */
#main-section5 {
    padding: 70px 80px;
    background: #373737;
}

#main-section5 .nav-container {
    display: flex;
    flex-wrap: wrap;
}

#main-section5 .nav-container .nav-section {
    width: 20%;
    padding:0 120px 0 40px;
    border-left: 1px solid #4c4c4c;
}

#main-section5 .nav-container .nav-section:last-child {
    border-right: 1px solid #4c4c4c;
}

#main-section5 .nav-container .nav-section h3 {
    margin-bottom: 3rem;
    font-size: 1.8em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

#main-section5 .nav-container .nav-section ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

#main-section5 .nav-container .nav-section ul li a {
    font-size: 1.5em;
    letter-spacing: -0.02em;
    color: #aaa;
	font-weight:400;
}

#main-section5 .nav-container .nav-section ul li:hover a {
    color: var(--white);
}

@media screen and (max-width: 1024px) {
	#main-section5 {
        padding: 55px 30px;
    }

    #main-section5 .nav-container {
        row-gap:30px;
    }

    #main-section5 .nav-container .nav-section {
        width: 100%;
        border-left: none;
		padding:0;
    }

    #main-section5 .nav-container .nav-section:last-child {
        border-right: none;
    }

	#main-section5 .nav-container .nav-section ul {
		display:none;
	}

	#main-section5 .nav-container .nav-section h3 {
		margin-bottom:0;
	}
}

@media screen and (max-width: 800px) {
	#main-section5 .nav-container {
        flex-direction: column;
    }

    #main-section5 .nav-container .nav-section ul {
        display: none;
    }
}

/* ========================================
   Footer Styles
======================================== */
.footer {
    position: relative;
    padding: 60px 0;
    background-color: #222;
    color: #ffffff;
	border:1px solid #030000;
}

.footer .footer-container {
    width: 100%;
	ma
}

.footer .footer-info .top {
    display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
}

.footer .footer-info .bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    flex-wrap: wrap;
}

.footer .footer-links {
    display: flex;
    gap:25px;
}

.footer .footer-links a {
    font-size: 1.8em;
    font-weight: 500;
    color: var(--white);
}

.footer .company-info {
    font-size: 1.6em;
    color: #cccccc;
}

.footer .info-row {
    display: flex;
    margin-bottom: 20px;
    color: #777;
}

.footer .info-row:last-child {
    margin-bottom: 0;
}

.footer .info-label {
    width: 80px;
    font-weight: normal;
    flex-shrink: 0;
}

.footer .info-content {
    flex: 1;
}

.footer .copyright {
    margin-top: 60px;
}

.footer .copyright p {
    font-size: 1.6rem;
    color: #777;
    letter-spacing: -0.02em;
}

.footer .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 120px;
}

.footer .related-sites {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
    padding: 20px 15px;
    border: none;
    border-radius: 2.7rem;
    background-color: #484848;
    font-size: 1.6em;
    color: #ffffff;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.footer .related-sites:hover {
    background-color: #555555;
}

.footer .dropdown-container {
    position: relative;
}

.footer .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top:-33rem;
    left: 0;
    z-index: 100;
    width: 100%;
    border-radius: 2.7rem;
    background-color: #484848;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
	cursor:pointer;
}

.footer .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

.footer .dropdown-menu a {
    display: block;
    font-size: 1.5em;
    color: #aaa;
    margin-bottom: 30px;
}

.footer .dropdown-menu a:last-child {
    margin-bottom: 0;
}

.footer .dropdown-menu a:hover {
    color: #ffffff;
}

.footer .plus-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}

.footer .plus-icon::before,
.footer .plus-icon::after {
    position: absolute;
    background-color: #ffffff;
    content: '';
    transition: all 0.3s ease;
}

.footer .plus-icon::before {
    width: 14px;
    height: 2px;
}

.footer .plus-icon::after {
    width: 2px;
    height: 14px;
}

.footer .related-sites.active .plus-icon::after {
    opacity: 0;
    transform: rotate(90deg);
}

.footer .related-sites.active .plus-icon {
    transform: rotate(180deg);
}

.footer .rexod-logo {
    margin-top: 20px;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
}

@media screen and (max-width: 1440px) {
	.footer-info .bottom {
		margin-top:35px;
	}
	.footer .logo_box {
		margin-left: auto;
	}
}

@media screen and (max-width: 1280px) {
	footer .footer-info {
		flex:none;
	}

	.footer .footer-info .top {
		flex-wrap:wrap;
	}
}

@media screen and (max-width: 1024px) {
	.footer {
		padding:55px 30px;
	}
	.footer .copyright {
		margin-top:50px;
	}
	.footer .footer-links a:last-child {
		margin-right:0;
	}
	.footer .related-sites {
		width:180px;
	}

	.footer .dropdown-menu {
		bottom: -36rem;
        max-height: 320px;
        padding: 25px;
	}

	.footer .footer-info .bottom {
		row-gap:70px;
	}
	.footer .footer-info .top {
		align-items: center;
		row-gap:2em;
	}
	.footer-info .bottom {
		justify-content: center;
	}

	.footer .footer-info .f-logo img {
		width:200px;
	}
	.footer .copyright p {
		font-size:1.4rem;
	}
}

@media screen and (max-width: 800px) {
	.footer .footer-links {
	 gap:10px;
	}
	.footer .related-sites {
		padding:10px 15px;
	}
	.footer .company-info {
		font-size:1.3em;
	}
	.footer .dropdown-menu  {
		top:-33rem;
	}
}