/* Minification failed. Returning unminified contents.
(1,17): run-time error CSS1031: Expected selector, found ';'
(1,17): run-time error CSS1025: Expected comma or open brace, found ';'
(2,16): run-time error CSS1031: Expected selector, found ';'
(2,16): run-time error CSS1025: Expected comma or open brace, found ';'
(3,1): run-time error CSS1019: Unexpected token, found '$'
(3,3): run-time error CSS1030: Expected identifier, found 'ajax('
(3,3): run-time error CSS1019: Unexpected token, found 'ajax('
(3,8): run-time error CSS1019: Unexpected token, found '{'
(4,10): run-time error CSS1030: Expected identifier, found ' '
(4,11): run-time error CSS1031: Expected selector, found '"GET"'
(4,11): run-time error CSS1025: Expected comma or open brace, found '"GET"'
(15,1): run-time error CSS1019: Unexpected token, found '}'
(15,2): run-time error CSS1019: Unexpected token, found ')'
(17,10): run-time error CSS1031: Expected selector, found 'GetFriendlyUrl('
(17,10): run-time error CSS1025: Expected comma or open brace, found 'GetFriendlyUrl('
(57,10): run-time error CSS1031: Expected selector, found 'GenerateMsasMessage('
(57,10): run-time error CSS1025: Expected comma or open brace, found 'GenerateMsasMessage('
(68,10): run-time error CSS1031: Expected selector, found 'MsasMessage('
(68,10): run-time error CSS1025: Expected comma or open brace, found 'MsasMessage('
(124,10): run-time error CSS1031: Expected selector, found 'MsasMessageBehavior('
(124,10): run-time error CSS1025: Expected comma or open brace, found 'MsasMessageBehavior('
(138,10): run-time error CSS1031: Expected selector, found 'SetOpenedSidebarItem('
(138,10): run-time error CSS1025: Expected comma or open brace, found 'SetOpenedSidebarItem('
(151,10): run-time error CSS1031: Expected selector, found 'SearchSidebar('
(151,10): run-time error CSS1025: Expected comma or open brace, found 'SearchSidebar('
(174,10): run-time error CSS1031: Expected selector, found 'MsasConfirmationMessage('
(174,10): run-time error CSS1025: Expected comma or open brace, found 'MsasConfirmationMessage('
(188,10): run-time error CSS1031: Expected selector, found 'EntityPreview('
(188,10): run-time error CSS1025: Expected comma or open brace, found 'EntityPreview('
(254,10): run-time error CSS1031: Expected selector, found 'GetLinkHtml('
(254,10): run-time error CSS1025: Expected comma or open brace, found 'GetLinkHtml('
(268,10): run-time error CSS1031: Expected selector, found 'MsasBtnUploadFile('
(268,10): run-time error CSS1025: Expected comma or open brace, found 'MsasBtnUploadFile('
(272,10): run-time error CSS1031: Expected selector, found 'MsasBtnRemoveFile('
(272,10): run-time error CSS1025: Expected comma or open brace, found 'MsasBtnRemoveFile('
(277,10): run-time error CSS1031: Expected selector, found 'PasswordViewer('
(277,10): run-time error CSS1025: Expected comma or open brace, found 'PasswordViewer('
(286,10): run-time error CSS1031: Expected selector, found 'StartLoading('
(286,10): run-time error CSS1025: Expected comma or open brace, found 'StartLoading('
(295,10): run-time error CSS1031: Expected selector, found 'EndLoading('
(295,10): run-time error CSS1025: Expected comma or open brace, found 'EndLoading('
(299,10): run-time error CSS1031: Expected selector, found 'FormLanguageSwitcher('
(299,10): run-time error CSS1025: Expected comma or open brace, found 'FormLanguageSwitcher('
(1249,1813): run-time error CSS1019: Unexpected token, found '@keyframes'
(1249,1832): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(1458,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(1459,10): run-time error CSS1035: Expected colon, found '{'
(1470,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(1471,10): run-time error CSS1035: Expected colon, found '{'
(2123,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(2124,10): run-time error CSS1035: Expected colon, found '{'
(2136,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(2137,10): run-time error CSS1035: Expected colon, found '{'
(2149,1): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(2150,10): run-time error CSS1035: Expected colon, found '{'
(2161,1): run-time error CSS1019: Unexpected token, found '@keyframes'
(2162,10): run-time error CSS1035: Expected colon, found '{'
 */
var LanguageKeys;
var UrlRewrites;
$.ajax({
    type: "GET",
    url: "/Admin/Utility/GetJavascriptCachedData",
    contentType: "application/json",
    async: false,
    success: function (result) {
        MsasMessage(result.Message);
        if (result.Success) {
            LanguageKeys = result.LanguageKeys;
            UrlRewrites = result.UrlRewrites;
        }
    }
});

function GetFriendlyUrl(title) {
    title = title.toLowerCase();
    for (var i = 0; i < UrlRewrites.length; i++) {
        var exp = UrlRewrites[i].FromChar;
        if (exp === "[") {
            exp = "[\\" + exp + "]";
        }
        if (exp === ")") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "(") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "+") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "*") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "\\") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "?") {
            exp = "[\\" + exp + "]";
        }
        if (exp === ".") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "^") {
            exp = "[\\" + exp + "]";
        }
        if (exp === "$") {
            exp = "[" + exp + "]";
        }
        var regexp = new RegExp(exp, 'g');
        title = title.replace(regexp, UrlRewrites[i].ToChar);
    }
    return title;
}

function GenerateMsasMessage(message, messageType) {//Error = 1,    //Success = 2,    //Info = 3
    var tempMessage = {
        Reload: false,
        RedirectToNewTab: false,
        RedirectUrl: "",
        MessageDetails: [{ MessageType: messageType, Message: message }],
        Success: messageType !== 1
    };
    return tempMessage;
}

function MsasMessage(message) {

    var errorMessage = $("#MsasHtmlTemplates .msas-error-messages").clone();
    var includeError = false;

    var successMessage = $("#MsasHtmlTemplates .msas-success-messages").clone();
    var includeSuccess = false;

    var infoMessage = $("#MsasHtmlTemplates .msas-info-messages").clone();
    var includeInfo = false;

    for (var i = 0; i < message.MessageDetails.length; i++) {
        if (message.MessageDetails[i].MessageType === 1) {//Error = 1,
            includeError = true;
            var errorMessageItem = $("#MsasHtmlTemplates .msas-error-message-item").clone();
            errorMessageItem.append(message.MessageDetails[i].Message);
            errorMessage.find(".msas-error-body").append(errorMessageItem);
        }

        if (message.MessageDetails[i].MessageType === 2) {//Success = 2,
            includeSuccess = true;
            var successMessageItem = $("#MsasHtmlTemplates .msas-success-message-item").clone();
            successMessageItem.append(message.MessageDetails[i].Message);
            successMessage.find(".msas-success-body").append(successMessageItem);
        }

        if (message.MessageDetails[i].MessageType === 3) {//Info = 3
            includeInfo = true;
            var infoMessageItem = $("#MsasHtmlTemplates .msas-info-message-item").clone();
            infoMessageItem.append(message.MessageDetails[i].Message);
            infoMessage.find(".msas-info-body").append(infoMessageItem);
        }
    }

    var container = $("#MsasHtmlTemplates .msas-messages-container").clone();
    if (includeError) {
        container.find(".msas-messages-body").append(errorMessage);
    }
    if (includeSuccess) {
        container.find(".msas-messages-body").append(successMessage);
    }
    if (includeInfo) {
        container.find(".msas-messages-body").append(infoMessage);
    }

    if (includeError || includeSuccess || includeInfo) {
        $(container).modal();
        $(container).on('hidden.bs.modal', function (e) {
            MsasMessageBehavior(message);
        });
    }
    else {
        MsasMessageBehavior(message);
    }
}

function MsasMessageBehavior(message) {
    if (message.Reload) {
        window.location.reload();
    }
    if (message.RedirectUrl.length > 0) {
        if (message.RedirectToNewTab) {
            $(".msas-messages-new-tab-opener").attr("href", message.RedirectUrl)[0].click();
        }
        else {
            window.location.href = message.RedirectUrl;
        }
    }
}

function SetOpenedSidebarItem(itemId) {
    $("#full-sidebar").find('.active').removeClass('active');
    $("#full-sidebar").find('.open').removeClass('open');
    $("#full-sidebar").find('.selected').removeClass('selected');
    //$("#" + itemId).addClass("active");
    var autoId = $("#" + itemId).attr("autoId");
    $(".msas-main-menu-" + autoId).addClass("active open");
    $(".msas-main-menu-" + autoId).find(".msas-selected-arrow").addClass("selected");
    $(".msas-main-menu-" + autoId).find(".arrow").addClass("open");
    $("#" + itemId).closest(".msas-link-item").addClass("active open");
    $("#" + itemId).closest(".sub-menu").show();
}

function SearchSidebar() {
    var query = $("[name=sidebar-query]").val().toLowerCase();
    if (query.length > 0) {
        $('.search-result-title').show();
        $('.search-result-link').remove();
        var allNodes = $('#full-sidebar').find(".searchable-title");
        $.each(allNodes, function (index, item) {
            var itemText = $(item).html().toLowerCase();
            if (itemText.indexOf(query) > -1) {
                var link = $(item).closest("li").clone().addClass("search-result-link").removeAttr("id");
                link.insertAfter(".search-result-title");
            }
        });
        $('.sidebar-item').hide();

    }
    else {
        $('.sidebar-item').show();
        $('.search-result-title').hide();
        $('.search-result-link').remove();
    }
}

function MsasConfirmationMessage(confirmButton, message) {
    if (message === undefined || message === null || message.length === 0) {
        message = LanguageKeys["ConfirmationMessage"];
    }
    var errorMessage = $("#MsasHtmlTemplates .msas-confirmation-messages").clone();
    var errorMessageItem = $("#MsasHtmlTemplates .msas-confirmation-message-item").clone();
    errorMessageItem.append(message);
    errorMessage.find(".msas-confirmation-body").append(errorMessageItem);
    var container = $("#MsasHtmlTemplates .msas-messages-container").clone();
    container.find(".msas-messages-body").append(errorMessage);
    container.find(".msas-message-modal-footer").append(confirmButton);
    $(container).modal();
}

function EntityPreview(id, url, systemUniqueGridId) {
    $.ajax({
        type: "GET",
        url: url,
        data: { id: id },
        contentType: "application/json",
        success: function (result) {
            MsasMessage(result.Message);
            if (result.Success) {


                //var options = JSON.parse(localStorage.getItem(systemUniqueGridId + "GridState"));
                $.each(LoadedGridState.GridColumnStates, function (index, item) {
                    $.each(result.Entity, function (property, value) {
                        if (item.ColumnName === property) {
                            value.Order = item.ColumnOrder;
                        }
                    });
                });
                var formList = new Array();
                $.each(result.Entity, function (property, value) {
                    var formItem = $("#MsasHtmlTemplates .msas-quick-view-item").clone();
                    formItem.find(".msas-quick-view-item-label").html(value.Label);
                    if (value.UIComponent === "Text") {
                        formItem.find(".msas-quick-view-item-value").html(value.Value);
                    }
                    else if (value.UIComponent === "Image") {
                        var img = $("#MsasHtmlTemplates .msas-quick-view-item-img").clone();
                        img.attr("src", value.Value);
                        formItem.find(".msas-quick-view-item-value").append(img);
                    }
                    else if (value.UIComponent === "Checkbox") {
                        var chk = $("#MsasHtmlTemplates .msas-quick-view-item-checkbox").clone();
                        if (value.Value === true) {
                            chk.find("input").attr("checked", "checked");
                        }
                        formItem.find(".msas-quick-view-item-value").append(chk);
                    }
                    else if (value.UIComponent === "Cv") {
                        formItem.find(".msas-quick-view-item-value").html(GetLinkHtml(value.Value));
                    }
                    else {
                        console.log("This UI Component(" + value.UIComponent + ") Is Not Supported");
                    }
                    formItem.attr("msas-order", value.Order);
                    formList.push(formItem);
                });
                var modalBody = $("#MsasHtmlTemplates .msas-quick-view-body").clone();


                formList.sort(function (a, b) {
                    var aOrder = parseInt($(a).attr("msas-order"));
                    var bOrder = parseInt($(b).attr("msas-order"));

                    return aOrder - bOrder;
                });

                for (var i = 0; i < formList.length; i++) {
                    modalBody.find(".msas-quick-view-body-form").append(formList[i]);
                }
                modalBody.modal('show');
            }
        }
    });
}

function GetLinkHtml(value) {
    if (value.endsWith(".doc")) {
        return "<a href='" + value + "' target='_blank'><img src='/Content/Media/Images/ExcelIcon.png' style='height: 25px;'></>";
    }
    else if (value.endsWith(".docx")) {
        return "<a href='" + value + "' target='_blank'><img src='/Content/Media/Images/ExcelIcon.png' style='height: 25px;'></>";
    }
    else if (value.endsWith(".pdf")) {
        return "<a href='" + value + "' target='_blank'><img src='/Content/Media/Images/PdfIcon.png' style='height: 25px;'></>";
    }
    else {
        return "<a href='" + value + "' target='_blank'><img src='/Content/Media/Images/FileIcon.png' style='height: 25px;'></>";
    }
}
function MsasBtnUploadFile(obj) {
    $(obj).closest(".msas-uploader").find(".dropzone-uploader").click();
}

function MsasBtnRemoveFile(obj) {
    $(obj).closest(".msas-uploader").find("img").attr("src", "/Content/Media/Images/NoImage.png");
    $(obj).closest(".msas-uploader").find(".relative-file-path").val("");
}

function PasswordViewer(selector, action) {
    if (action === "show") {
        $(selector).attr("type", "text");
    }
    else {
        $(selector).attr("type", "password");
    }
}

function StartLoading() {
    $.blockUI({
        message: $('.cssload-loader'),
        css: {
            background: 'none', border: 'none'
        }
    });

}
function EndLoading() {
    $.unblockUI();
}

function FormLanguageSwitcher(languageId) {
    $("[msas-form-item-language]").hide();
    $("[msas-form-item-language=" + languageId + "]").css("display","flex");
}
@charset "UTF-8";
/*
  **GENEL CSS**
  ** TÜM SAYFALARDA AYNI OLACAK CSS'LER **
*/
@font-face {
    font-family: 'Poppins';
    src: url("/Content/WebsiteTemplate/fonts/Poppins-Light.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url("/Content/WebsiteTemplate/fonts/Poppins-Medium.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("/Content/WebsiteTemplate/fonts/Poppins.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("/Content/WebsiteTemplate/fonts/Poppins-SemiBold.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url("/Content/WebsiteTemplate/fonts/Poppins-Regular.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body {
    overflow-x: hidden;
}

body {
    background: #fff;
    color: #333;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
}

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

.img-fromtop {
    position: relative;
    overflow: hidden;
}

    .img-fromtop img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

.container {
    margin: 0 auto;
}

/* MAIN HEADER */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 35px 65px 0 50px;
}

.logo {
    float: left;
}

    .logo img {
        max-width: 100%;
    }


.hdr-lang {
    float: right;
    margin: 13px 0 0 20px;
}

.hdr-lang-button {
    display: inline-block;
    color: #fff;
    cursor: pointer
}

    .hdr-lang-button .arrow-icon {
        height: 10px;
        margin-left: 2px
    }

.hdr-lang-list {
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0,0,0,.1)
}

    .hdr-lang-list a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333
    }

        .hdr-lang-list a img {
            margin-right: 2px;
        }

        .hdr-lang-list a:hover {
            background-color: #f5f5f5;
        }

.hdr-search {
    position: relative;
    float: right;
    margin-top: 13px;
}

.hdr-search-btn {
    color: #fff;
    background: none;
    border: 0;
    padding: 0;
    outline: none;
    cursor: pointer;
    width: 15px;
    height: 15px;
    background-image: url("/Content/WebsiteTemplate/img/white-search-icon.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

    .hdr-search-btn.active {
        width: 30px;
        height: 30px;
        background-image: url("/Content/WebsiteTemplate/img/white-close-icon.svg");
        -webkit-transform: rotate(90deg) scale(0.7);
        -ms-transform: rotate(90deg) scale(0.7);
        transform: rotate(90deg) scale(0.7);
    }

.hdr-search-inner {
    position: absolute;
    right: 40px;
    top: -1px;
    width: 533px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

    .hdr-search-inner.active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .hdr-search-inner input {
        position: relative;
        display: block;
        width: 100%;
        font-size: 16px;
        line-height: 36px;
        color: #333;
        font-weight: 400;
        height: 36px;
        background-color: #fff;
        border-radius: 35px;
        border: none;
        outline: none;
        padding: 0 35px 0 15px;
    }

    .hdr-search-inner button {
        position: absolute;
        right: 15px;
        top: 7px;
        color: #bbb;
        background: none;
        border: 0;
        padding: 0;
        cursor: pointer;
        outline: none;
        z-index: 1;
    }

        .hdr-search-inner button svg {
            width: 20px;
            height: 20px;
        }

.hdr-search.active .hdr-search-inner input {
    border-radius: 35px 35px 0 0;
}

.hdr-search-results {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    border-top: 1px solid #dcdcdc;
    background-color: #fff;
    padding: 15px 15px 0 15px;
    z-index: 10;
}

.hsr-top {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.hsr-top-title {
    font-size: 18px;
    float: left;
}

.hsr-top-close {
    width: 21px;
    height: 22px;
    text-align: center;
    border-radius: 50%;
    border: 2px solid #333;
    float: right;
    cursor: pointer;
}

    .hsr-top-close img {
        width: 10px;
        -webkit-filter: invert(1);
        filter: invert(1);
    }

.hsr-top-count {
    width: 100%;
    float: left;
    margin-top: 5px;
}

.hsr-list {
    padding: 0 15px;
}

.hsr-item {
    margin-bottom: 30px;
}

    .hsr-item a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.hsr-item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 110px;
    flex: 0 0 110px;
    height: 90px;
}

    .hsr-item-img img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
    }

.hsr-item-desc {
    color: #333;
    padding-left: 30px;
    font-size: 16px;
}

    .hsr-item-desc span {
        display: block;
        color: #df7d09;
    }

.hsr-bottom {
    margin: 0 -15px;
}

    .hsr-bottom a {
        display: block;
        color: #fff;
        font-size: 16px;
        background-color: #df7d09;
        text-align: center;
        padding: 10px;
    }

.main-nav {
    position: relative;
    float: right;
}

    .main-nav > ul,
    .main-nav > ul > li {
        float: left;
    }

.main-nav-link {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 13px 18px;
}

    .main-nav-link svg {
        width: 20px;
        height: 17px;
    }

    .main-nav-link:hover, .main-nav-link:focus {
        color: #fff
    }

.main-nav > ul > li:first-child .main-nav-link {
    padding: 11px 18px;
}

.has-megamenu:hover .main-nav-link {
    color: #333;
    background-color: #fff;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    z-index: 10;
    -webkit-transition: none;
    transition: none;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
}

    .megamenu.no-radius {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .megamenu.no-right-radius {
        border-top-right-radius: 0;
    }
/* FIXED SOCIAL */

.fixed-social {
    position: fixed;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 50px;
    background: #fff;
    box-shadow: 0 0 9px rgba(142, 142, 142, 0.15);
    z-index: 30;
    display: none;
}

    .fixed-social ul li {
        display: block;
    }

        .fixed-social ul li a {
            position: relative;
            display: block;
            color: #aaa;
            height: 50px;
            text-align: center;
        }

    .fixed-social a svg {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        height: 25px
    }

    .fixed-social a.instagram {
        color: #e4405f;
    }

        .fixed-social a.instagram:hover {
            color: #e4405f;
            background-color: #e4405f
        }

    .fixed-social a.youtube {
        color: #cd201f;
    }

        .fixed-social a.youtube:hover {
            background-color: #cd201f
        }

    .fixed-social a.linkedin {
        color: #0077b5;
    }

        .fixed-social a.linkedin:hover {
            background-color: #0077b5;
        }

        .fixed-social a.linkedin svg {
            height: 18px
        }

    .fixed-social a:hover {
        color: #fff !important;
    }

.has-megamenu:hover .megamenu {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.main-nav > ul > li:first-child .megamenu {
    border-top-left-radius: 0;
}

.mgm-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
}

.mgm-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 181px;
    flex: 0 0 181px;
}

    .mgm-img img {
        width: 100%;
        border-radius: 5px;
    }

.mgm-list {
    padding-left: 25px;
}

    .mgm-list ul li {
        display: block;
        margin-bottom: 17px;
    }

        .mgm-list ul li:last-child {
            margin: 0;
        }

        .mgm-list ul li a {
            display: block;
            color: #333;
            font-weight: 500;
            -webkit-transition: all .4s;
            transition: all .4s;
        }

            .mgm-list ul li a:hover {
                color: #ed7b28;
            }

.mgm-sector-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #df7d09;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.mgm-sector-title {
    position: relative;
    color: #fff;
    padding: 10px 53px 10px 35px;
    cursor: pointer;
}

    .mgm-sector-title::after {
        content: "";
        position: absolute;
        right: 43px;
        top: 5px;
        width: 17px;
        height: 23px;
        background: url("/Content/WebsiteTemplate/img/white-down-arrow.svg") no-repeat 50% 50%;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

    .mgm-sector-title.active::after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.mgm-sector-list ul {
    display: none;
    padding: 0 53px 0 35px;
    margin-top: 10px;
}

    .mgm-sector-list ul li {
        display: block;
    }

        .mgm-sector-list ul li a {
            display: block;
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, 0.17);
            padding-bottom: 7px;
            margin-bottom: 7px;
        }

        .mgm-sector-list ul li::last-child a {
            border-bottom: 0;
            margin: 0;
        }


/* FIXED SOCIAL */

.fixed-social {
    position: fixed;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 50px;
    background: #fff;
    box-shadow: 0 0 9px rgba(142, 142, 142, 0.15);
    z-index: 30;
    display: none;
}

    .fixed-social ul li {
        display: block;
    }

        .fixed-social ul li a {
            position: relative;
            display: block;
            color: #aaa;
            height: 50px;
            text-align: center;
        }

    .fixed-social a svg {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        height: 25px
    }

    .fixed-social a.instagram {
        color: #e4405f;
    }

        .fixed-social a.instagram:hover {
            color: #e4405f;
            background-color: #e4405f
        }

    .fixed-social a.youtube {
        color: #cd201f;
    }

        .fixed-social a.youtube:hover {
            background-color: #cd201f
        }

    .fixed-social a.linkedin {
        color: #0077b5;
    }

        .fixed-social a.linkedin:hover {
            background-color: #0077b5;
        }

        .fixed-social a.linkedin svg {
            height: 18px
        }

    .fixed-social a:hover {
        color: #fff !important;
    }

/* MOBILE MENU */
.accordion ul.inner {
    overflow: hidden;
    display: none;
}

.mobile-menu ul li a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-align: right;
    padding: 10px 0 10px 15px;
}
.mobile-menu span.mm-head-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: right;
    width: 100%;
    display: block;
    padding-right:20px;
    position: relative;
}
    .mobile-menu span.mm-head-title
    :after {
        content: "";
        position: absolute;
        top: -5px;
        width: 17px;
        width: 17px;
        height: 23px;
        background: url("/Content/WebsiteTemplate/img/white-down-arrow.svg") no-repeat 50% 50%;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }
.mm-sub-head {
margin-right:20px;}
.mm-sub-head:after {
    content: '-';
    margin-right: -9px;
    margin-left: 8px;
    display: none;
    float: right;
}

    .mobile-menu ul li a.mm-title span {
        position: relative;
        display: block;
        font-weight: 600;
        padding: 0 20px;
    }

    .mobile-menu ul li a.mm-title.toggle span::before {
        content: url("/Content/WebsiteTemplate/img/arrow-down.svg");
        position: absolute;
        top: 3px;
        right: 0;
        width: 14px;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .mobile-menu ul li a.mm-title.active.toggle span::before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

.mobile-menu ul > li ul li {
    display: block;
    padding-left: 30px;
}

.mobile-menu {
    display: none;
    background-color: #df7d09;
    padding-bottom: 25px;
    padding-top: 50px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 300;
    height: 100%;
    overflow: auto;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: .5s;
    transition: .5s;
}

    .mobile-menu.active {
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }

.mobile-menu-close {
    color: #fff;
    font-size: 40px;
    position: absolute;
    right: 8px;
    top: -3px;
    display: block;
    cursor: pointer;
}

.hamburger-menu {
    float: right;
    display: none;
}

    .hamburger-menu span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #fff;
        border-radius: 3px;
    }

.mf-top {
    background: url(/Content/WebsiteTemplate/img/footer-top-bg.jpg) no-repeat 50% 50%;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 31px 15px;
}

    .mf-top a {
        color: #fff;
    }

        .mf-top a:hover {
            text-decoration: underline;
        }

    .mf-top img {
        display: block;
        margin: 0 auto 8px;
    }

.mf-bottom {
    padding: 35px 0;
}

.mf-nav {
    float: left;
}

    .mf-nav ul li {
        display: inline-block;
    }

        .mf-nav ul li a {
            display: inline-block;
            color: #4c504f;
            margin-bottom: 5px;
            margin-right: 10px;
        }

            .mf-nav ul li a:hover {
                color: #df7d09;
            }

.mf-development {
    float: right;
}

.mf-copyright {
    width: 100%;
    float: left;
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

    .mf-copyright a {
        color: #999;
    }

        .mf-copyright a:hover {
            color: #df7d09;
            text-decoration: underline;
        }

/*MEDIA*/
@media (max-width: 991px) {
    .main-header {
        padding: 15px 15px 0;
        overflow: hidden;
    }
    .hdr-lang {
        margin: 4px 11px 0 8px;
    }
    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .hdr-search {
        margin: 0 10px 0;
    }

    .hdr-search-btn {
        width: 25px;
        height: 25px;
    }

    .hdr-search {
        position: static;
    }

    .hdr-search-inner {
        width: 100%;
        top: 40px;
        left: 0;
        right: 0;
    }

    .hdr-search-btn.active {
        -webkit-transform: rotate(90deg) scale(0.7) translateX(-5px);
        -ms-transform: rotate(90deg) scale(0.7) translateX(-5px);
        transform: rotate(90deg) scale(0.7) translateX(-5px);
    }
}

@media (max-width: 767px) {
    .fixed-social {
        display: none;
    }
    .logo {
        width: 130px;
    }

    .mf-bottom {
        padding: 30px 15px;
    }

    .mf-copyright {
        text-align: center;
    }

    .mf-development,
    .mf-nav {
        width: 100%;
        text-align: center;
    }
}

/*MIN WIDTH*/
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1230px) {
    .container {
        width: 1200px;
    }
}

/**
 * Owl Carousel v2.3.3
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{/*max-height:0*/}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{display:none;text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}

/*
  **SADECE ANASAYFAYA AIT CSS**
*/
/*.main-slider .owl-prev,
.main-slider .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #afafaf;
    background: none;
    padding: 0;
    border: 0;
    outline: none;
}

    .main-slider .owl-prev svg,
    .main-slider .owl-next svg {
        height: 40px;
    }

.main-slider .owl-prev {
    left: 20px;
}

.main-slider .owl-next {
    right: 20px;
}*/

.main-slider .owl-dots {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    counter-reset: slides-num;
    z-index: 5;
}

.ms-link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: block;
    z-index: 99;
}
.main-slider .owl-dot {
    position: relative;
    display: block;
    counter-increment: slides-num;
    width: 70px;
    color: #d0d2d4;
    font-family: "Playfair Display";
    font-size: 18px;
    font-weight: 700;
    text-align: right;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0 0 5px 0;
    margin-bottom: 35px;
    outline: none
}

    .main-slider .owl-dot::after {
        content: counter(slides-num,decimal-leading-zero);
        display: inline-block
    }

    .main-slider .owl-dot::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border-bottom: 2px solid #fff;
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all .4s;
        transition: all .4s
    }

    .main-slider .owl-dot:hover::before {
        -webkit-transform: scaleX(.3);
        -ms-transform: scaleX(.3);
        transform: scaleX(.3)
    }

    .main-slider .owl-dot.active {
        color: #f0f1f2
    }

        .main-slider .owl-dot.active::before {
            -webkit-transform: scaleX(1);
            -ms-transform: scaleX(1);
            transform: scaleX(1)
        }


.main-slider .item {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1f1e1e;
    min-height: 720px;
}

    .main-slider .item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background-color: rgba(31, 30, 30, 0.61);
        z-index: 3;
    }
    .main-slider .item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: url(/Content/WebsiteTemplate/img/main-slider-overlay.png) no-repeat 50% 50%;
        background-size: cover;
        z-index: 1;
    }
.main-slider .item.no-overlay:before {
    display: none;
}
    .main-slider .item.no-overlay::after {
        background-color: rgba(31, 30, 30, 0.2);
    }
    .main-slider .item .container {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 100px;
    }
.item.no-overlay.owl-lazy {
    background-size: 100% auto;
    background-color: rgba(47, 47, 47, 0.98);
    background-position: center;
}
.ms-text {
    width: 44%;
}

.ms-img {
    width: 66%;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .ms-img > img {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        max-width: 100%;
        -webkit-transition: all 0.8s ease 0.8s;
        transition: all 0.8s ease 0.8s;
    }

.active .ms-img > img {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.ms-img-circle {
    position: absolute;
    top: 50%;
    left: 56%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.ms-text {
    color: #fff;
    overflow: hidden;
}

.ms-text-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

    .ms-text-title span {
        display: block;
        -webkit-transform: translatex(-100%);
        -ms-transform: translatex(-100%);
        transform: translatex(-100%);
        -webkit-transition: all 0.8s ease 0.8s;
        transition: all 0.8s ease 0.8s;
    }

.ms-text-desc {
    font-size: 24px;
    font-weight: 300;
}

    .ms-text-desc p {
        margin: 0;
    }

    .ms-text-desc ul,
    .ms-text-desc ol {
        position: relative;
        display: block;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: all 0.8s ease 0.8s;
        transition: all 0.8s ease 0.8s;
    }

        .ms-text-desc ul li,
        .ms-text-desc ol li {
            position: relative;
            display: block;
            font-size: 18px;
            padding-left: 38px;
            margin-bottom: 5px;
        }

            .ms-text-desc ul li::before,
            .ms-text-desc ol li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 26px;
                height: 23px;
                background: url(/Content/WebsiteTemplate/img/slider-check-icon.png) no-repeat 50% 50%;
            }

.active .ms-text-title span,
.active .ms-text-desc ul,
.active .ms-text-desc ol {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.ms-text-link {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: #df7d09;
    border-radius: 30px;
    border-top-left-radius: 0;
    padding: 13px 23px;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-top: 35px;
}

    .ms-text-link:hover {
        border-top-left-radius: 30px;
    }

/* HOME TOP CONTENT */
.home-top-content {
    background: url("/Content/WebsiteTemplate/img/htc-circle.png") no-repeat left 20px bottom;
    padding: 100px 0;
}

.htc-title {
    color: #df7d09;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1.1;
    text-align: center;
    margin: 0 0 10px;
}

.htc-subtitle {
    color: #666;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.25px;
    text-align: center;
    margin-bottom: 55px;
}

.home-solution-list {
    max-width: 840px;
    margin: 0 auto;
}

    .home-solution-list .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -40px;
    }

.hsl-item {
    width: 20%;
    padding: 0 40px;
    margin-bottom: 15px;
}

    .hsl-item:nth-child(6) {
        margin-left: 10%;
    }

.hsl-icon {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border: 2px solid #c9c7c3;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.hsl-item:hover .hsl-icon {
    -webkit-transform: rotateY(-180deg) scale(1.5);
    transform: rotateY(-180deg) scale(1.5);
}

.hsl-icon-front {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .4s;
    transition: all .4s;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .hsl-icon-front img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        max-width: 100%;
    }

.hsl-icon-back {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    border-radius: 50%;
    padding: 15px;
    color: #fff;
}

.hsl-title {
    color: #b2b5bc;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: 12px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.hsl-item:hover .hsl-title {
    opacity: 0;
}

.home-why-us {
    margin-top: 75px;
}

.htc-desc {
    color: #6d6c6a;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

    .htc-desc p {
        margin-bottom: 25px;
    }

        .htc-desc p:last-child {
            margin-bottom: 0;
        }

/* HOME SERVICES */
.home-services {
    margin-bottom: 16px;
}

    .home-services .row {
        margin: 0 -16px;
        display:flex;
        flex-wrap:wrap;
    }

.hs-item {
    width: 33.33%;
    padding: 0 8px;
    float: left;
}
    .hs-item a {
        display: flex;
        flex-flow: column;
        height: 100%;
    }
.hss-img-slider .item {
    overflow: hidden;
}

.hss-img {
    position: relative;
}

    .hss-img img {
        width: 100%;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

    .hss-img:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(31, 32, 32, 0.25);
        z-index: 1;
    }

.hss-title {
    position: absolute;
    left: 45px;
    right: 45px;
    bottom: 25px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    z-index: 3;
}

.hss-content {
    background-color: #f5f5f4;
    padding: 40px;
    min-height: 410px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    flex: 1;
    padding-bottom:100px !important;
}

    .hss-content p {
        margin-bottom: 0;
    }

    .hss-content ul li {
        position: relative;
        display: block;
        color: #4c504f;
        font-size: 16px;
        letter-spacing: -0.25px;
        padding-left: 42px;
        margin-bottom: 15px;
    }

        .hss-content ul li::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 20px;
            height: 19px;
            background: url("/Content/WebsiteTemplate/img/slider-check-icon.png") no-repeat 50% 50%;
            background-size: contain;
        }

.hss-link {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: #df7d09;
    border-radius: 30px;
    border-top-left-radius: 0;
    padding: 13px 23px;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-top: 43px;
    position:absolute;
    bottom:40px;
    left:40px;
}

.hs-item:hover .hss-content {
    background-color: #eaeaea;
}

.hs-item:hover .hss-img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.hs-item:hover .hss-link {
    border-top-left-radius: 30px;
}

/* HOME SUPPORT */
.home-support {
    background: url("/Content/WebsiteTemplate/img/home-support-img.jpg") no-repeat right center;
    background-size: cover;
    text-align: center;
    padding: 50px 15px;
}

.hs-title {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.25px;
    margin: 0 0 15px;
}

.hs-desc {
    color: #fff;
    line-height: 1.5;
    max-width: 735px;
    margin: 0 auto 35px;
}

.hs-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    border: 2px solid #fff;
}

.hs-links:hover a {
    color: #fff;
    background: none;
}

    .hs-links:hover a:hover {
        background: #fff;
        border-color: #fff;
        color: #333;
        transform-origin: 50% 50%;
    }


.hsl-info {
    color: #fff;
    border-bottom-left-radius: 23px;
    padding: 0 30px;
}

.hsl-support {
    color: #333;
    background-color: #fff;
    border-top-right-radius: 23px;
    border-bottom-right-radius: 23px;
    padding: 0 17px 0 10px;
}

/* HOME NEWS */
.home-news {
    padding: 50px 0;
    background: url("/Content/WebsiteTemplate/img/homr-news-circle.png") no-repeat right bottom;
}

.hn-top {
    margin-bottom: 30px;
}

.hn-title {
    color: #df7d09;
    font-size: 30px;
    letter-spacing: -0.25px;
    float: left;
    margin: 0;
}

.hn-all-link {
    color: #df7d09;
    font-size: 16px;
    text-decoration: underline;
    float: right;
    margin-top: 10px;
}

    .hn-all-link:hover {
        color: #333;
        text-decoration: none;
    }

.home-news-slider .owl-next,
.home-news-slider .owl-prev {
    position: absolute;
    color: #aeb2ba;
    top: 110px;
    border: none;
    background: none;
    outline: none;
    padding: 0;
    z-index: 1;
}

    .home-news-slider .owl-next svg,
    .home-news-slider .owl-prev svg {
        height: 40px;
    }

.home-news-slider .owl-next {
    right: -50px;
}

.home-news-slider .owl-prev {
    left: -50px;
}

.hns-img {
    overflow: hidden;
}

    .hns-img img {
        width: 100%;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

.item:hover .hns-img img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.hns-desc {
    color: #4c504f;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.25px;
    padding: 35px 45px 25px 25px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.item:hover .hns-desc {
    color: #df7d09;
}
/*home-colors*/

.hs-item.endustriyel .hss-link {
    background-color: #64ac28;
}
.hs-item.medikal .hss-link {
    background-color: #e01521;
}
.hs-item.signage .hss-link {
    background-color: #69c;
}

.hs-item.endustriyel .hss-content ul li::after {
    background: url(/Content/WebsiteTemplate/img/slider-check-icon-endustriyel.png) no-repeat 50% 50%;
}

.hs-item.medikal .hss-content ul li::after {
    background: url(/Content/WebsiteTemplate/img/slider-check-icon-medikal.png) no-repeat 50% 50%;
}

.hs-item.signage .hss-content ul li::after {
    background: url(/Content/WebsiteTemplate/img/slider-check-icon-signage.png) no-repeat 50% 50%;
}
.cookieBar {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.88);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0 20px 0;
    z-index: 999999;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.cookieBarText {
    line-height: 1.5;
    color: #333;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    padding-top: 16px;
}


    .cookieBarText a {
        line-height: 1.5;
        color: #333;
        font-family: 'Poppins';
        font-size: 14px;
        font-weight: 400;
    }



.cookieBarButton {
    padding: 0 0;

}
.cookieBar .col-sm-10 {
    max-width: 70%;
}

.cookieBar .col-sm-2 {
    max-width: 30%;
}
.cookieBarButton button {
    background-color: #ffffff;
    border: 2px solid #dd8316;
    border-radius: 23px;
    font-size: 16px;
    font-weight: 600;
    height: 45px;
    line-height: 45px;
    padding: 0 30px;
}

        .cookieBarButton button:focus {
            outline-color: #fff !important
        }

.cookieBarIn {
    -webkit-animation-name: cookieBarIn;
    animation-name: cookieBarIn
}

.cookieBarOut {
    -webkit-animation-name: cookieBarOut;
    animation-name: cookieBarOut
}
.cookieBar .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.home-pop-up {
    /*display: none;*/
    margin: 0 auto;
    text-align: center;
    width: 800px;
    max-width: 100%;
    max-height: 100%;
}

    .home-pop-up img {
        max-width: 100%;
    }

.opened-popup img.mfp-img {
    padding: 0 0 0 !important;
}

.opened-popup .mfp-bottom-bar {
    display: none;
}

.opened-popup .mfp-image-holder .mfp-content figure {
    height: auto;
}

.opened-popup, .opened-popup button.mfp-close, button.mfp-arrow {
    cursor: pointer !important;
}
.mfp-close-btn-in .mfp-close {
    color: #333;
    text-align: center;
    line-height: 30px;
    width: 30px;
    height: 30px;
    background: #fb7d0e;
}

@-webkit-keyframes cookieBarIn {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes cookieBarIn {
    from {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes cookieBarOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes cookieBarOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}
/**/
/* MEDIA */
@media(max-width: 1360px) {
    .main-slider .owl-dot {
        width: 45px;
    }
}

@media (max-width: 1320px) {
    .home-news-slider .owl-next,
    .home-news-slider .owl-prev {
        display: none;
    }

    .hss-title {
        font-size: 24px;
    }
}

@media (max-width: 1229px) {
    .hss-content {
        padding: 30px;
    }

    .hss-link {
        margin-top: 10px;
    }

    .hss-content ul li {
        padding-left: 30px;
    }

    .hns-desc {
        padding: 20px 15px;
    }

    .ms-text-title {
        font-size: 30px;
    }

    .ms-text-desc ul li,
    .ms-text-desc ol li {
        font-size: 20px;
    }
    .main-slider .owl-dot {
        display: none;
    }
}

@media (max-width: 991px) {
    .ms-img {
        margin-right: 0;
    }

    .ms-img-circle,
    .main-slider .owl-next,
    .main-slider .owl-prev {
        display: none;
    }

    .hsl-item {
        width: 33.33%;
    }

        .hsl-item:nth-child(6) {
            margin-left: 0;
        }
}

@media (max-width: 767px) {
    .main-slider .item {
        min-height: 578px;
    }

        .main-slider .item .container {
            position: relative;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            padding: 110px 15px 30px;
        }
    .cookieBar .row {
        padding-right: 20px;
        padding-left: 20px;
    }
    .ms-text {
        width: auto;
    }

    .hs-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .home-solution-list .row,
    .home-services .row {
        display: block;
        margin: 0;
    }

    .htc-subtitle {
        margin-bottom: 15px;
    }

    .home-why-us {
        margin-top: 15px;
    }

    .hsl-icon {
        width: 80px;
        height: 80px;
    }

    .hsl-title {
        font-size: 14px;
    }

    .hsl-item {
        float: left;
        padding: 0;
    }

    .hss-content {
        min-height: inherit;
    }

    .home-top-content,
    .home-news {
        padding: 30px 15px;
    }

    .hn-all-link {
        width: 100%;
        text-align: left;
    }

    .hss-title {
        left: 25px;
        right: 25px;
    }

    .ms-img {
        display: none;
    }
}
@media (max-width: 558px) {

    .cookieBar .col-sm-10 {
        max-width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .cookieBar .col-sm-2 {
        max-width: 100%;
        text-align: center;
        width: 100%;
    }
}
    /*MIN*/
    @media (min-width: 1230px) {
        .main-slider .item .container {
            width: 1100px;
        }
    }

