/* 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('
(848,1813): run-time error CSS1019: Unexpected token, found '@keyframes'
(848,1832): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
 */
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");
}
@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;
}

@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-Light.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins-Light.woff") format("woff");
    font-weight: 300;
    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.woff2") format("woff2"), url("/Content/WebsiteTemplate/fonts/Poppins.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

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

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

.container {
    margin: 0 auto;
}

/* MAIN HEADER */
.main-header {
    position: relative;
    background-color: #fff;
    z-index: 10;
}

.logo {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 15px);
    -ms-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
    z-index: 1;
}

    .logo::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        background: url("/Content/WebsiteTemplate/img/logo-bg.png") no-repeat 50% 50%;
        -webkit-transform: translate(-50%, -16px);
        -ms-transform: translate(-50%, -16px);
        transform: translate(-50%, -16px);
        width: 350px;
        height: 103px;
        z-index: -1;
    }

.main-nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .main-nav > ul > li {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-right: 20px;
    }

        .main-nav > ul > li:last-child {
            margin-right: 0;
        }

        .main-nav > ul > li:nth-child(5) {
            margin-left: 465px;
        }

.main-nav-link {
    display: inline-block;
    position: relative;
    color: #373232;
    font-weight: 600;
    padding: 18px 5px;
    z-index: 2;
}

    .main-nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border: 1px solid #dd2113;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        z-index: 1;
    }

.main-nav > ul > li:hover .main-nav-link::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.has-navdropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    border-bottom-right-radius: 50px;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    padding: 40px;
    z-index: 10;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .nav-dropdown ul li,
    .nav-dropdown ul li a {
        display: block;
    }

    .nav-dropdown ul li {
        margin-bottom: 13px;
    }

        .nav-dropdown ul li a {
            position: relative;
            color: #000;
            font-size: 16px;
            white-space: nowrap;
            padding-left: 25px;
        }

            .nav-dropdown ul li a:hover {
                color: #e30d43;
            }

            .nav-dropdown ul li a::before {
                content: "";
                position: absolute;
                left: 0;
                top: 3px;
                background: url("/Content/WebsiteTemplate/img/red-halfcircle-icon.png") no-repeat 50% 50%;
                width: 9px;
                height: 9px;
            }

.has-navdropdown:hover .nav-dropdown {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

/* MAIN FOOTER */
.main-footer {
    padding: 45px 0 30px;
}

    .main-footer .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

.mf-logo {
    margin-bottom: 10px;
}

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

.mf-nav {
    margin-bottom: 15px;
}

    .mf-nav ul li {
        display: inline-block;
        margin-right: 15px;
    }

        .mf-nav ul li:last-child {
            margin-right: 0;
        }

        .mf-nav ul li a {
            display: inline-block;
            color: #333;
            font-weight: 600;
            padding: 5px;
        }

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

.mf-copyright,
.mf-copyright a {
    color: #000;
}

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

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

.mf-social-title {
    color: #333;
    font-size: 16px;
    text-align: center;
    margin-bottom: 18px;
}

.mf-social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

    .mf-social-list a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-color: #e30d43;
        border-radius: 50%;
        width: 53px;
        height: 53px;
        margin-right: 15px;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

        .mf-social-list a img {
            max-width: 100%;
            max-height: 100%;
        }

        .mf-social-list a:last-child {
            margin-right: 0;
        }

    .mf-social-list .facebook:hover {
        background-color: #1D4C9C;
    }

    .mf-social-list .twitter:hover {
        background-color: #00ACED;
    }

    .mf-social-list .youtube:hover {
        background-color: #FF0000;
    }

    .mf-social-list .instagram:hover {
        background-color: #B434AD;
    }

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

.mobile-menu ul li a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

    .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) translateY(5px);
        -ms-transform: rotate(180deg) translateY(5px);
        transform: rotate(180deg) translateY(5px);
    }

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

.mobile-menu {
    display: none;
    background-color: #E02A1B;
    padding-bottom: 25px;
    padding-top: 50px;
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    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 {
    right: 0;
    top: 10px;
    display: none;
}

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

/*MEDIA*/
@media (max-width: 1229px) {
    .main-header {
        padding: 5px 0;
    }

        .main-header .container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

    .logo {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .main-nav ul li:nth-child(5) {
        margin-left: 275px;
    }

    .main-nav-link {
        font-size: 13px;
    }

    .logo::before {
        -webkit-transform: translate(-50%, -18px);
        -ms-transform: translate(-50%, -18px);
        transform: translate(-50%, -18px);
    }

    .main-nav,
    .logo::before {
        display: none;
    }

    .mobile-menu,
    .hamburger-menu {
        display: block;
    }

    .mf-bel-logo {
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .main-footer .container {
        display: block;
    }

    .mf-social-title {
        text-align: left;
    }

    .mf-social-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .mf-bel-logo {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .main-header {
        padding: 10px 15px;
    }

    .mobile-menu {
        width: 100%;
    }

    .main-footer {
        padding: 30px 15px;
    }

    .main-footer,
    .mf-social-title {
        text-align: center;
    }

    .mf-social-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: 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}}

.toast-title {
  font-weight: 500;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -25px;
  top: 3px;
  float: right;
  font-size: 30px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
.rtl .toast-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 35px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  text-align: center;
}
#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}
#toast-container > div:hover {
  /*-moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);*/
  cursor: pointer;
}
/*#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}*/
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*
  **SADECE ANASAYFAYA AIT CSS**
*/
/* MAIN SLIDER */
.main-slider .item {
    position: relative;
}

    .main-slider .item::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 40%;
        background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(242,242,242,0) 100%);
        z-index: 1;
    }

    .main-slider .item img {
        width: 100%;
    }

    .main-slider .item .container {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 5;
    }

.main-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 65px;
    text-align: center;
}

.main-slider .owl-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0;
    margin: 0 3px;
}

    .main-slider .owl-dot.active {
        background: #e02a1b;
    }

/*.main-slider .owl-next,
.main-slider .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    outline: none;
    background: none;
    z-index: 5;
}

.main-slider .owl-prev {
    left: 30px;
}

.main-slider .owl-next {
    right: 30px;
}

.main-slider .owl-next svg,
.main-slider .owl-prev svg {
    width: 50px;
    height: 50px;
    color: #fff;
    opacity: 0.9;
    transition: all 0.4s;
}

.main-slider .owl-next:hover svg,
.main-slider .owl-prev:hover svg {
    width: 53px;
    height: 53px;
    opacity: 1;
}*/

.slide-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 105px;
    z-index: 5;
    text-align: center;
    overflow: hidden;
}

.slide-text > div {
    transform: translateY(100%);
    transition: all 0.8s;
}

    .active .slide-text > div {
        transform: translateY(0);
    }

.slide-title {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

.slide-desc {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    max-width: 740px;
    margin: 0 auto;
}

/* OUR SERVICES */
.our-services {
    font-size: 16px;
    font-size: 0.835vw;
    background-color: #e02a1b;
    padding-bottom: 3.125em;
}

.our-services-main-title {
    position: relative;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2.5em;
    z-index: 1;
}

    .our-services-main-title::before {
        content: "";
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, -39px);
        -ms-transform: translate(-50%, -39px);
        transform: translate(-50%, -39px);
        width: 100%;
        max-width: 426px;
        height: 108px;
        background: url("/Content/WebsiteTemplate/img/our-services-title-bg.png") no-repeat 50% 50%;
        z-index: -1;
    }

    .our-services-main-title span {
        display: inline-block;
    }

.our-services-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 -25px;
    overflow: hidden;
}

.our-services-item {
    text-align: center;
    padding: 0 0.9375em;
}

    .our-services-item a {
        display: block;
        color: #fff;
    }

.our-services-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 4.875em;
    height: 4.875em;
    margin: 0 auto 0.9375em;
}

    .our-services-icon::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("/Content/WebsiteTemplate/img/our-services-circle.png") no-repeat 50% 50%;
        background-size: cover;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
    }

    .our-services-icon img {
        max-width: 60%;
        max-height: 60%;
    }

.our-services-item:hover .our-services-icon::before {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.our-services-title {
    font-size: 1.125em;
    font-weight: 600;
    margin-bottom: 0.6em;
}

.our-services-desc {
    font-size: 0.875em;
    font-weight: 300;
    line-height: 1.4;
    max-width: 11.25em;
    margin: 0 auto;
}

/* HOME ABOUT */
.home-about {
    padding-top: 165px;
}

    .home-about .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.home-about-info {
    padding-right: 100px;
}

.home-about-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 5px;
}

.home-about-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px;
}

.home-about-desc {
    font-size: 18px;
    font-weight: 300;
}

.home-about-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 187px;
    flex: 0 0 187px;
}

    .home-about-image img {
        max-width: 100%;
    }

/* HOME NEWS */
.home-news {
    padding-bottom: 65px;
    margin-top: -35px;
}

    .home-news .container {
        position: relative;
    }

.home-news-slider .owl-nav {
    position: absolute;
    top: 210px;
    right: 0;
}

.home-news-slider .owl-next,
.home-news-slider .owl-prev {
    display: block;
    border: 0;
    outline: none;
    background: none;
}

.home-news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-news-item-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 363px;
    flex: 0 0 363px;
    border-bottom: 3px solid #cc0033;
}

    .home-news-item-image img {
        width: 100%;
    }

.home-news-info {
    padding: 90px 0 0 45px;
}

.home-news-main-title {
    position: absolute;
    top: 20px;
    left: 408px;
    color: #333;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
    z-index: 1;
}

.home-news-item {
    padding-right: 55px;
}

.home-news-title {
    color: #cc0033;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.home-news-category {
    color: #333;
    font-weight: 300;
    margin-bottom: 35px;
}

.home-news-desc {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    max-height: 144px;
    overflow: hidden;
}

/* HOME ADVERT */
.home-advert {
    background-color: #f5f5f5;
    padding: 50px 0;
}

    .home-advert .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.home-advert-info {
    width: 35.41%;
    padding-right: 75px;
}

.home-advert-subtitle {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.home-advert-title {
    color: #333;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

    .home-advert-title span {
        color: #e30d43;
    }

.home-advert-desc {
    color: #000;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}

.home-advert-link {
    display: inline-block;
    color: #fff;
    font-weight: 500;
    background-color: #cc3333;
    border-radius: 50px;
    padding: 15px 30px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

    .home-advert-link svg {
        width: 14px;
        margin-left: 15px;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        vertical-align: top;
    }

    .home-advert-link:hover {
        color: #fff;
        background-color: #333;
    }

        .home-advert-link:hover svg {
            -webkit-transform: translateX(10px);
            -ms-transform: translateX(10px);
            transform: translateX(10px);
        }

.home-advert-slider-wrapper {
    width: 64.59%;
}

.home-advert-slider .owl-dots {
    margin-top: 30px;
}

.home-advert-slider .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #d4d2d2;
    border: none;
    border-radius: 50%;
    padding: 0;
    margin-right: 10px;
    outline: none;
}

    .home-advert-slider .owl-dot.active {
        background-color: #e30d43;
    }

.home-advert-slider-item {
    font-size: 18px;
    line-height: 2;
    overflow: hidden;
}

.home-advert-slider-title {
    color: #000;
    margin-bottom: 10px;
}

    .home-advert-slider-title span {
        color: #e30d43;
    }

.home-advert-slider-desc {
    color: #000;
}

/* HOME SERVICES */
.social-services {
    padding: 80px 30px;
}

    .social-services .container {
        width: 100%;
        max-width: 1590px;
    }

.social-services-title {
    color: #cc0033;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.social-services-category {
    color: #333;
    font-weight: 300;
    margin-bottom: 30px;
}

.social-services-img {
    position: relative;
    overflow: hidden;
}

    .social-services-img img {
        width: 100%;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

    .social-services-img:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

.social-services-img-title {
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 12%;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.8);
}

/* HOME GALLERY */
.home-gallery {
    padding-bottom: 65px;
}

    .home-gallery .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: 0 -9px;
    }

.home-gallery-title {
    color: #000;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 30px;
}

.home-gallery-item {
    padding: 0 9px;
    margin-bottom: 18px;
}

.home-gallery-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 58%;
}

    .home-gallery-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
    }

    .home-gallery-img:hover img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

.home-gallery-image-title {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    text-shadow: 2px 2px 0px #000;
    z-index: 2;
}

.home-gallery-item.video {
    width: 36%;
}

    .home-gallery-item.video .home-gallery-img {
        padding-bottom: 115.5%;
    }

        .home-gallery-item.video .home-gallery-img::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            width: 58px;
            height: 78px;
            background: url("/Content/WebsiteTemplate/img/home-video-icon.png") no-repeat 50% 50%;
            z-index: 1;
        }

.home-gallery-item.list {
    width: 64%;
}

.list .home-gallery-item {
    width: 59%;
}

    .list .home-gallery-item:first-child,
    .list .home-gallery-item:last-child {
        width: 41%;
    }

        .list .home-gallery-item:first-child .home-gallery-img {
            padding-bottom: 86%;
        }

    .list .home-gallery-item:nth-child(3) .home-gallery-img {
        padding-bottom: 47%;
    }

    .list .home-gallery-item:last-child .home-gallery-img {
        padding-bottom: 69%;
    }

/* NEWSLETTER SECTION */
.newsletter-section {
    text-align: center;
    background: url("/Content/WebsiteTemplate/img/home-newsletter-bg.jpg") no-repeat 50% 50%;
    background-size: cover;
    padding: 40px 15px 40px;
}

.newsletter-section-title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    max-width: 520px;
    margin: 0 auto 10px;
}

.newsletter-section-desc {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-section-form ::-webkit-input-placeholder {
    color: #fff;
}

.newsletter-section-form ::-moz-placeholder {
    color: #fff;
}

.newsletter-section-form :-ms-input-placeholder {
    color: #fff;
}

.newsletter-section-form :-moz-placeholder {
    color: #fff;
}

.newsletter-section-form {
    text-align: center;
}

    .newsletter-section-form input {
        display: inline-block;
        width: 220px;
        height: 35px;
        line-height: 33px;
        border: 1px solid #fff;
        background: none;
        color: #fff;
        font-size: 18px;
        font-weight: 300;
        text-align: center;
        outline: none;
        padding: 0 10px;
    }

    .newsletter-section-form button {
        display: inline-block;
        width: 160px;
        height: 35px;
        line-height: 33px;
        color: #fff;
        font-size: 18px;
        font-weight: 300;
        text-align: center;
        background: none;
        border: 1px solid #fff;
        padding: 0;
        margin-left: 5px;
        cursor: pointer;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

        .newsletter-section-form button:hover {
            color: #1d5e9e;
            background: #fff;
        }

.newsletter-section-form .g-recaptcha {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transform-origin: left top;
    transform: scale(0.74);
    width: 225px;
    height: 57px;
    margin-left: 5px;
}

/* MEDIA */
@media (max-width: 1600px) {
    .our-services-title {
        font-size: 1.5em;
    }

    .our-services-desc {
        font-size: 1em;
    }

    .home-about {
        padding-top: 100px;
    }
}

@media (max-width: 1229px) {
    .our-services-main-title {
        font-size: 20px;
        margin: 0 0 1.5em;
    }

    .home-about-title {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .slide-text {
        font-size: 36px;
    }
    .slide-title {
        font-size: 30px;
    }
    .slide-desc {
        font-size: 16px;
    }
    .our-services {
        font-size: 14px;
        padding: 0 30px 15px;
    }

    .our-services-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .our-services-item {
        width: 25%;
        margin-bottom: 2em;
    }

    .our-services-title {
        font-size: 1.3em;
    }

    .home-about-info {
        padding-right: 60px;
    }

    .home-news {
        margin-top: 60px;
    }

    .home-gallery-image-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .main-slider .owl-dots,
    .slide-desc {
        display: none;
    }
    .main-slider .owl-next svg,
    .main-slider .owl-next:hover svg,
    .main-slider .owl-prev svg,
    .main-slider .owl-prev:hover svg {
        width: 40px;
        height: 40px;
    }
    .main-slider .owl-prev {
        left: 0;
    }
    .main-slider .owl-next {
        right: 0;
    }
    .slide-text {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        color: #fff;
        font-size: 4vw;
        text-align: center;
        transform: translateY(-50%);
    }
    .our-services-item {
        width: 50%;
    }

    .our-services-main-title::before {
        -webkit-transform: translate(-50%, -15px);
        -ms-transform: translate(-50%, -15px);
        transform: translate(-50%, -15px);
    }

    .home-about {
        padding: 30px 15px;
        text-align: center;
    }

        .home-about .container {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

    .home-about-image {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-bottom: 25px;
    }

        .home-about-image img {
            max-height: 100px;
        }

    .home-about-info {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        padding-right: 0;
    }

    .home-about-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .home-about-desc {
        text-align: justify;
    }

    .home-news,
    .newsletter-section {
        padding: 30px 15px;
        margin: 0;
    }

    .home-news-main-title {
        position: static;
        font-size: 24px;
        margin-bottom: 25px;
    }

    .home-news-item {
        display: block;
        padding-right: 0;
    }

    .home-news-info {
        padding: 20px 0 0 0;
    }

    .home-news-slider .owl-nav {
        position: static;
        margin-top: 15px;
    }

        .home-news-slider .owl-nav button {
            display: inline-block;
            margin-right: 5px;
            padding: 0;
        }

    .home-news-category {
        margin-bottom: 10px;
    }

    .newsletter-section-form input,
    .newsletter-section-form button {
        width: 224px;
        display: block;
        margin: 0 auto 10px;
    }

    .newsletter-section-form .g-recaptcha {
        margin: 0 auto 10px;
    }

    .home-advert,
    .social-services,
    .home-gallery {
        padding: 30px 15px;
    }

        .home-advert .container {
            display: block;
        }

    .home-advert-info {
        width: 100%;
        margin: 0 0 30px;
    }

    .home-advert-slider-wrapper,
    .home-gallery-item.video,
    .home-gallery-item.list {
        width: 100%;
    }

    .home-gallery-title {
        font-size: 24px;
    }
}

