@charset "utf-8";
@import url("font.css");

/*common*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.05em;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    transition: background-image 0.4s ease-in;
    background: black;
}

body.home {
    background-image: url('../images/common/bg_saltware.jpg');
}

body.infra {
    background-image: url('../images/common/bg_infrastructure.jpg');
}

body.cloud {
    background-image: url('../images/common/bg_cloud.jpg');
}

body.platform {
    background-image: url('../images/common/bg_platform.jpg');
}

body.farm {
    background-image: url('../images/common/bg_smartfarm.jpg');
}

body:after {
    clear: both;
    display: block;
    content: "";
}

img {
    border: 0;
    vertical-align: middle;
}

label {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

dl,
dt,
dd,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

em,
i,
address {
    font-style: normal;
}

table {
    display: table;
    border-spacing: 0px;
    border-collapse: collapse;
    table-layout: fixed;
}

caption {
    overflow: hidden;
    height: 0;
    font-size: 0;
    line-height: 0;
}

hr {
    border: 1px;
    border-collapse: collapse;
}

form,
fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

textarea,
input,
button,
select {
    vertical-align: middle;
    box-sizing: border-box;
}

textarea {
    display: block;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*select box 화살표 안보이게*/
select::-ms-expand {
    display: none;
}

/*IE select box 화살표 안보이게*/
img,
input[type=checkbox],
input[type=radio] {
    vertical-align: middle;
}

input:focus {
    outline: none;
}

input[type="password"] {
    font-family: 'Noto Sans KR', sans-serif;
}

input::placeholder {
    color: #fff;
    font-weight: 400;
}

iframe {
    width: 100%;
    color: #fff;
}

/* 정렬 */
.L {
    text-align: left;
}

.C {
    text-align: center;
}

.R {
    text-align: right;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.cf::after {
    clear: both;
    display: block;
    content: "";
}

/*width*/
.w100per {
    width: 100%;
}

.w100 {
    width: 100px;
}

/* margin */
.ML10 {
    margin-left: 10px;
}

.MT150 {
    margin-top: 150px;
}

.MT80 {
    margin-top: 80px;
}

/* color */
.gray_1000 {
    background-color: #1D1D1D;
}

.gray_900 {
    background-color: #292929;
}

.gray_700 {
    background-color: #343434;
}

.gray_500 {
    background-color: #414141;
}

.t_orange {
    color: #f49f20;
}


.dropdown {
    border-bottom: 1px solid #ffff;
    text-align: left;
    width: 170px;
    bottom: 0px;
    right: 50px;
    background: #222;
    position: absolute;
    line-height: 1;
    
}

.dropdown > .btn {
    display: block;
    width: 100%;
    height: auto;
    margin-left: 0;
    font-size: 13px;
    font-weight: bold;
    text-align: left;
    padding: 10px 16px;
    color: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 0;
    background: transparent;
}

.dropdown > .btn::after{
    content: "";
    position: absolute;
    background: url(../images/common/ft_arr.svg) no-repeat 92% center;
    width: 15px;
    height: 15px;
    right: 12px;
    top: 10px;
}

.dropdown.open > .btn::after{
    transform: rotate(180deg);
}

.dropdown .dropdown-menu {
    bottom: 40px;
    top: auto;
}

.dropdown .dropdown-menu a {
    color: #000;
}

.open > .dropdown-menu {
    display: block;
}

.dropdown-menu > li > a {
    display: block;
    padding: 12px 20px;
    border: 1px solid rgba(221, 221, 221, 0.42);
    font-weight: 300;
    letter-spacing: .4px;
}

.dropdown-menu > li > a:hover {
/*    background: rgba(221, 221, 221, 0.40);  */
    background: #F49F20;
    color: #fff;
}

.dropdown-menu {
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.open > .dropdown-menu {
    display: block;
}
