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

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

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

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

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

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

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

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

.container {
    margin: 0 auto;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    white-space: nowrap;
}

/* Cookie-policy */
.cookie-policy-pop {
    position: fixed;
    z-index: 999;
    bottom: -100%;
    left: 0;
    right: 0;
    margin: auto;
    background: #FAFAFA;
    height: 70px;
    padding: 0 16px 0;
    display: flex;
    align-items: center;
    transition: 0.4s all;
    overflow: hidden;
}

    .cookie-policy-pop.opened {
        bottom: 0
    }

.cookie-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: -.25px;
    color: #666;
    width: calc(100% - ( 175px + 115px))
}

    .cookie-text > a {
        font-weight: 500;
        color: #333;
        letter-spacing: normal;
        text-decoration: underline
    }

.cookie-reject-all {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 15px;
    margin: 0 4px;
    position: relative;
    text-align: center;
    background: #E30613;
}

.cookie-reject-all-modal {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 0;
    height: 40px;
    margin: 0 4px;
    position: relative;
    top: -4px;
    text-align: center;
    min-width: 150px;
    background: #E30613;
}

.cookie-accept {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 15px;
    text-align: center;
    margin: 0 4px;
    position: relative;
    background: #009FE3;
}

.cookie-accept-modal {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 0;
    text-align: center;
    height: 40px;
    margin: 0 30px 0 4px;
    position: relative;
    top: -4px;
    min-width: 120px;
    background: #009FE3;
}

.cookie-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 6px;
    cursor: pointer;
    background: #EAEAEA;
    font-size: 20px;
    line-height: 0
}
/*SEARCH*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hsr-list {
    padding: 0 0;
}

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

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

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

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

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

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

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

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

/*SEARCH*/
/* MAIN HEADER */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.mh-top {
    background: #be0d15;
    background: linear-gradient(90deg, #be0d15 0%, #ee1c25 100%);
}

    .mh-top .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.hdr-lang-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 130px;
    height: 38px;
    color: #fff;
    background: rgba(42, 42, 42, 0.3);
    padding: 0 13px;
    border: none;
    outline: none;
}

    .hdr-lang-button img {
        width: 10px;
    }

.hdr-lang-list {
    background: #99171d;
}

.hdr-lang .dropdown-menu {
    width: 100%;
}

    .hdr-lang .dropdown-menu a {
        display: block;
        color: #fff;
        padding: 10px 13px;
        transition: all 0.4s;
    }

        .hdr-lang .dropdown-menu a:hover {
            background-color: #8e0f14;
        }

.mh-top-right {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.hdr-link-wrapper,
.hdr-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.hdr-link-list {
    margin-right: 30px;
}

.hdr-link {
    color: #fff;
    margin-right: 20px;
}

    .hdr-link img {
        width: 14px;
        margin-right: 8px;
    }

.hdr-office-button {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 208px;
    height: 38px;
    color: #fff;
    background: rgba(42, 42, 42, 0.3);
    padding: 0 15px 0 20px;
    border: none;
    outline: none;
}

    .hdr-office-button img {
        width: 10px;
    }

    .hdr-office-button::before {
        content: "";
        position: absolute;
        left: -7px;
        top: 50%;
        margin-top: -4.5px;
        display: inline-block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7.5px 7px 7.5px 0;
        border-color: transparent rgba(42, 42, 42, 0.3) transparent transparent;
    }

.hdr-office .dropdown-menu {
    width: 100%;
    left: auto;
    right: 0;
    background-color: #ab1e25;
}

    .hdr-office .dropdown-menu a {
        display: block;
        color: #fff;
        padding: 5px 15px 5px 20px;
    }

        .hdr-office .dropdown-menu a:hover {
            background-color: #8e0f14;
        }

.hdr-search-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 38px;
    /*background-color: #ac1f2b;*/
    background: linear-gradient(0deg,#be0d15 0%,#ee1c25 100%);
    border: none;
    outline: none;
    padding: 0;
}

    .hdr-search-button img {
        width: 19px;
    }

.hdr-search-content :-ms-input-placeholder {
    color: #fff;
}

.hdr-search-content ::-ms-input-placeholder {
    color: #fff;
}

.hdr-search-content ::placeholder {
    color: #fff;
}

.hdr-search-content ::-webkit-input-placeholder {
    color: #fff;
}

.hdr-search-content ::-moz-placeholder {
    color: #fff;
}

.hdr-search-content :-ms-input-placeholder {
    color: #fff;
}

.hdr-search-content :-moz-placeholder {
    color: #fff;
}

.hdr-search-content {
    position: absolute;
    right: 45px;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #9b1b20;
    display: flex;
    transform: scaleX(0);
    transform-origin: right center;
    transition: all 0.3s ease-out;
    pointer-events: none;
}

    .hdr-search-content.active {
        transform: scaleX(1);
        pointer-events: inherit;
    }

    .hdr-search-content input {
        width: 100%;
        height: 100%;
        color: #fff;
        line-height: 38px;
        border: none;
        background-color: #9b1b20;
        outline: none;
        padding: 0 20px;
    }

    .hdr-search-content button {
        width: 100px;
        height: 100%;
        color: #fff;
        background-color: #a81c22;
        border: none;
        outline: none;
    }

        .hdr-search-content button:hover {
            background-color: #86161b;
        }

.mh-bottom {
    padding-top: 15px;
}

    .mh-bottom .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

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

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

.main-nav-link {
    position: relative;
    display: inline-block;
    color: #fff;
    font-family: "Roboto Cn";
    font-size: 16px;
    font-weight: 700;
    padding: 0 25px 15px;
    transition: all 0.3s;
}

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

    .main-nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        border-top: 5px solid #e30613;
        opacity: 0;
        transition: all 0.3s;
    }

.main-nav > ul > li:hover .main-nav-link::after {
    opacity: 1;
}

.has-submenu {
    position: relative;
}

.main-nav > ul:hover li:not(:hover) .main-nav-link {
    opacity: 0.5;
}

.submenu {
    position: absolute;
    left: 15px;
    background-color: rgba(19, 31, 45, 0.8);
    white-space: nowrap;
    min-width: 245px;
    min-height: 265px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    z-index: 5;
}

    .submenu ul li,
    .submenu ul a {
        display: block;
    }

    .submenu ul li {
        margin-bottom: 12px;
    }

        .submenu ul li a {
            position: relative;
            color: #fff;
            font-size: 16px;
            padding-left: 25px;
        }

            .submenu ul li a::before {
                content: "";
                position: absolute;
                left: 0;
                top: 6px;
                width: 10px;
                height: 10px;
                border: 1px solid #ed1c24;
                border-radius: 50%;
                transition: all 0.4s;
            }

            .submenu ul li a:hover::before {
                background-color: #ed1c24;
            }

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.3s;
}

/* FIXED SOCIAL */
.fixed-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #08192b;
    z-index: 30;
}

    .fixed-social a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.3s;
    }

        .fixed-social a img {
            height: 16px;
        }

        .fixed-social .twitter img{
            height:25px;
        }

    .fixed-social .facebook:hover {
        background-color: #3b579d;
    }
    .fixed-social .twitter:hover {
        background-color: #1da1f3;
    }
    .fixed-social .instagram:hover {
        background-color: #c90f7c;
    }

    .fixed-social .youtube:hover {
        background-color: #ff0000;
    }

    .fixed-social .linkedin:hover {
        background-color: #007bb6;
    }

/* FIXED LINKS */
.fixed-links {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
}

.fixed-link-item a {
    display: block;
    position: relative;
    width: 50px;
    text-align: center;
    background: #be0d15;
    background: linear-gradient(0deg, #be0d15 0%, #ee1c25 100%);
    height: 155px;
}

    .fixed-link-item a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -17px;
        width: 40px;
        height: 40px;
        transform: translateY(-50%);
        background: #d8161e;
        border-radius: 50%;
        z-index: -1;
    }

    .fixed-link-item a::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -17px;
        width: 17px;
        height: 40px;
        transform: translateY(-50%);
        background: url("/Content/WebsiteTemplate/img/chevron-left-white.svg") no-repeat 50% 50%;
        border-radius: 50%;
        background-size: 8px;
        z-index: -1;
        transition: all 0.3s ease-out;
    }

    .fixed-link-item a span {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.5px;
        text-align: center;
        -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
        transform: rotate(180deg) translateY(0);
        margin: 0;
        z-index: 1;
    }

    .fixed-link-item a img {
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 15px;
    }

.fixed-link-item.tracking a span {
    bottom: 40px;
}

.fixed-link-item {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    transition: all 0.4s;
}

    .fixed-link-item.tracking.active {
        transform: translateX(-350px);
    }

        .fixed-link-item.tracking.active a::after {
            transform: translateY(-50%) translateX(3px) rotate(180deg);
        }

.fixed-links-form {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    width: 350px;
    padding: 15px;
    background: #be0d15;
    background: linear-gradient(0deg, #be0d15 0%, #ee1c25 100%);
}

    .fixed-links-form input {
        height: 40px;
        line-height: 38px;
        padding-left: 15px;
        font-size: 16px;
        font-family: inherit;
        border: 1px solid #d2d2d2;
        width: 100%;
    }

    .fixed-links-form button {
        width: 70px;
        height: 40px;
        display: block;
        border: 0;
        padding: 0;
        background: #ec1b24;
        outline: none;
        cursor: pointer;
        transition: all .4s;
        margin-left: 15px;
    }

        .fixed-links-form button img {
            width: 18px;
            height: 18px;
        }

.fixed-form-inner {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.fixed-form-title {
    color: #fff;
    font-weight: 500;
    /*font-size: 13px;*/
    width: 100%;
    margin-bottom: 20px;
}

/* FIXED FORM */
.fixed-offer-form {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 370px;
    background-color: #fff;
    padding: 110px 43px;
    transform: translateX(100%);
    transition: all 0.4s ease-out;
    z-index: 33;
    overflow-y: auto;
}

    .fixed-offer-form.visible {
        transform: none;
    }

.fof-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 43px;
    height: 43px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #e93b43;
    cursor: pointer;
}

.fixed-offer-form-title {
    color: #131f2d;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fof-wrapper .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.fof-wrapper :-ms-input-placeholder {
    color: #6c7279;
}

.fof-wrapper ::-ms-input-placeholder {
    color: #6c7279;
}

.fof-wrapper ::placeholder {
    color: #6c7279;
}

.fof-wrapper ::-webkit-input-placeholder {
    color: #6c7279;
}

.fof-wrapper ::-moz-placeholder {
    color: #6c7279;
}

.fof-wrapper :-ms-input-placeholder {
    color: #6c7279;
}

.fof-wrapper :-moz-placeholder {
    color: #6c7279;
}

.fof-wrapper .item {
    width: 100%;
    padding: 0 10px;
}

.fof-wrapper .form-group {
    margin-bottom: 10px;
}

.fof-wrapper input,
.fof-wrapper select,
.fof-wrapper textarea {
    width: 100%;
    height: 50px;
    line-height: 48px;
    color: #6c7279;
    border: 1px solid #f1f1f1;
    background: #fff;
    padding: 0 22px;
    outline: none;
}

.fof-wrapper select {
    background: #fff url("/Content/WebsiteTemplate/img/select-arrow.png") no-repeat right 22px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    .fof-wrapper select::-ms-expand {
        display: none;
    }

.fof-wrapper textarea {
    height: auto;
    resize: none;
    line-height: 1.5;
    padding-top: 15px;
}

.fof-wrapper .checkbox {
    margin: 20px 0 0 10px;
}

.fof-send {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    background-color: #ed1c24;
    border: none;
    outline: none;
    padding: 14px 10px;
    margin-top: 10px;
    transition: all 0.3s;
}

    .fof-send:hover {
        background-color: #c5171d;
    }

.checkbox {
    position: relative;
}

    .checkbox input {
        display: none;
    }

    .checkbox label {
        display: inline-block;
        position: relative;
        color: #6c7279;
        padding-left: 30px;
        min-height: 20px;
    }

        .checkbox label a {
            color: #6c7279;
        }

        .checkbox label::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 1px solid #b5b5b5;
        }

        .checkbox label::after {
            content: "";
            position: absolute;
            left: 4px;
            top: 4px;
            width: 12px;
            height: 12px;
            background: url("/Content/WebsiteTemplate/img/red-check.svg") no-repeat 50% 50%;
            transform: scale(0);
            transform-origin: 50% 50%;
            transition: all .1s;
        }

    .checkbox input:checked ~ label::after {
        transform: scale(1);
    }

    .checkbox input:checked ~ label::before {
        border-color: #ed1c24;
    }

/* FOOTER */
.main-footer {
    border-top: 6px solid #ed1c24;
    background: url("/Content/WebsiteTemplate/img/footer-bg.jpg") no-repeat 50% 50%;
    background-size: cover;
    padding: 90px 0 30px;
}

.mf-top .container {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 200px;
}

.mft-link-list li,
.mft-link-list li span {
    display: block;
}

.mft-link-list li {
    color: #ccc;
    font-family: "Roboto Cn";
    line-height: 1.5;
    margin-bottom: 7px;
}

    .mft-link-list li span {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .mft-link-list li a {
        color: #ccc;
    }

    .mft-link-list li i {
        color: #ed1c24;
        font-style: normal;
    }

.mft-link {
    display: block;
    color: #ccc;
    font-family: "Roboto Cn";
    font-size: 16px;
}

    .mft-link.has-dot {
        position: relative;
        padding-left: 25px;
    }

        .mft-link.has-dot::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            width: 10px;
            height: 10px;
            border: 1px solid #ed1c24;
            border-radius: 50%;
            transition: all 0.4s;
        }

        .mft-link.has-dot:hover::before {
            background-color: #ed1c24;
        }

.mf-social {
    padding: 40px 0 15px;
}

.mf-social-list ul li,
.mf-social-list ul li a {
    display: inline-block;
    color:#fff;
    transition: 0.3s all;
}

    .mf-social-list ul li a:hover {
        color: #E30613;
    }

    .mf-social-list ul li img {
        height: 16px;
        filter: brightness(0.7);
        margin-right: 19px;
        transition: all 0.3s;
    }
    .mf-social-list ul li.f-twitter img {
        height: 24px;
    }
        .mf-social-list ul li img:hover {
            filter: none;
        }

.mf-bottom {
    border-top: 1px solid #1b2a39;
    padding-top: 20px;
}

    .mf-bottom .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.mf-copyright {
    width: 50%;
    color: #a6a6a6;
}

    .mf-copyright a {
        display: inline-block;
        color: #a6a6a6;
        padding: 5px;
        transition: all 0.4s;
    }

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

.mf-copyright-item {
    display: inline-block;
}

    .mf-copyright-item:first-child {
        margin-right: 10px;
    }

.mf-company-list {
    position: absolute;
    right: 0;
    top: -167px;
    width: 130px;
    background-color: #fff;
    z-index: 5;
}

    .mf-company-list ul li {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-bottom: 1px solid #e6e6e6;
        height: 120px;
    }

        .mf-company-list ul li:last-child {
            border-bottom: 4px solid #019de1;
        }

        .mf-company-list ul li img {
            width: 80px;
        }

.mf-company-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    background-color: #e40615;
    text-align: center;
    padding: 5px;
    min-height: 77px;
}

.mf-development {
    width: 50%;
    text-align: right;
}

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

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

    .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;
        transition: all .4s;
    }

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

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

.mobile-menu {
    display: none;
    background-color: #ed1c24;
    padding-bottom: 25px;
    padding-top: 50px;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 300;
    height: 100%;
    overflow: auto;
    transform: translateX(100%);
    transition: all ease-in .2s;
}

    .mobile-menu.active {
        transition: all ease-out .3s;
    }

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

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

.hamburger-menu {
    display: none;
}

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

/*MEDIA*/
@media (max-width: 1229px) {
    .logo {
        width: 100px;
    }
}

@media (max-width: 991px) {
    .cookie-policy-pop {
        flex-wrap: wrap;
        height: 140px;
        justify-content: flex-end
    }

    .cookie-text {
        width: 100%
    }
    .hdr-office {
        display: none;
    }

    .main-nav-link {
        font-size: 14px;
        padding: 0 20px;
    }

    .mft-item {
        margin-bottom: 20px;
    }

    .mft-link-list li span {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 30px;
    }

    .main-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mh-top,
    .main-nav,
    .fixed-social {
        display: none;
    }

    .fixed-links {
        position: fixed;
        top: auto;
        bottom: 0;
        transform: none;
        z-index: 30;
    }

    .fixed-link-item a {
        width: 30px;
        height: 120px;
    }

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

    .mf-top .container {
        display: block;
        padding-right: 30px;
    }

    .mf-company-list {
        position: static;
        width: auto;
    }

        .mf-company-list ul {
            display: -ms-flexbox;
            display: flex;
        }

            .mf-company-list ul li {
                width: 50%;
            }

    .mf-bottom .container {
        display: block;
    }

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

    .fixed-offer-form {
        width: 100%;
    }

    .fixed-links-form {
        left: 30px;
    }

    .fixed-links-form {
        width: 270px;
    }

    .fixed-link-item.tracking.active {
        transform: translateX(-270px);
    }

    .mf-copyright-item {
        display: block;
    }

        .mf-copyright-item:first-child {
            margin-right: 0;
        }
}

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

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

@media (min-width: 1230px) {
    .container {
        width: 1200px;
    }
}

/**
 * Owl Carousel v2.3.3
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item 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(../plugins/owl-carousel/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%}

.toast-title {
  font-weight: 500;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -25px;
  top: 3px;
  float: right;
  font-size: 30px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
.rtl .toast-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 35px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  text-align: center;
}
#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}
#toast-container > div:hover {
  /*-moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);*/
  cursor: pointer;
}
/*#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}*/
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

/*
  **SADECE ANASAYFAYA AIT CSS**
*/
/* Cookie-policy */
.cookie-policy-pop {
    position: fixed;
    z-index: 999;
    bottom: -100%;
    left: 0;
    right: 0;
    margin: auto;
    background: #FAFAFA;
    height: 70px;
    padding: 0 16px 0;
    display: flex;
    align-items: center;
    transition: 0.4s all;
    overflow: hidden;
}

    .cookie-policy-pop.opened {
        bottom: 0
    }

.cookie-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: -.25px;
    color: #666;
    width: calc(100% - ( 175px + 115px))
}

    .cookie-text > a {
        font-weight: 500;
        color: #333;
        letter-spacing: normal;
        text-decoration: underline
    }

.cookie-option {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 11px;
    width: auto;
    margin: 0 4px;
    position: relative;
    text-align: center;
    text-wrap: nowrap;
    background: #A71C22;
}
.cookie-reject-all {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 15px;
    margin: 0 4px;
    position: relative;
    text-align: center;
    background: #E30613;
}

.cookie-reject-all-modal {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 0;
    height: 40px;
    margin: 0 4px;
    position: relative;
    top: -4px;
    text-align: center;
    min-width: 150px;
    background: #E30613;
}


.cookie-accept {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 15px;
    text-align: center;
    margin: 0 4px;
    position: relative;
    background: #009FE3;
}

.cookie-accept-modal {
    font-size: 14px;
    font-weight: 500;
    color: #fafafa;
    padding: 10px 0;
    text-align: center;
    height: 40px;
    margin: 0 30px 0 4px;
    position: relative;
    top: -4px;
    min-width: 120px;
    background: #009FE3;
}

.cookie-close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 6px;
    cursor: pointer;
    background: #EAEAEA;
    font-size: 20px;
    line-height: 0
}
    .cookie-close svg {
        width: 15px;
    }
/* MAIN SLIDER */
.home-top {
    position: relative;
}

.main-slider {
    background: #252f3a url("/Content/WebsiteTemplate/img/iframe-loader.gif") no-repeat 50% 50%;
}

    .main-slider .item {
        position: relative;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 50%;
    }

        .main-slider .item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1;
            background-color: #252f3a;
            background: linear-gradient(0deg, rgba(37, 47, 58, 0) 0%, #252f3a 100%);
            height: 50%;
        }

    .main-slider .owl-dots {
        position: absolute;
        left: 65px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 16px;
    }

    .main-slider .owl-dot {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #fff;
        border: none;
        outline: none;
        padding: 0;
        margin-bottom: 10px;
    }

        .main-slider .owl-dot::after {
            content: "";
            display: block;
            width: 6px;
            height: 6px;
            background-color: #ed1c24;
            border-radius: 50%;
            transform: scale(0);
            transition: all .4s ease-out
        }

        .main-slider .owl-dot:hover::after,
        .main-slider .owl-dot.active::after {
            transform: scale(1.8);
        }

    .main-slider .item .container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 3;
    }

.slide-text {
    overflow: hidden;
}

.slide-title {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    transform: translateY(-100%);
    transition: transform .6s cubic-bezier(.6,-.28,.735,.045);
    margin-bottom: 23px
}

.slide-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 108px;
    overflow: hidden;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 780px;
    transform: translateX(-100%);
    transition: transform .6s cubic-bezier(.6,-.28,.735,.045)
}

.active .slide-title,
.active .slide-desc {
    transform: none;
    transition: transform .8s cubic-bezier(.8,.885,.32,1.275) .8s
}

    .incoterms {
        position: absolute;
        right: 0;
        bottom: 100px;
        padding-right: 120px;
        z-index: 10;
    }

    .incoterms::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -1px;
        border-top: 1px solid #fff;
        width: 120px;
    }

    .incoterms a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
    }

.incoterms-title {
    display: inline-block;
    margin-right: 25px;
}

.incoterms-circle {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #fff;
}

    .incoterms-circle::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border-right: 1px solid transparent;
        border-bottom: 3px solid #fff;
        border-left: 1px solid transparent;
        border-top: 1px solid transparent;
        border-radius: 50px;
        transform-origin: 50% 50%;
        transform: translate(-50%, -50%) rotate(110deg);
        transition: all 0.4s ease-out;
    }

    .incoterms-circle::after {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        background-color: #ed1c24;
        border-radius: 50%;
        transition: all 0.4s ease-out;
    }

.incoterms a:hover .incoterms-circle::after {
    transform: scale(1.8);
}

.incoterms a:hover .incoterms-circle::before {
    transform: translate(-50%, -50%) rotate(360deg);
}

/* HOME TRACKING FORM */
.home-tracking {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 75px;
    z-index: 4;
}

.home-tracking-form {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #ed1c24;
    max-width: 680px;
    padding: 18px 100px 18px 30px;
}

.home-tracking-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.header-search ::-webkit-input-placeholder {
    color: #aaa;
}

.header-search ::-moz-placeholder {
    color: #aaa;
}

.header-search :-ms-input-placeholder {
    color: #aaa;
}

.header-search :-moz-placeholder {
    color: #aaa;
}

.home-tracking-input {
    width: 380px;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    border: none;
    padding-left: 15px;
}

.home-tracking-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    width: 81px;
    background: #d0141c;
    border: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    outline: none;
    transition: all ease-out 0.3s;
}

    .home-tracking-submit img {
        width: 13px;
    }

    .home-tracking-submit:hover {
        background: #b91219;
    }

/* HOME ABOUT */
.about {
    background: #08192b url("/Content/WebsiteTemplate/img/world-map-img.png") no-repeat 50% 50%;
    padding: 105px 0 190px;
}

    .about .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.about-left,
.about-right {
    width: 50%;
}

.about-left {
    color: #fff;
}

.about-title {
    font-family: 'Roboto Cn';
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 20px;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-link {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 5px 5px 5px 0;
}

    .about-link img {
        width: 18px;
        margin-left: 25px;
        transition: all ease-out 0.3s;
    }

    .about-link:hover img {
        transform: translateX(-15px);
    }

.about-right {
    text-align: right;
    padding-left: 30px;
}

    .about-right img {
        max-width: 100%;
        border-top: 5px solid #ed1c24;
    }

/* HOME SERVICES */
.services {
    padding: 0 0 90px;
}

    .services .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
    }

.services-left {
    width: 25.8%;
}

.services-right {
    position: relative;
    width: 74.2%;
    padding-left: 10px;
    margin-top: -80px;
}

.services-text {
    display: inline-block;
}

.services-title {
    color: #131f2d;
    font-family: "Roboto Cn";
    font-size: 48px;
    font-weight: 400;
    margin: 0;
}

.services-desc {
    color: #131f2d;
    font-size: 16px;
    margin-bottom: 40px;
}

.services-desc p {
    margin: 0;
}

.services-slider-arrows {
    text-align: center;
}

    .services-slider-arrows .owl-next,
    .services-slider-arrows .owl-prev {
        display: inline-block;
        border: none;
        background: none;
        padding: 0;
        outline: none;
    }

        .services-slider-arrows .owl-next svg,
        .services-slider-arrows .owl-prev svg {
            width: 25px;
            height: 28px;
        }

        .services-slider-arrows .owl-next:hover svg,
        .services-slider-arrows .owl-prev:hover svg {
            fill: #333;
        }

    .services-slider-arrows .owl-prev {
        margin-right: 40px;
    }

.services-slider .owl-stage-outer {
    margin: -19px;
    padding: 19px;
    width: calc(100% + 28px);
}

.services-slider-item {
    margin-bottom: 35px;
    box-shadow: 0 0 24px 0 rgba(8, 25, 43, 0.15);
    opacity: 0;
    transition: all ease-out 0.3s;
}

.services-slider-img img {
    width: 100%;
}

.services-slider-text {
    min-height: 225px;
    padding: 20px;
    transition: all ease-out 0.3s;
}

.services-slider-title {
    color: #131f2d;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px;
    transition: all ease-out 0.3s;
}

.services-slider-desc {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    max-height: 132px;
    overflow: hidden;
    color: #131f2d;
    line-height: 1.6;
    transition: all ease-out 0.3s;
}

.active .services-slider-item {
    opacity: 1;
}

.services-slider-item:hover .services-slider-text {
    background-color: #dc2a2a;
}

.services-slider-item:hover .services-slider-desc,
.services-slider-item:hover .services-slider-title {
    color: #fff;
}

/* HOME ADVANTAGES */
.advantages {
    padding-bottom: 120px;
    overflow: hidden;
}

    .advantages .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.advantages-left {
    position: relative;
    width: 25.8%;
}

    .advantages-left::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: -150vw;
        background-color: #dc2a2a;
    }

.advantages-heading {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -7px;
    color: #fff;
    font-size: 45px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    margin: 0;
    z-index: 1;
}

.advantages-right {
    width: 74.2%;
}

.advantages-list .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -10px;
}

.advantages-item {
    width: 33.33%;
    text-align: center;
    padding: 0 10px;
}

    .advantages-item:nth-child(-n+3) {
        margin-bottom: 65px;
    }

.advantages-content {
    display: inline-block;
    width: 139px;
}

.advantages-icon {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 89px;
    height: 89px;
    background: url(/Content/WebsiteTemplate/img/circle1.png) no-repeat 50% 50%;
    margin: 0 auto 20px;
}

    .advantages-icon::after {
        content: "";
        position: absolute;
        left: 0;
        width: 89px;
        height: 89px;
        background: url(/Content/WebsiteTemplate/img/circle2.png) no-repeat 50% 50%;
        top: 0;
        transition: all 0.3s ease-out;
    }

    .advantages-icon img {
        max-width: 100%;
    }

.advantages-content:hover .advantages-icon::after {
    transform: rotate(55deg);
}

.advantages-title {
    color: #131f2d;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.4px;
    transition: all 0.3s;
}

.advantages-content:hover .advantages-title {
    color: #dc2a2a;
}

/* GET OFFER */
.get-offer {
    overflow: hidden;
}

    .get-offer .container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.get-offer-left {
    position: relative;
    width: 74.2%;
}

.get-offer-img {
    position: absolute;
    top: 0;
    right: 0;
    left: -19vw;
    bottom: 0;
    z-index: -1;
}

    .get-offer-img::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(42, 42, 42, 0.6);
    }

    .get-offer-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

.get-offer-left-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 355px;
}

.get-offer-title {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.4px;
    line-height: 1.1;
    margin-bottom: 15px;
}

    .get-offer-title span {
        display: block;
        font-weight: 700;
    }

.get-offer-subtitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 25px;
}

.get-offer-link {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #f5f5f5;
    padding: 17px 30px;
    transition: all 0.4s;
}

    .get-offer-link img {
        width: 11px;
        margin-left: 35px;
    }

    .get-offer-link:hover {
        background-color: #dc2a2a;
        border-color: #dc2a2a;
    }

.get-offer-right {
    position: relative;
    text-align: center;
    width: 25.8%;
    padding-left: 70px;
}

    .get-offer-right::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 85px;
        right: -150vw;
        background-color: #f5f5f5;
        z-index: -1;
    }

.get-offer-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100%;
    padding: 15px 0 85px;
}

.get-heading-title {
    color: #131f2d;
    font-family: "Roboto Cn";
    font-size: 48px;
    font-weight: 400;
    margin: 0px;
}

.get-offer-desc {
    color: #131f2d;
    font-size: 18px;
}

    .get-offer-desc img {
        display: block;
        width: 19px;
        transform-origin: 50% 50%;
        transform: rotate(180deg);
        margin: 10px auto 0;
    }

/* HOME NEWS */
.news-section {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 85px;
    padding: 0 55px 0 15px;
}

    .news-section::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: -125vw;
        background-color: #dc2a2a;
        z-index: -1;
    }

.news-slider .item a {
    position: relative;
    display: block;
    color: #fff;
    padding-left: 100px;
}

    .news-slider .item a span {
        position: absolute;
        left: 0;
        top: 0;
    }

.news-title {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    background-color: #c41515;
    overflow: hidden;
}

    .news-title span {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 2px;
        -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
        margin: 0;
        z-index: 1;
    }

html[lang="tr"] .news-title span {
    font-size: 11px;
}

.news-slider .owl-nav {
    position: absolute;
    right: -17px;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .news-slider .owl-nav button {
        padding: 3px;
        border: none;
        outline: none;
        background: none;
    }

        .news-slider .owl-nav button img {
            width: 14px;
        }

/* COMPANY LIST */
.company-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    padding: 55px 0;
    justify-content: space-between;
}

.company-item {
    /* margin-right: 50px; */
    margin-bottom: 22px !important;
    width: 16%;
}

    .company-item img {
        max-width: 100%;
    }

/* MEDIA */
@media(max-width: 1366px) {
    .slide-title {
        font-size: 40px;
    }
    .slide-desc {
        max-height: 81px;
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .incoterms {
        display: none;
    }
}

@media (max-width: 991px) {
    .main-slider .owl-dot {
        display: none;
    }
}

@media (max-width: 767px) {
    .slide-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    .fixed-link-item.tracking a span {
        bottom: 0;
    }

    .home-tracking {
        bottom: 0;
        right: 60px;
    }

        .home-tracking .container {
            padding: 0;
        }

    .home-tracking-form {
        max-width: inherit;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 18px 60px 18px 15px;
    }

    .home-tracking-title {
        font-size: 16px;
        padding-right: 10px;
    }

    .hdr-office,
    .about-right,
    .services-slider-arrows,
    .get-offer-right,
    .advantages-left::before,
    .fixed-link-item a img {
        display: none;
    }

    .home-tracking-input,
    .about-left,
    .services-left,
    .services-right,
    .advantages-left,
    .advantages-right,
    .get-offer-left {
        width: 100%;
    }

    .home-tracking-submit {
        width: 50px;
    }

    .about,
    .services {
        padding: 60px 0;
    }

    .about-title,
    .services-title,
    .advantages-heading {
        font-size: 36px;
    }

    .services-right {
        margin-top: 0;
        padding-left: 0;
    }

    .advantages-list .row {
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .advantages-heading {
        position: static;
        transform: none;
        color: #131f2d;
        font-family: "Roboto Cn";
        line-height: 1.3;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
        text-align: left;
        margin-bottom: 30px;
    }

    .get-offer-title {
        font-size: 30px;
    }

        .get-offer-title span {
            display: inline;
        }

    .get-offer-img {
        right: -30px;
        left: -30px;
    }

    .get-offer-left-inner {
        padding: 30px 0;
    }

    .news-section {
        display: block;
        min-height: inherit;
        padding: 20px 0;
    }

    .news-title {
        position: relative;
        width: auto;
        background: none;
        z-index: 2;
        overflow: visible;
        margin-bottom: 10px;
    }

        .news-title span {
            position: static;
            display: block;
            -ms-writing-mode: inherit;
            writing-mode: inherit;
            line-height: 1.3;
        }

    .news-section::before {
        right: -30px;
        left: -125vw;
    }

    .company-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: normal;
        justify-content: normal;
    }

    .company-item {
        width: 33.33%;
        padding: 0 10px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .advantages-item {
        width: 50%;
    }
}

/* MAX HEIGHT */
@media (max-height: 740px) {
    .fixed-offer-form {
        padding: 40px;
    }
}
