/* 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('
(327,1): run-time error CSS1019: Unexpected token, found '@import'
(327,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')'
(2406,1723): run-time error CSS1019: Unexpected token, found '@-webkit-keyframes'
(2406,1750): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(2406,1871): run-time error CSS1019: Unexpected token, found '@keyframes'
(2406,1890): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(2413,1813): run-time error CSS1019: Unexpected token, found '@keyframes'
(2413,1832): run-time error CSS1062: Expected semicolon or closing curly-brace, found '0%'
(3269,1): run-time error CSS1019: Unexpected token, 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 **
*/
html,body{
	   overflow-x: hidden;
        /* Unnecessary IMHO, uncomment next line to force hidden behavior */
        /* overflow-x: hidden !important; */
        /* Additional tunning proposed by the community */
        position: relative;
        width: 100%;
		font-family: 'Raleway', sans-serif;
}
@font-face {
    font-family: 'Atatu:rk';
    src: url('/Content/WebsiteTemplate/fonts/Atatrk.woff2') format('woff2'),
        url('/Content/WebsiteTemplate/fonts/Atatrk.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



@font-face {
    font-family: "FontAwesome";
    src: url("/Content/WebsiteTemplate/fonts/fontawesome-webfont.eot");
    src: url("/Content/WebsiteTemplate/fonts/fontawesome-webfont.eot?#iefix&v=4.6.1") format("embedded-opentype"), url("/Content/WebsiteTemplate/fonts/fontawesome-webfont.woff2?v=4.6.1") format("woff2"),
        url("/Content/WebsiteTemplate/fonts/fontawesome-webfont.woff?v=4.6.1") format("woff"), url("/Content/WebsiteTemplate/fonts/fontawesome-webfont.ttf?v=4.6.1") format("truetype"),
        url("..fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}
a.facebook:hover {
    background-color: #1877f2;
}
a.instagram:hover {
    background-color: #d62977;
}
a.youtube:hover {
    background-color: #fe0000;
}
a.linkedin:hover {
    background-color: #0077b5;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    justify-content: center;
}
i.fa.fa-facebook:hover {
    background-color: #1877f2;
    color:#ffffff;
    border-width: 1px;
}
i.fa.fa-instagram:hover {
    background-color: #d62977;
    color:#ffffff;
    border-width: 1px;
}
i.fa.fa-youtube:hover {
    background-color: #fe0000;
    color:#ffffff;
    border-width: 1px;
}
i.fa.fa-linkedin:hover {
    background-color: #0077b5;
    color:#ffffff;
    border-width: 1px;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fa-angle-right:before {
    content: "\f105";
}

.fa-angle-down:before {
    content: "\f107";
}
body {
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden; }

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

.container {
  margin: 0 auto; }
  /* 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 15px; }

.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 {
  background-color: #3366cc;
  padding-bottom: 25px;
  padding-top: 50px;
  position: fixed;
  left: -200%;
  top: 0;
  width: 100%;
  z-index: 9999999999;
  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); 
    left: 0;
  }

.mobile-menu-close {
     color: #fff;
    font-size: 40px;
    position: absolute;
    right: 31px;
    top: 3px;
    display: block;
    cursor: pointer; }
/**/
.hdr-search {
    position: relative;
    float: right;
    margin-top: 0;
	height: 50px;
	margin-right:0;
	margin-top:0;
}

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

  

.hdr-search-inner {
    position: absolute;
    right: 40px;
    top: 0;
    width: 250px;
    -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: 50px;
        color: #333;
        font-weight: 400;
        height: 50px;
        background-color: #fff;
        border-radius: 0;
        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;
}
/**/
.main-nav-hamburger{
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #9a9a9a;
    text-align: center;
    line-height: 60px;
    display: none;
    line-height: 60px;
    position: relative;
    font-family: 'Lato';
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
	z-index:9;
}
.main-nav-hamburger span{
	    width: 25px;
    height: 3px;
    position: absolute;
    background: #ffffff;
    right: 12px;
	display:none;
}
.main-nav-hamburger span:first-child{
	top:15px;
}
.main-nav-hamburger span:nth-child(2){
	top:23px;
}
.main-nav-hamburger span:nth-child(3){
	top:31px;
}
/* MAIN HEADER*/
.main-header{
	height:auto;
	width:100%;
	position:relative;
}
.main-header:after{
	content:'';
	position:absolute;
	top:0;
	z-index:-1;
	left:0;
	right:0;
	width:100%;
	height:50px;
	background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(232,232,232,1) 100%);
}
.mh-inner{
	width:100%;
	padding:0 0 0 0;
  display: flex;
  justify-content:space-between;
}
.main-header .container{
	position:relative;
}

.mh-left{
	width:364px;
	padding:15px 0 0 0;
	margin:0 20px 0 0;
}
.logo,.logo img{
	max-width:100%;
}
    .logo a {
        position: relative;
        z-index: 9;
    }
.mh-right{
	  padding: 0 0 0 0;
	  display:flex;
	  flex-wrap:wrap;
}
.mh-right-top{
	  padding: 0 0 0 0;
	  width:100%;
	  display:flex;
	  justify-content:flex-end;
	  position:absolute;
	  top:0;
	  right:0;
}
.mh-right-bottom{
	  padding: 17px 0 15px 0;
	  width:100%;
	  margin-top:50px;
}
.main-nav{
	padding:0 0 0 0;
	margin:0 0 0 0;
}
.main-nav ul li{
	margin:0 15px 0 0;
	float:left;
}
.main-nav ul li:last-child{
	margin:0 0 0 0
}
.main-nav ul li a{
	font-family: 'Raleway', sans-serif;
	line-height:18px;
	font-size:16px;
	color:#2a2f42;
	font-weight: 500;
	letter-spacing:0px;
	transition: all 0.5s ease;
}
.main-nav ul li:hover a{
	transition: all 0.5s ease;
		color:#4d6df3;
}


/****/
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
    background: url(/Content/WebsiteTemplate/img/dropdown-bg.png) no-repeat right center;
    background-size: cover;
    min-height: 430px;
    padding: 70px 0 12px 0;
    border-top: 1px solid #dedede;
    z-index: 10;
}

.has-navdropdown > a::after {
    display: none;
}

.has-navdropdown > a::before {
    content: "";
    position: absolute;
    bottom: -11px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 12px;
    background: url(/Content/WebsiteTemplate/img/nav-triangle.jpg) no-repeat center center;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    z-index: 15;
}

.has-navdropdown:hover > a::before {
    opacity: 1;
}

.main-nav .has-navdropdown:hover > a {
    color: #375f81;
}

.has-navdropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
}
main-nav ul li a.nav-dropdown-link {
    display: block;
    color: #2d2b75;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.25px;
    padding: 7px 0;
    border-bottom: 1px solid #ccc5d3;
    -webkit-transition: background-color 0.3s, color 0.3s, padding 0.3s;
    transition: background-color 0.3s, color 0.3s, padding 0.3s;
}
.nav-dropdown-inner .row {
    display: flex;
    flex-wrap: wrap;
}
.col-sm-4 {
    width: 33.33333333%;
}
    .col-sm-4.right-product {
        display: none;
    }
a.nav-dropdown-link {
    display: block !important;
    color: #2d2b75 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: -0.25px !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid #ccc5d3 !important;
    -webkit-transition: background-color 0.3s, color 0.3s, padding 0.3s;
    transition: background-color 0.3s, color 0.3s, padding 0.3s;
}

    .nav-dropdown-link:hover {
        color: #fff;
        padding-left: 15px;
    }

.dropdown-accordion-title {
    color: #5c5b8e;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.accordion .inner {
    overflow: hidden;
    display: none;
}

    .accordion .inner.show {
        /*display: block;*/
    }

.accordion li a.toggle {
    display: block;
}

.accordion-group {
    margin-bottom: 20px;
}

.da-subtitle {
    color: #5c5b8e !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
}

.da-sub-link {
    display: block;
    color: #214a6c;
    padding-left: 5px;
    margin-bottom: 3px;
}

    .da-sub-link:hover {
        color: #000;
    }


.col-sm-4.right-product.active {
    display: inline;
}

.col-sm-4.right-product {
    display: none;
}

    .col-sm-4.right-product:hover {
        display: block;
    }

    .col-sm-4.right-product.sgrt {
        min-height: 250px;
    }

.img-responsive {
    display: none;
    max-height:300px;
}

    .img-responsive.ft-logo {
        display: block;
    }

    .img-responsive.active {
        display: block;
    }
.nav-dropdown-inner .img-responsive {
  
    max-height: 232px;
    width: 96%;
    object-fit: cover;
    border-radius: 5px;
}
/*******/
.hdr-social ul li a{
	font-size:16px;
	color:#a6aec0;
	width:100%;
	float:left;

}

.hdr-social ul li{
	/* background:#ececec; */
	width:50px;
	height:50px;
	text-align:center;
	line-height:50px;
	float:left;
	margin:0 0 0 0;
	border-right:1px solid #d4dbeb;
}
.hdr-social ul li:hover{
	background:#a6aec0;
	color:#ffffff;
	transition: all 0.5s ease;
}
.hdr-social ul li:first-child{
	border-left:1px solid #d4dbeb;

}
.hdr-social ul li:last-child{
	border-right:0px solid #d4dbeb;
}
.hdr-social ul li:hover a{
	transition: all 0.5s ease;
		color:#ffffff;
}
.product-menu{
	height:50px;
	background:#0f7baa;
	padding:15px 22px 15px 37px;
	display:flex;
	cursor:pointer;
}
.product-menu-l-text{
	line-height:21px;
	padding:0 0 0 0;
	color:#eeeeee;
	font-size:18px;
	font-family: 'Raleway', sans-serif;
	font-weight:500;
	letter-spacing:0;
	margin:0 14px 0 0;
}
.product-menu-hamburger{
	width:14px;
	height:21px;
	position:relative;
}
.product-menu-hamburger span{
	width:14px;
	position:absolute;
	height:2px;
	background:#ffffff;
}
.product-menu-hamburger span:nth-child(1){
	top:5px;
}
.product-menu-hamburger span:nth-child(2){
	top:9px;
}
.product-menu-hamburger span:nth-child(3){
	top:13px;
}



/*LANG*/
.hdr-lang-list.dropdown-menu {
    display: none;
    background-color: #ededed;
}
.hdr-lang.dropdown:hover .hdr-lang-list.dropdown-menu {
    display: block !important;
    position: absolute;
    z-index: 9;
    max-width: 48px;
}
.hdr-lang-button {
    /* background:#ebebeb; */
    width: 48px;
    height: 50px;
    border-left: 1px solid #d4dbeb;
    line-height: 50px;
    font-size: 16px;
    color: #a6aec0;
    text-align: center;
    font-weight: 500;
    font-family:'Raleway', sans-serif;
    letter-spacing: 0;
}


.mf-logo{
	width:231px;
	margin-left:20px;
	margin-left:20px;
}
.mf-logo img{
	max-width:250px;
    width: 100%;
}
.hamburger-menu{
	    background: #3366cc;
    padding: 0;
    position: relative;
    display: flex;
    height: 39px;
    width: 39px;
    cursor: pointer;
    top: -23px;
    opacity: 1;
    z-index: 9;
    display: none;
}
.hamburger-menu span {
  width: 14px;
    position: absolute;
    height: 2px;
    background: #ffffff;
	left: 12px;
}
.hamburger-menu  span:nth-child(1) {
    top: 14px;
}
.hamburger-menu span:nth-child(2) {
    top: 18px;
}
.hamburger-menu span:nth-child(3) {
    top: 22px;
}
/*Hamburger-menu opened*/
.mh-menu{
	position:absolute;
	width:525px;
	max-width:100%;
	background:#ffffff;
	top:0;
	right:-200%;
	transition: all 1s ease;
	z-index:10;
	border-radius:0 0 0 50px;
-webkit-box-shadow: -10px 1px 20px 0px rgba(0,0,0,0.18);
-moz-box-shadow: -10px 1px 20px 0px rgba(0,0,0,0.18);
box-shadow: -10px 1px 20px 0px rgba(0,0,0,0.18);
}
.mh-menu.active{
	right:0;
	transition: all 1s ease;
}
.mh-menu-inner{
	padding:72px 30px 124px 60px;
}

.mh-products-title{
	line-height:28px;
	color:#3366cc;
	font-size:24px;
	font-weight:600;
	font-family: 'Raleway', sans-serif;
	letter-spacing:0;
	text-align:left;
	margin:0 0 32px 0;
}
.mh-products-list{
	width:100%;
}
.mh-products-list ul{
	width:100%;
}
.mh-products-list ul li{
	width:100%;
	position:relative;
	margin:0 0 20px 0;
}


.mh-products-list ul li a{
	font-family: 'Raleway', sans-serif;
	color:#333333;
	font-size:16px;
	font-weight:500;
	line-height:18px;
	position:relative;
		transition: all 0.5s ease;
}
.mh-products-list ul li a:after{
background:#3366cc;
z-index:-1;
width:0;
height:auto;
position:absolute;
content:'';
	transition: all 0.5s ease;
	top:0;
	bottom:0;
	left:-3px;
	padding-top:3px;
	padding-bottom:3px;
	top:-3px;
}
.mh-products-list ul li a:hover{
	color:#ffffff;
}
.mh-products-list ul li a:hover:after{
width:103%;

	padding-left:6px;
	padding-right:3px;

}

.mh-menu-close{
	width:50px;
	height:50px;
	background:#3366cc;
	text-align:center;
	line-height:62px;
	position:absolute;
	right:0;
	top:1px;
	cursor:pointer;
	z-index:3;
}
.mh-menu-close span{
	background: #ffffff;
    width: 24px;
    height: 1px;
    position: absolute;
}
.mh-menu-close span:first-child{
  left: 12px;
    top: 24px;
    transform: rotate(45deg);
}
.mh-menu-close span:last-child{
        left: 12px;
    top: 24px;
    transform: rotate(135deg);
}
/**/
.home-popup {
    position: fixed;
    top: 20%;
    bottom: 0;
    width: 900px;
    max-width: 90%;
    margin: auto;
    left: 0;
    z-index: 99999999;
    right: 0;
}
.home-popup:before {
    background: rgba(0,0,0,.47);
    width: 100%;
    height: 100%;
    content: '';
    position: fixed;
    left: 0;
    top: 0;
}
.home-popupclose {
    width: 50px;
    height: 50px;
    position: absolute;
    background: #1b427b;
    color: #fff;
    right: 0;
    z-index: 99999;
    font-size: 22px;
    line-height: 50px;
    text-align: center;
    top: 0;
    cursor: pointer;
}
.home-popup-inner {
    position: relative;
    width: 100%;
}
.home-popup-img {
    width: 100%;
}
.home-popup-img:first-child {
    display: block;
}
.home-popup-img img {
    width: 100%;
}
.home-popup.hidden{
	display:none;
}
.main-footer{
	width:100%;
	background:#f5f5f5;
}
.mf-inner{
	padding:40px 0 0 0;
	width:1350px;
	max-width:100%;
	margin:0 auto;
	   display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
}
.mf-top{
	width:100%;
	  display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
	margin:0 0 0 0;
}
.mf-bottom{
	width:100%;
	  display: flex;
    justify-content: end;
	flex-wrap:wrap;
}

.mf-left{
	width:341px;
	/*max-width:33.33%;*/
}

.mf-logo{
	margin:0 0 40px 0;
	width:100%;
}
.mf-logo img{
	max-width:250px;
}
.mf-address{
	font-family: 'Raleway', sans-serif;
	padding-left:34px;
	position:relative;
	color:#0d2e35;
	font-size:14px;
	letter-spacing:0;
	font-weight:400;
	line-height:20px;
	margin:0 0 18px 0;
	width:100%;
	
}
.mf-address i{
	content:'';
	position:absolute;
	left:0;
	top:0;
	width:11px;
	height:16px;
	background:url('/Content/WebsiteTemplate/img/mf-address.png') no-repeat center center;
	background-size:contain;
}
.mf-mail {
    margin: 0 0 18px 0;
    width: 100%;
}
.mf-mail a{
	position:relative;
	padding-left:34px;
	line-height:18px;
	color:#0d2e35;
	font-size:14px;
	letter-spacing:0;
	font-weight:700;
	font-family: 'Raleway', sans-serif;
	display:block;
}
.mf-mail a:hover {
    color: #0f7baa;
}
.mf-mail i{
	content:'';
	position:absolute;
	left:0;
	top:3px;
	width:15px;
	height:12px;
	background:url('/Content/WebsiteTemplate/img/mf-mail.png') no-repeat center center;
	background-size:contain;
}
.mf-tel{
	width:100%;
}
.mf-tel a{
	line-height:16px;
	color:#ffffff;
	font-size:14px;
	letter-spacing:1;
	font-weight:700;
	font-family: 'Raleway', sans-serif;
}


.mf-center{
	width:416px;
	max-width:33.33%;
	padding-top:0px;
	margin:0 0 68px 0;
}
.mf-nav{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	width:488px;
}
.mf-nav ul{
	margin:0 0;
	flex-wrap:wrap;
	justify-content:center;
	width:100%;
	display:flex;
}
.mf-nav ul li{
	margin: 0 18px 14px 18px;
}

.mf-nav ul li a{
	font-family: 'Raleway', sans-serif;
	line-height:17px;
	color:#d8d6d6;
	font-size:14px;
	font-weight:500;
	letter-spacing:0;
	color:#646b6d;
}

.mf-right{
	width:360px;
	max-width:33%;
}
.mf-contact-area{
	width:100%;
		padding-top:0px;
}
.mf-contact-title{
	text-align:left;
	padding-left:34px;
	position:relative;
	/*float:right;*/
	line-height:23px;
	font-weight:800;
	color:#006699;
	font-size:16px;
	letter-spacing:0;
		font-family: 'Raleway', sans-serif;
}

.mf-contact-title:after{
	content:'';
	position:absolute;
	left:0;
	top:3px;
	width:15px;
	height:19px;
	background:url('/Content/WebsiteTemplate/img/footer-contact.png') no-repeat center center;
	background-size:contain;
}
.mf-contact-phone{
	/*float:right;*/
	width:100%;
	text-align:left;
	margin:0 0 36px 0;
}

.mf-contact-phone a{
	width:100%;
	text-align:right;
	line-height:30px;
	color:#666666;
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	font-size:20px;
	letter-spacing:0.5px;
}
.mf-social{
	width:100%;
	/*float:left;*/
}
.mf-social-title{
	width:100%;
	float:left;
	line-height:20px;
	font-weight:800;
	color:#006699;
	font-size:16px;
	letter-spacing:0;
		font-family: 'Raleway', sans-serif;
		text-align:right;
		margin:0 0 5px 0;
}
.mf-social ul{
	width:100%;
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
}
.mf-social ul li{
	width:auto;
	margin:0 25px 0 0;
	float:left;
}
.mf-social ul li:last-child{
	margin:0 0 0 0;
}
.mf-social ul li i{
	width:18px;
	color:#3e4449;
	margin:0 0 0 0;
}
.mf-social ul li a{
	font-family: 'Montserrat', sans-serif;
	font-size:14px;
	color:#bfc7c9;
	letter-spacing:0;
	line-height:20px;
}
.mf-copyright{
	font-family: 'Raleway', sans-serif;
	font-weight:500;
	color:#0d2e35;
	font-size:14px;
	letter-spacing:0.5px;
	line-height:18px;
	text-align: right;
    padding-top: 25px;
    /*width: 350px;*/
    margin-left:auto;
}

.developer-logo{
        width:83px;
        padding-top: 20px;
}
.developer-logo img{
	max-width:100%;
}
.container{
	width:100%;
	padding:0 32px;
}
.home-information{
	width:100%;
	height:auto;
	position:relative;
	float:left;
}
.hi-bg{
	min-width:100%;
	min-height:100%;
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
}
.hi-bg img {
    /* width: 100%; */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
}
.information-form{
	float:left;
	width:100%;
	position:relative;
	padding:73px 0 65px 0;
	display:flex;
	justify-content:center;
	align-items:center;
	flex-wrap:wrap;
}
.hi-title{
	width:100%;
	text-align:center;
}
.hi-desc{
	width:100%;
	text-align:center;
}
.full-form-group{
	width:100%;
	text-align:center;
}
.hi-title{
	color:#ffffff;
	font-size:30px;
	font-weight:600;
	letter-spacing:0;
	margin-bottom:16px;
}
.hi-desc{
	width:100%;
	color:#ffffff;
	font-size:16px;
	font-weight:400;
	letter-spacing:0;
	margin-bottom:27px;
}
.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    position: absolute;
    margin-top: 4px\9;
    margin-left: -20px;
}
.checkbox label, .radio label {
    min-height: 25px;
    padding-left: 25px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}
.checkbox label::before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    left: -1px;
    top: -1px;
    border: 1px solid #cedaf3;
}
.checkbox label a {
    color: #cedaf3;
    text-decoration: underline;
}

.checkbox label::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 13px;
    height: 13px;
    background-color: #cedaf3;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .4s;
    transition: all .4s;
}
.checkbox [type="checkbox"]:checked+label:before {
    border: 1px solid #cedaf3;
}
.checkbox [type="checkbox"]:checked+label:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.home-information .form-group.full-form-group{
	margin:0 0 28px 0;
	line-height:25px;
	color:#cedaf3;
	letter-spacing:0;
		font-family: 'Raleway', sans-serif;
		font-weight:500;
}
.home-information .form-group.full-form-group a{
	line-height:25px;
	color:#cedaf3;
	letter-spacing:0;
		font-family: 'Raleway', sans-serif;
		font-weight:500;
		text-decoration:none;
}
.home-information input{
    position: relative;
    display: block;
    width: 215px;
	margin:0 15px 0 0;
    font-size: 16px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 400;
    height: 45px;
    padding: 0 30px;
    background-color: none;
    border: 1px solid #ffffff;
	background:none;
    border-radius: 25px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    outline: none;
}
.home-information input::-webkit-input-placeholder { /* Edge */
  color: #ffffff;
  font-size: 16px;
    line-height: 60px;
	 font-weight: 400;
}

.home-information input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ffffff;
  font-size: 16px;
    line-height: 60px;
	 font-weight: 400;
}

.home-information input::placeholder {
  color: #ffffff;
  font-size: 16px;
    line-height: 60px;
	 font-weight: 400;
}
.home-information .send-btn{
	width:100px;
	height:45px;
	background: #0f7baa;
    
    border-radius: 25px;
	line-height:45px;
	border:0;
	color:#ffffff;
	position:relative;
	top:1px;
	cursor:pointer;
	 -webkit-transition: all .4s;
  transition: all .4s;
    outline:none !important;
}
.home-information .send-btn:hover{
	 -webkit-transition: all .4s;
  transition: all .4s;
  outline:none;
  background:#4879da;
}
.hdr-lang-button {
    width:auto;
    padding: 0 9px;
}

    .hdr-lang-button a {
        color: #a6aec0;
    }

    .hdr-lang-button a:after {
        content: '|';
        margin-left: 3px;
        margin-right: 3px;
    }

    .hdr-lang-button a:last-child:after {
        display: none;
    }
/*MEDIA*/
@media (max-width: 1685px) {

}
@media(max-width:1560px){
	
}
@media(max-width:1500px){

}
@media(max-width:1449px){

}
@media (max-width: 1280px) {
	.main-nav ul li {
    margin: 0 10px 0 0;
}
.main-nav ul li a {
    font-size: 14px;
}

}

@media (max-width: 1280px) and (min-width:768px){
.main-nav {
    position: absolute;
    right: 20px;
}
.mh-right-bottom {
    height: 63px;
}
  }
@media (max-width:1200px){
	.product-menu {
    padding: 15px 22px 15px 15px;
}
.hdr-social ul li {
    width: 35px;
}
.hdr-lang-button {
    /* background: #ebebeb; */
    width: 35px;
}
}

@media (max-width: 1094px) {
    .mf-right {
        width: 240px;
    }
    .mf-center {
        width: 270px;
    }
    .mf-left {
        width: 240px;
        /* max-width: 33.33%; */
    }
}
@media (max-width: 991px) {
	.mh-left {
    width: 272px;
}
.hdr-search-inner {
    width: 155px;
}
.information-form .full-form-group{
		max-width:100% !important;
	}
	.information-form .form-group{
		max-width:25%;
		    padding: 0 10px;
	}
	.home-information input{
		max-width:100%;
	}
	.home-information input{
    font-size: 13px;
	padding: 0 13px;
   
}
.home-information input::-webkit-input-placeholder { /* Edge */
  font-size: 13px;
}

.home-information input:-ms-input-placeholder { /* Internet Explorer 10-11 */
   font-size: 13px;
}

.home-information input::placeholder {
   font-size: 13px;
}
 }

@media (max-width: 991px) {
/*	.mh-inner {
    flex-wrap:wrap;
}*/
.mh-right {
    width: 100%;
	 flex-wrap: unset;
	 justify-content:space-between;
}
.mh-right-top {
    padding: 0 0 0 0;
    width: auto;
    display: flex;
    position: relative;
    order: 2;
}
.main-header:after{
	display:none;
}
.mh-right-top:after{
	content:'';
	position:absolute;
	top:0;
	z-index:-1;
	left:0;
	right:0;
	width:100%;
	height:83px;
	background: rgb(255,255,255);
background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 20%, rgba(232,232,232,1) 100%);
}
.mh-right-bottom {
      margin-top: 0;
    float: left;
    order: 1;
 width: auto;
}
.hdr-search {
    position: absolute;
    top: -80%;
	right: 209px;
}
.mh-left {
    width: 272px;
}
.main-header .container {
    width: 100%;
    padding: 0 0 0 20px;
}
.main-nav ul li a {
    font-size: 12px;
}
    .hdr-lang-button {
        height:83px;
        line-height:83px;
        width: 70px;
    }

.hdr-social ul li {
    /* background: #ececec; */
    width: 25px;
    height: 83px;
    line-height: 83px;
    border-left: 0px solid #d4dbeb;
    border-right: 0px solid #d4dbeb;
}

.hdr-social{
float:right;
}
.product-menu {
    float: right;
    position: absolute;
    top: -80%;
    width: 195px;
}
.hdr-lang {
	float:right;
}
.main-nav {
    position: relative;
    right: 0;
    left: 0;
}
.mf-nav ul li {
    margin: 0 0 8px 0;
    width: 100%;
    text-align: right;
}
.mf-center{
	padding-top:0;
}


 }
@media (max-width: 800px) {
    .mf-top {
        /*flex-direction: column;*/
        justify-content: space-around;
        flex-wrap: wrap;
        /*align-content: center;*/
    }
    .mf-center {
        margin: 0;
        width:270px;
        max-width: unset;
    }
    .mf-left {
        width: 270px;
    }
    .mf-right {
        width: 100%;
        max-width: unset;
    }
    .mf-social-title {
        text-align: center;
    }
    .mf-social ul {
        justify-content: center;
    }
    .mf-copyright {
        text-align: center;
    }
    .mf-bottom {
        justify-content: center;
    }
}
@media (max-width: 767px) {
  
	.container{
		padding:0 20px;
	}

	.hamburger-menu{
		left: 20px;
    display: block;
    position: absolute;
    top: 83px;
	}
	.main-nav {
	left:-200%;
    width: 70%;
    background: #9a9a9a;
    position: fixed;
    height: 100%;
    padding: 100px 50px;
    top: 0;
    bottom: 0;
		transition: all 0.5s ease;
}
	.main-nav.active{
    left: 0;
		transition: all 0.5s ease;
		z-index:8;
	}
	.main-nav-hamburger{
		display:block;
	}
	.main-nav ul li {
    margin: 0 0 30px 0;
    width: 100%;
}
.main-nav ul li a {
    line-height: 22px;
    font-size: 22px;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 1px;
 }


.main-nav-hamburger.closed{
	z-index:9;
}
.main-nav-hamburger.closed span{
	display:block;
}
.main-nav-hamburger.closed div{
	display:none;
}
.main-nav-hamburger.closed span:first-child{
transform: rotate(45deg);
top: 31px;
}
.main-nav-hamburger.closed span:nth-child(2){
	display:none;
}
.main-nav-hamburger.closed span:nth-child(3){
	    transform: rotate(135deg);
}
/*.mf-left {
    width: 50%;
    max-width: 50%;
}
.mf-right {
    width: 100%;
    max-width: 100%;
}
.mf-center {
    width: 100%;
    max-width: 50%;
    padding-top: 0;
    margin-bottom: 30px;
}*/
.mf-inner {
    padding: 60px 0 60px 0;
}
/*.mf-contact-title:after {
    
    position: relative;
    float: left;
	margin-right:5px;
}
.mf-contact-title{
	    width: auto;
    max-width: 50%;
	float:none;
	text-align:left;
}
.mf-contact-area {
	position:relative;

}
.mf-contact-phone{
	    width: 50%;
    text-align: left;
		float:none;
}
.mf-social{
	position:absolute;
	top:0;
	right:0;
	width:50%;
}*/
.mf-nav ul li {
    text-align: right;
}

}
@media (max-width: 609px) {
.product-menu {
    width: 137px;
	  padding: 15px 8px 15px 11px;
}
.product-menu-l-text {
    font-size: 12px;
}
.hdr-search {
    right: 139px;
}
.mh-left {
    width: 219px;
}
 }
 @media (max-width:560px){
	 .information-form .form-group {
    max-width: 50%;
    padding: 0 10px;
    width: 50%;
	margin-bottom:20px;
}
.home-information .form-group.full-form-group {
    width: 100%;
}
.home-information .send-btn {
    width: 100%;
}
.home-information input {
   width:100%;
}
 }
 @media (max-width:530px){
	 .product-menu {
    padding: 20px 8px 15px 11px;
}
.hamburger-menu {
    top: 83px;
    left:0px;
}
 }
@media (max-width: 480px) {
	.mh-left {
    width: 168px;
}
.mf-left {
    width: 100%;
    max-width: 100%;
	margin-bottom:20px;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.mf-center {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
	display:flex;
	justify-content:center;
	flex-wrap:wrap;
}
.mf-logo{
	text-align:center;
}
.mf-address{
	display:flex;
	justify-content:center;
	padding-left:0;
}
.mf-address i{
	position:relative;
	margin-right:10px;
}
.mf-mail {
    text-align: center;
	display:flex;
	justify-content:center;
}
.mf-mail a{
	padding-left:0;
	display:flex;
	justify-content:center;
}
.mf-mail i{
	position:relative;
	margin-right:10px;
}
.mf-contact-phone{
	text-align:center;
}
.mf-social-title {
    margin: 0 0 8px 0;
}
.mf-contact-phone a {
    font-size: 16px;
}
    .mf-copyright {
        width: 100%;
        margin: 0px;
    }
.mf-nav ul li {
    text-align: center;
}
h1.hpr-title {
    font-size: 26px;
}
 }
 
 @media (max-width: 460px) {
	 .mh-menu-inner {
    padding: 72px 20px 36px 35px;
}
}
@media(max-width:430px){
	.hdr-search {
    position: absolute;
    top: 61px;
    right: 0;
    z-index: 9;
    background: #ffffff;
    height: 41px;
    width: 35px;
}
.hdr-search-btn {
   
    width: 100%;
    height: 43px;
 
}
	.hdr-search-inner {
    width: 175px;
    height: 43px;
}
.hdr-search-inner input {
    line-height:43px;
 
    height: 43px;
   
    padding: 0 35px 0 15px;
}
.hdr-social ul li a {
    font-size: 13px;
}
.hdr-search-inner {
    right: 35px;
 } }

 @media(max-width:390px){
	 .product-menu-l-text {
    font-size: 9px;
}
.product-menu {
    width: 112px;
}
.mh-left {
    width: 143px;
    padding: 17px 0 0 0;
}
 }
 @media(max-width:360px){
	 .mf-contact-title {
    width: 100%;
    max-width: 100%;
}
.mf-contact-phone {
    width: 100%;
}
.mf-social {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.mf-social-title {
    text-align: center;
}
.mf-social ul {
    justify-content: center;
}
.mf-contact-title {
    text-align: center;
}
.mf-contact-title {
    display: flex;
    justify-content: center;
}
.mf-contact-title {
    text-align: right;
padding-left: 0}
.mf-contact-title:after {
    left: -127px;
}
.mf-contact-title {
    text-align: right;
    padding-left: 20px;
}
.mf-copyright {
    width: 100%;
}
.developer-logo {
    width: 83px;
    margin: auto;
    margin-top: 20px;
}
    .mf-copyright {
        width: 100%;
        margin: 0px;
        text-align: center;
    }

 }

.toast-title {
    font-weight: 500;
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

    .toast-message a,
    .toast-message label {
        color: #FFFFFF;
        font-weight: bold;
    }

        .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);
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('/Content/WebsiteTemplate/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('/Content/WebsiteTemplate/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('/Content/WebsiteTemplate/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('/Content/WebsiteTemplate/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('/Content/WebsiteTemplate/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('/Content/WebsiteTemplate/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

/**
 * 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]),/*m.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**
*/
.fixed-scroll{
 position: absolute;
    bottom: 78px;
    left: 0;
    z-index: 9;
	cursor:pointer;
}
.fixed-scroll-inner{
	    transform: rotate(270deg);
    color: #ffffff;
    letter-spacing: 2px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
	position:relative;
	display:block;
}
.fixed-scroll-inner:after{
	content:'';
	width:128px;
	height:1px;
	background:#ffffff;
	float:left;
	margin-left:8px;
	position:absolute;
	top:10px;
	left:100%;
}
.main-slider-area{
	position:relative;
}
.main-slider-item{
	width:100%;
	position:relative;
}
.main-slider-item a{
	width:100%;
}
.main-slider-img{
	width:100%;
}
.main-slider-img img{
	width:100%;
	height: 560px;
	
}
.main-slider-text{
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	margin:auto;
	display:flex;
	align-items:left;
	flex-wrap:wrap;
	z-index:2;
	padding:0 0 0 337px;
	 flex-direction: column;
	 height:100%;
	 justify-content:center;
	 
}
.main-slider-title {
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	color: #141451;
	letter-spacing: 0;
	line-height: 30px;
	margin: 0 0 7px 0;
	font-weight: 400;
	width: 39%;
	text-align: left;
	float: left;
}
.main-slider-content-img{
	width: 100%;
	height: auto;
	position: absolute;
	justify-content: center;
    left: 1050px;
}
.main-slider-short {
	color: #141451;
	font-family: 'Raleway', sans-serif;
	font-size: 60px;
	margin: 0 0 52px 0;
	letter-spacing: 0px;
	font-weight: 700;
	line-height: 65px;
	width: 100%;
	text-align: left;
}
.main-slider-btn-cover{
	float:left;
	width:100%;
}
.main-slider-btn {
	width: auto;
	max-width: 100%;
	border: 1px solid #141451;
	border-radius: 17px;
	padding-left: 29px;
	padding-right: 33px;
	padding-top: 12px;
	padding-bottom: 10px;
	line-height: 15px;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0;
	color: #141451;
	float: left;
	background: transparent;
	-webkit-transition: all .4s;
	transition: all .4s;
}
	.main-slider-item:hover .main-slider-btn{
	background: transparent;
	  -webkit-transition: all .4s;
  transition: all .4s;
}
.main-slider .owl-dots{
	position:absolute;
	left:337px;
	right:0;
	top:494px;
	text-align:left;
}
.main-slider .owl-dots .owl-dot{
	width:7px;
	height:7px;
	background:#ffffff;
	border-radius:50%;
	border:0;
	padding:0;
	margin:0 10px 0 0;
	border:0px !important;
	outline: none !important;
}
.main-slider .owl-dots .owl-dot:last-child{
	margin:0 0 0 0;
}
.main-slider .owl-dots .owl-dot.active{
	width:17px;
	height:17px;
}
.home-product-range {
	padding: 70px 0 74px 0;
	background-image: url('/Content/WebsiteTemplate/img/home-product-bg.png');
	background-position: right;
	background-repeat: no-repeat;
	background-size: auto;
	background-color:#f3f2ea;
}
.hpr-top{
	margin:0 0 38px 0;
}
h1.hpr-title {
	color:#494d4e;
	font-size:48px;
	letter-spacing:0;
	line-height:54px;
	font-weight:400;
	margin:0 0 8px 0;
	width:100%;
	text-align:center;
	font-family: 'Raleway', sans-serif;
}
h2.hpr-short-title{
		margin:0 0 0 0;
		font-family: 'Raleway', sans-serif;
		color:#494d4e;
		font-size:20px;
		font-weight:300;
		letter-spacing:0.5px;
		line-height:25px;
		width:100%;
		text-align:center;
}
.home-product-list{
	margin-left:-20px;
	margin-right:-20px;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
}
.hpl-item{
	
	padding:0 20px;
	margin:0 0 40px 0;
}
.hpl-item a{
	width:100%;
	position:relative;
	float:left;
	overflow:hidden;
}
.hpl-logo {
	background-color: #f3f2ea;
	width: 274px;
	/* height: 80px; */
	border-radius: 44px;
	/* padding-left: 20px; */
	/* padding-right: 20px; */
	padding-top: 17px;
	padding-bottom: 17px;
	position: absolute;
	margin-top: 468px;
	margin-left: 45px;
	/* margin-right: auto; */
	text-align: center;
	font-family: 'Raleway', sans-serif;
	font-weight: 700;
}

.hpl-item img{
	width:100%;
	  -webkit-transition: all .4s;
  transition: all .4s;
  border-radius: 15px;
}
.hpl-item a:hover img{
	/*  -webkit-transition: all .4s;
  transition: all .4s;
  transform: scale3d(1.2,1.2,1);*/
  
  transform: scale3d(1.2,1.2,1);
    transition: transform .8s, filter 1.5s ease-in-out;
}

.mh-products-list a:hover img{
	transform: scale3d(1.2,1.2,1);
    transition: transform .8s, filter 1.5s ease-in-out;
}
.hpl-item a:hover
{
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
			  -webkit-transition: all .4s;
  transition: all .4s;
}
.hpl-item a:hover:before, .hpl-item a:hover:after
{
  content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:0;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
	  -webkit-transition: all .4s;
  transition: all .4s;
}
.hpl-item a:hover:after
{
  right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}

.hpl-title{
	width:100%;
	padding:0 30px;
	position:absolute;
	font-family: 'Raleway', sans-serif;
	left:0;
	right:0;
	margin:auto;
	top:46px;
	text-align:center;
	color:#494d4e;
	font-size:24px;
	font-weight:600;
	letter-spacing:0;
	line-height:27px;
	 -webkit-transition: all .4s;
  transition: all .4s;
}
.hpl-item:hover .hpl-title{
	color:#36393a;
	 -webkit-transition: all .4s;
  transition: all .4s;
}

.view-all{
	border-radius: 17px;
	color: #ffffff;
	background-color: #1373a7;
	width:190px;
	max-width:90%;
	border:0px;
	padding-right: 35px;
	padding-left: 35px;
	padding-top: 11px;
	padding-bottom: 10px;
	text-align:center;
	margin:37px auto 0 auto;
	cursor:pointer;
	  -webkit-transition: all .4s;
  transition: all .4s;
}
.view-all span{
	line-height:19px;
	color:#ffffff;
	font-size:18px;
	font-weight:700;
	letter-spacing:0;
	font-family: 'Raleway', sans-serif;

}
.view-all span.hidden-view-all{
	display:none;
}
.view-all:hover{
	color:#ffffff;
	background:#3366cc;
	  -webkit-transition: all .4s;
  transition: all .4s;
}
.view-all:hover span{
	color:#ffffff;
}
.hpl-item.hidden-hpl-item{
	display:none;
}
.chosen-products{
	width:100%;
	background:#ffffff;
	padding:68px 0;
}
.cp-head{
	padding:0 0 37px 0;
}
.cp-title{
	margin:0 0 10px 0;
	line-height:54px;
	color:#494d4e;
	letter-spacing:0;
	font-weight:400;
	font-size:48px;
	font-family: 'Raleway', sans-serif;
	width:100%;
	text-align:center;
	
}
.cp-shorttitle{
	margin:0 0 0 0;
	line-height:23px;
	color:#494d4e;
	letter-spacing:0.5px;
	font-weight:300;
	font-size:20px;
	font-family: 'Raleway', sans-serif;
	width:100%;
	text-align:center;
}
.cp-list {
    margin-left: -6px;
    margin-right: -6px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.cp-item{
	padding:0 6px;
	width:30.33%;
	position:relative;
}
.cp-item a{
	width:100%;
}
.cpi-img{
	
	background: #ffffff;
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;

}
.cpi-img-inner{
	/*width:100%;*/
	height:100%;
	overflow:hidden;
	text-align-last: center;
}
.cpi-img-inner img{
	width:100%;
	  -webkit-transition: all .4s;
  transition: all .4s;

}
/*.cp-item a:hover img{
	  -webkit-transition: all .4s;
  transition: all .4s;
  transform: scale3d(1.1,1.1,1);
}
.cp-item a:hover .cpi-img{
	     box-shadow: 0 4px 3px -3px #c1c1c16b;
}*/

.cpi-text{
	padding:7px 25px 73px 25px;
	margin:0 0 0 0;
}
.cpi-title{
	margin:0 0 24px 0;
	line-height:20px;
	color:#494d4e;
	letter-spacing:0px;
	font-weight:600;
	font-size:18px;
	font-family: 'Raleway', sans-serif;
	width:100%;
	text-align:center;
}
.cpi-desc{
	margin:0 0 0 0;
	line-height:30px;
	color:#666666;
	letter-spacing:0px;
	font-weight:400;
	font-size:18px;
	font-family: 'Raleway', sans-serif;
	width:100%;
	text-align:center;
}
.cpi-btn{
	background-color: #1377a7;
	width:156px;
	max-width:100%;
	text-align:center;
	border-radius: 23px;
	padding:12px 15px 12px 15px;
	line-height:20px;
	color:#ffffff;
	letter-spacing:0px;
	font-weight:600;
	font-size:14px;
	font-family: 'Raleway', sans-serif;
	margin:0 auto;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	 -webkit-transition: all .4s;
  transition: all .4s;
  cursor:pointer;
}
.cpi-btn:hover{
	background:#1377a7;
	  -webkit-transition: all .4s;
  transition: all .4s;
  color:#ffffff;
}
.form-group input[type=text]
{
	-webkit-border-radius: 25px;
	border-radius: 25px;
}
.form-group input[type=tel]
{
	-webkit-border-radius: 25px;
	border-radius: 25px;
	
}
.form-group input[type=email]
{
	-webkit-border-radius: 25px;
	border-radius: 25px;
	
}
.vr {
	border-left: 1px solid #d8d4d4;
	height: 500px;
}
/* MEDIA */
@media (max-width:1669px) {
	.hpl-item{
		padding:0 0px;
	}
	.hpl-item a{
		width:90%;
	}
	.hpl-logo{
		margin-top:417px;
		margin-left:27px;
	}
	.main-slider-text {
		padding: 0 0 0 180px;
	}

	.main-slider-content-img {
		left: 880px;
		padding-left: 100px;
	}
		.main-slider-content-img img {
			max-height: 400px;
		}
}
@media (max-width:1509px){
	.hpl-item{
		width:333px;
	}
	.hpl-logo{
		margin-top:376px;
		margin-left:21px;
		width:255px;
	}
	.main-slider-text{
		padding:0 0 0 150px;
	}
	.main-slider-content-img{
		left:865px;
	}
}
@media (max-width: 1449px) {
	.main-slider-text {
		padding: 0 0 0 220px;
		}
	.main-slider-content-img {
		left:720px;
		transform:scale(0.8);
	}
	.main-slider-img img {
		/*width: auto;*/
		height: 560px;
		/*margin-left: 100%;*/
		/*transform: translateX(-50%);*/
	}
	.main-slider .owl-dots{
		left:220px;
	}
  }

@media (max-width: 1380px) {
	.hpl-title {
    font-size: 19px;
    line-height: 20px;
}
.main-slider-short {
    font-size: 50px;
}
.main-slider-title {
    font-size: 22px;
}
.hpl-item {
    width: 285px;
}
.hpl-logo{
	margin-top:317px;
	margin-left:14px;
	width:230px;
}
.main-slider-text {
	padding: 0 0 0 200px;
	}
	.main-slider .owl-dots{
		left:200px;
	}
.main-slider-content-img {
	left:580px;
	transform:scale(0.7);
}
.main-slider-img img {
    /*width: auto;*/
    height: 560px;
    /*margin-left: 100%;*/
    /*transform: translateX(-50%);*/
}
 }

@media (max-width: 1199px) {


.fixed-scroll {
    left: -18px;
}
.main-slider-text {
	padding: 0 0 0 100px;
	}
	.main-slider .owl-dots{
		left:100px;
	}
.main-slider-content-img {
	left:480px;
	transform:scale(0.7);
}
	.main-slider-img img {
		/*width: auto;*/
		height: 560px;
		/*margin-left: 100%;*/
		/*transform: translateX(-50%);*/
	}
.hpl-item {
    width: 237px;
}
.hpl-logo{
	margin-top:266px;
	margin-left:18px;
	width:177px;
	font-size:11px;
	padding-top:12px;
	padding-bottom:12px;
}
}
@media (max-width: 991px) {

.main-slider-short {
    font-size: 38px;
	line-height:42px;
	
}
.main-slider-title {
    font-size: 19px;
	line-height:22px;
}
.main-slider .owl-dots {
    bottom: 20px;
	top:unset;
}
.main-slider-text {
	padding: 0 0 0 70px;
	}
	.main-slider .owl-dots{
		left:70px;
	}
.main-slider-content-img {
	left:380px;
	transform:scale(0.6);
}
	.main-slider-img img {
		/*width: auto;*/
		height: 560px;
		/*margin-left: 100%;*/
		/*transform: translateX(-50%);*/
	}
	.hpl-item {
		width: 194px;
	}

	.hpl-logo {
		margin-top: 215px;
		margin-left: 9px;
		width: 157px;
		font-size: 9px;
		padding-top: 10px;
		padding-bottom: 10px;
	}
  }
@media(max-width:991px){
	
	.main-slider-short {
    margin: 0 0 30px 0;
}
h1.hpr-title,.cp-title {
    font-size: 35px;
	line-height:40px;
}
.cpi-desc {
	font-size:14px;
	line-height:18px;
}
.cpi-btn {
    width: 174px;
    line-height: 18px;
    font-size: 16px;
}

}
@media(max-width:860px){
	.main-slider-content-img {
		left:330px;
		transform:scale(0.6);
	}
	.main-slider-img img {
		/*width: auto;*/
		height: 560px;
		margin-left: 100%;
		/*transform: translateX(-50%);*/
	}
	
	
}
@media(max-width:795px) and (min-width:768px){
	
	
}
@media (max-width: 767px) {
	.home-product-list {
		flex-direction: column;
		align-items: center;
	}
	.hpl-item {
		width: 240px;
		position: relative;
	}
		.hpl-item a {
			width: 100%;
		}
	.hpl-logo {
		margin: auto;
		bottom: -16px;
		left: 0;
		right: 0;
	}
.main-slider-short {
    font-size: 30px;
	line-height:22px;
	
}
	.main-slider-title {
		font-size: 16px;
		line-height: 20px;
		margin-top: 240px;
	}

.main-slider-img{
	overflow:visible;
}
.main-slider-img img {
    width:100%;
    height: 560px;
	margin-right: 0;
	background-repeat: no-repeat;
    transform: translateX(100%);
}
.cpi-title {
    margin: 0 0 13px 0;
    line-height: 20px;
    min-height: 41px;
	 font-size: 13px;
}
.cpi-btn {
    width: 155px;
    line-height: 18px;
    font-size: 14px;
}
	.main-slider-content-img {
		left: 63px;
		transform: scale(0.6);
		transform-origin: top left;
		top: -30px;
		right: unset;
		padding: 0;
		position: relative;
	}
  }
@media (max-width: 690px){
	.main-slider-content-img {
		/*left:230px;*/
		transform:scale(0.6);
	}
	.main-slider-text {
		padding: 0 0 0 40px;
		}
	.main-slider .owl-dots{
			left:40px;
		}
}
@media (max-width: 590px) {
	
  }
  @media(max-width:560px){
/*	.hpl-logo {
		width: 157px;
		border-radius: 17px;
		padding-top: 11px;
		padding-bottom: 11px;
		margin-top: 201px;
		margin-left: 2px;
		font-size: 11px;
	}*/
	.cpi-img {
		height: auto;
	}
	.vr{
		display:none;
	}
.cp-item {
    width: 100%;
	margin-bottom:42px;
}
h1.hpr-title, .cp-title {
    font-size: 26px;
    line-height: 28px;
}
h2.hpr-short-title,.cp-shorttitle {
   font-size:18px;
   line-height:20px;
}
.main-slider-content-img {
	/*left:92px;*/
	transform:scale(0.5);
	z-index:-1;
}
.main-slider-text {
	padding: 0 0 0 20px;
	}
.main-slider .owl-dots{
		left:20px;
	}

  }
@media (max-width: 480px) {
.main-slider-img img {
    height: 360px;
}
.main-slider-short {
    font-size: 24px;
    line-height: 22px;
}
h1.hpr-title, .cp-title {
    font-size: 22px;
    line-height: 24px;
}
h2.hpr-short-title,.cp-shorttitle {
   font-size:16px;
   line-height:18px;
}
/*.hpl-item {
    width: 50%;
}*/
}
@media (max-width:475px){
	
}
@media(max-width:450px){

}
@media(max-width:412px){
	
}

@media(max-width:360px){
/*	.hpl-item {
    width: 50%;
*/}
}
