@charset "UTF-8";

@font-face {
    font-family: "MBCorpo Title";
    src: url("../fonts/MBFonts/MBCorpoATitleCond-Regular-Web.woff2") format("woff2"), url("../fonts/MBFonts/MBCorpoATitleCond-Regular-Web.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "MBCorpo Text";
    src: url("../fonts/MBFonts/MBCorpoSText-Regular-Web.woff2") format("woff2"), url("../fonts/MBFonts/MBCorpoSText-Regular-Web.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: MBCorpo Text, sans-serif;
    background-color: #000000;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 96px;
    z-index: 50;
}

/* Left Navigation */
.left-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.66;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 1;
}


/* Centered Logo */
.logo-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mb-star {
    width: 38px;
    height: 38px;
}


/* Right Navigation */
.right-nav {
    display: flex;
    align-items: center;
}

.icon-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

    .icon-link:hover {
        opacity: 0.8;
    }

.nav-icon {
    width: 30px;
    height: 30px;
}

.login-group {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

    .login-group .nav-icon {
        margin-right: 10px;
    }

.nav-link-text {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s;
    margin-left: 30px;
}

.login-group .nav-link-text {
    margin-left: 0;
}

.nav-link-text:hover {
    color: #0088c6;
}



/* Main Content */
#contents {
    background-color: #ffffff;
    min-height: calc(100vh - 72px);
    padding-top: 142px;
}

.container {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    margin: 0 100px;
}

/* Left Menu */
.left-menu {
    flex: 2;
}

.left-menu .title {
    font-family: MBCorpo Title, sans-serif;
    font-size: 32px;
    margin: 0;
}

.top-menu {
    list-style-type: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.top-menu li {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.top-menu a {
    font-family: MBCorpo Text, sans-serif;
    font-size: 19px;
    color: #000000;
    padding: 15px 0;
    transition: font-weight 0.25s;
}

.top-menu a.active {
    font-weight: bold;
    pointer-events: none;
}

.top-menu .icon {
    padding: 15px 0;
    margin-left: 15px;
    opacity: 0.66;
}

.bottom-menu {
    list-style-type: none;
    padding: 0;
    margin: 45px 0 0 0;
}


.bottom-menu li .icon {
            padding: 15px 0;
            margin-right: 15px;
}

.bottom-menu li a {
    font-family: MBCorpo Text, sans-serif;
    font-size: 19px;
    color: #999999;
    padding: 15px 0;
    transition: font-weight 0.25s;
}

.bottom-menu li a:hover {
                text-decoration: underline;
}


/* Space Left */
.space-left {
    flex: 1;
}

/* Right Contents */
.right-contents {
    flex: 6;
}

    .right-contents h2 {
        font-family: MBCorpo Title, sans-serif;
        font-size: 32px;
        font-weight: normal;
        margin: 0;
    }


    .right-contents p {
        font-family: MBCorpo Text, sans-serif;
        font-size: 19px;
        line-height: 1.474;
        margin: 25px 0 0 0
    }

    .right-contents .external-link {
        display: block;
        font-family: MBCorpo Text, sans-serif;
        font-size: 19px;
        color: #00adef;
        text-decoration: none;
        margin: 5px 0 40px 0
    }

     .right-contents .external-link:hover {
        text-decoration: underline
    }

.right-contents .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 0 30px 15px 30px;
    margin-top: 20px
}

   .right-contents .row .icon {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        text-align: right;
        margin-left: 30px
    }

        .right-contents .row .icon img {
            max-width: 100%;
            height: auto
        }

    .right-contents .row .text {
        -webkit-box-flex: 3;
        -ms-flex: 3;
        flex: 3
    }

        .right-contents .row .text p {
            font-family: MBCorpo Text, sans-serif;
            font-size: 17px;
            line-height: 1;
            margin: 0
        }

 .space-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.intro-text {
    font-family: MBCorpo Text, sans-serif;
    font-size: 19px;
    line-height: 1.474;
    margin: 25px 0 0 0;
}

.right-contents h3 {
    font-family: MBCorpo Text, sans-serif;
    font-size: 32px;
    font-weight: normal;
    margin: 30px 0 10px 0;
}

/* News Items */
.divNews .row {
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 85px;
    margin-top: 30px;
}

.divNews .picture {
    flex: 1;
}

.divNews .picture img {
    width: 326px;
    height: 150px;
}

.divNews .text {
    flex: 3;
    margin-left: 20px;
}

.divNews h4 {
    font-family: MBCorpo Text, sans-serif;
    font-size: 28px;
    font-weight: normal;
    margin: 0;
}

.divNews p {
    font-family: MBCorpo Text, sans-serif;
    font-size: 17px;
    line-height: 1.765;
    margin: 10px 0 0 0;
}

/* Space Right */
.space-right {
    flex: 1;
}

/* Brand Logos */
#brand-logos {
    background-color: #000000;
    width: 100%;
}

#brand-logos img {
    display: block;
    max-width: 1920px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 8px;
}

/* Footer */
#footer {
    background-color: #000000;
    margin-top: 0;
    padding-top: 0;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 128px;
    padding: 0 96px;
}

.footer-links {
    display: flex;
    align-items: center;
    width: 100%;
    height: 112px;
    border-top: 1px solid #6a6a6a;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.footer-links a {
    color: #ffffff;
    font-size: 18px;
    opacity: 0.66;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/*_____________________________________Form Container___________________________________________________________________________*/
.form-container .form-top {
    width: 64%;
    background-color: #ececec;
    padding: 70px 70px 25px;
    margin: 0 auto
}

    .form-container .form-top .divCombo input {
        padding: 0 !IMPORTANT;
    }


    .form-container .form-top .title {
        font-family: "MBCorpo Title" !IMPORTANT;
        font-size: 31px !IMPORTANT;
        color: #000000 !IMPORTANT;
        margin: 0 !IMPORTANT
    }

    .form-container .form-top input,
    .form-container .form-top textarea {
        width: 100% !IMPORTANT;
        font-family: "MBCorpo Text" !IMPORTANT;
        font-size: 16px !IMPORTANT;
        border: none !IMPORTANT;
        border-radius: unset !IMPORTANT;
        outline: unset !IMPORTANT;
        padding: 15px !IMPORTANT;
        margin: 10px 0 0 0 !IMPORTANT
    }

        .form-container .form-top input:focus,
        .form-container .form-top textarea:focus {
            border: 1px solid #00adef !IMPORTANT
        }

        .form-container .form-top input:first-child {
            margin-top: 0 !IMPORTANT
        }

    .form-container .form-top textarea {
        resize: none !IMPORTANT
    }

    .form-container .form-top input[type=checkbox] {
        width: auto !IMPORTANT
    }

    .form-container .form-top span {
        font-family: "MBCorpo Text" !IMPORTANT;
        font-size: 16px !IMPORTANT;
        /*margin-left: 5px !IMPORTANT*/
    }

        .form-container .form-top span a {
            color: #000000 !IMPORTANT;
            text-decoration: none !IMPORTANT;
            -webkit-transition: color 0.33s !IMPORTANT;
            transition: color 0.33s !IMPORTANT
        }

            .form-container .form-top span a:hover {
                color: #00adef !IMPORTANT;
                text-decoration: underline !IMPORTANT
            }

    .form-container .form-top p {
        font-family: "MBCorpo Text" !IMPORTANT;
        font-size: 12px !IMPORTANT;
        margin: 30px 0 0 0 !IMPORTANT
    }

.form-container .form-bottom {
    width: 64% !IMPORTANT;
    text-align: right !IMPORTANT;
    text-align: right !IMPORTANT;
    margin: 0 auto !IMPORTANT
}

/*.form-container .form-bottom .submit-button {*/
/*width: 40% !IMPORTANT;*/
/*margin-top: 15px !IMPORTANT
    }

        .form-container .form-bottom .submit-button input[type=submit] {
            font-family: "MBCorpo Text" !IMPORTANT;
            font-size: 16px !IMPORTANT;
            color: rgba(255, 255, 255, 0.75) !IMPORTANT;
            border: none !IMPORTANT;
            background-color: #00adef !IMPORTANT;
            cursor: pointer !IMPORTANT;
            padding: 17px 81px !IMPORTANT;
            -webkit-transition: color 0.33s !IMPORTANT;
            transition: color 0.33s !IMPORTANT
        }

            .form-container .form-bottom .submit-button input[type=submit]:hover {
                color: #ffffff !IMPORTANT
            }*/

.submit-button {
    /*width: 40% !IMPORTANT;*/
    margin-top: 15px !IMPORTANT
}

    .submit-button input[type=submit] {
        font-family: "MBCorpo Text" !IMPORTANT;
        font-size: 16px !IMPORTANT;
        color: rgba(255, 255, 255, 0.75) !IMPORTANT;
        border: none !IMPORTANT;
        background-color: #0079d6 !IMPORTANT;
        cursor: pointer !IMPORTANT;
        padding: 17px 81px !IMPORTANT;
        -webkit-transition: color 0.33s !IMPORTANT;
        transition: color 0.33s !IMPORTANT
    }

        .submit-button input[type=submit]:hover {
            color: #ffffff !IMPORTANT;
            background-color: #006abc !IMPORTANT;
        }