@font-face {
    font-family: 'Oswald-Heavy';
    src: url('../files/fonts/Oswald-Heavy.ttf'),
        url('../files/fonts/fonts/Oswald-Heavy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy Extra Bold';
    src: url('../files/fonts/Gilroy-ExtraBold.eot');
    src: url('../files/fonts/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../files/fonts/Gilroy-ExtraBold.woff') format('woff'),
        url('../files/fonts/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy Ultra Light Italic';
    src: url('../files/fonts/Gilroy-UltraLightItalic.eot');
    src: url('../files/fonts/Gilroy-UltraLightItalic.eot?#iefix') format('embedded-opentype'),
        url('../files/fonts/Gilroy-UltraLightItalic.woff') format('woff'),
        url('../files/fonts/Gilroy-UltraLightItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Gilroy Ultra Light Italic';
    font-weight: 400;
    background-color: #FBFBFB;

}

img {
    max-width: 100%;
}

input:focus {
    outline: none;
}

.container {
    max-width: 1170px;
}

a {
    color: #111;
}

a:hover {
    text-decoration: none;
    color: #111;
}

.st {
    font-family: 'Gilroy Ultra Light Italic';


}

.br {
    font-family: 'Gilroy Ultra Light Italic';
}

.big_zag {
    font-size: 50px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 62px;
    font-family: 'Oswald-Heavy';
    text-transform: uppercase;
}

.big_zag span {
    color: #ffd36a;
}

.big_pod_zag {
    font-size: 18px;
    text-align: center;
}

.button {
    max-width: 100%;
    -webkit-box-align: center;
            align-items: center;

    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 4;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffda83), to(#ffc24b));
    background: linear-gradient(to bottom, #ffda83, #ffc24b);
    border-bottom: 1px solid #ffba13;
    box-shadow: 0px 2px 0px #ffba13;
}

.but_name {
    font-size: 23px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    color: #000;
    line-height: 55px;
    text-shadow: 0px 1px 0px #fff691;
    font-weight: 700;

}

.but .but_fon {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-radius: 8px;
    background: #fff691;
}

.but:hover .but_fon {
    opacity: 1;
}
h5{
    font-size: 25px;
    padding-bottom: 30px;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.6);
                transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(0.5);
                transform: scale(0.5);
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.6);
                transform: scale(1.6);
        opacity: 0;
    }
}

.circle {
    width: 400px;
    height: 400px;
    border-radius:100%;
    position: absolute;
    left: 50%;
    top: 100px;
    z-index: 1;
    -webkit-border-radius:100%;
    -moz-border-radius:100%;
    -ms-border-radius:100%;
    -o-border-radius:100%;
}

.circle:before,
.circle:after {
    content: '';
    position: absolute;
    border: 1px dashed #e8eff0;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    -webkit-animation: pulse 7s linear infinite;
            animation: pulse 7s linear infinite;
    opacity: 0;
    z-index: -1;
}

.circle:after {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}

.header {
    position: fixed;
    z-index: 5;
    padding-top: 20px;
    padding-bottom: 5px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.header .logo {
    max-width: 245px;
    width: 100%;
}

.header .tell {
    font-size: 30px;
    margin-left: 10px;
    font-weight: 900;
}

.header .mes {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    margin-right: 10px;
}


.sticky-content.fixed .header {
    padding-top: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

@-webkit-keyframes top {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }

    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes top {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }

    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes top_out {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }

    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes top_out {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
                transform: translateY(-20px);
    }

    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

.block_top {
    min-height: 720px;
    position: relative;
    overflow: hidden;
}

.block_top .circle {
    left: auto;
    right: 150px;
}

.block_top .box {
    position: absolute;
    left: 0px;
    top: 50px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    -webkit-animation: top_out 5s infinite ease-in-out;
            animation: top_out 5s infinite ease-in-out;
}

.block_top .container {
    position: relative;
}

.block_top .bg {
    position: absolute;
    right: -290px;
    top: 50px;
    z-index: 2;
}

@-webkit-keyframes clock {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes clock {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

.block_top .medal {
    position: absolute;
    right: -30px;
    top: 120px;
    z-index: 3;
    max-width: 160px;
    text-align: center;
}

.block_top .medal .m_text {
    position: absolute;
    width: 85px;
    -webkit-animation: clock 15s infinite linear;
            animation: clock 15s infinite linear;
    margin-left: 37px;
    top: 20px;
}

.block_top h1 {
    font-size: 70px;
    font-family: 'Gilroy Extra Bold';
    margin-top: 160px;
    margin-bottom: 20px;
}

.block_top h1 span {
    color: blue
}

.block_top .text {
    position: relative;
    z-index: 4;
}

.three {
    padding-bottom: 50px;
    position: relative;
}

.three .box2 {
    position: absolute;
    right: 0px;
    bottom: -150px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    -webkit-animation: top 5s infinite ease-in-out;
            animation: top 5s infinite ease-in-out;
}

.three .block {
    position: relative;
    margin-bottom: 10px;
}

.three .text {
    position: absolute;
    bottom: 30px;
    left: 15px;
}

.three .text .title {
    text-transform: uppercase;
    color: #fff;
    font-size: 28px;
    line-height: 28px;
    font-family: 'Oswald-Heavy';
}

.three .text .title2 {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    text-transform: uppercase;
}

.plus {
    min-height: 300px;
    padding-top: 90px;
    padding-bottom: 90px;
    background: linear-gradient(-130deg, #493db3, #7d71ee);
    position: relative;
    box-shadow: 0px 10px 30px rgba(103, 94, 185, 0.1);
}

.plus .box {
    position: absolute;
    left: 0px;
    top: -50px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    -webkit-animation: top_out 5s infinite ease-in-out;
            animation: top_out 5s infinite ease-in-out;
}

.plus .box2 {
    position: absolute;
    right: 0px;
    bottom: -150px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    -webkit-animation: top 5s infinite ease-in-out;
            animation: top 5s infinite ease-in-out;
}

.plus .big_zag {
    color: #fff;
}

.plus .block {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 40px 40px 10px;
    margin-bottom: 20px;
}

.plus .block .text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 28px;
}

.plus .block.n2 {
    background: url(../files/images/d2.png) no-repeat top right / 150px,
        #fff;
    background-size: 130px;
}

.plus .block.n3 {
    background: url(../files/images/telephone.png) no-repeat center right / 150px,
        #fff;
    background-size: 100px;
}

.plus .block.n5 {
    background: url(../files/images/unnamed.png) no-repeat bottom right / 150px,
        #fff;
    background-size: 100px;
}

.plus .block.n6 {
    background: url(../files/images/0-Financing-Logo.jpg) no-repeat bottom right / 150px,
        #fff;
    background-size: 160px;
}

.plus .block.n7 {
    background: url(../files/images/unnamed_2.png) no-repeat bottom right / 150px,
        #fff;
    background-size: 120px;
}

.plus .block.n8 {
    background: url(../files/images/d8.png) no-repeat center right / 150px,
        #fff;
    background-size: 115px;
}

.pr .center {
    position: relative;
}

.pr .medal {
    position: absolute;
    z-index: 3;
    max-width: 160px;
    text-align: center;
    left: 50%;
    top: 200px;
}

.pr .medal .m_text {
    position: absolute;
    width: 85px;
    -webkit-animation: clock 15s infinite linear;
            animation: clock 15s infinite linear;
    margin-left: 37px;
    top: 20px;
}

.pr .circle {
    left: 50%;
    margin-left: -200px;
}

.kuryer {
    padding-top: 90px;
}

.kuryer .block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 20px 35px rgba(0, 0, 0, 0.07);
    padding: 40px 30px 40px 250px;
    position: relative;
}

.kuryer .men {
    position: absolute;
    bottom: 0px;
    left: 20px;
    max-width: 200px;
}

.kuryer .block .title {
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.kuryer .block .text_in {
    font-size: 16px;
    line-height: 24px;
}

.logos {
    padding-top: 90px;
    padding-bottom: 90px;
    text-align: center;

}



.logos img {
    margin-bottom: 10px;
}

.kak {
    min-height: 300px;
    padding-top: 90px;
    padding-bottom: 90px;
    background: linear-gradient(-130deg, #493db3, #7d71ee);
    position: relative;
    box-shadow: 0px 10px 30px rgba(103, 94, 185, 0.1);
}

.kak .box {
    position: absolute;
    left: 0px;
    top: -50px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    -webkit-animation: top_out 5s infinite ease-in-out;
            animation: top_out 5s infinite ease-in-out;
}

.kak .box2 {
    position: absolute;
    right: 0px;
    bottom: -150px;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    -webkit-animation: top 5s infinite ease-in-out;
            animation: top 5s infinite ease-in-out;
}

.kak .big_zag {
    color: #fff;
}

.kak .but {
    margin: auto;
    margin-top: 50px;
}

.kak .block {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    min-height: 350px;
}

.kak .number {
    font-size: 60px;
    line-height: 80px;
    color: #6b5ed9;
}

.kak .text {
    font-size: 23px;
    line-height: 26px;
    font-weight: 700;
}

.kak .block.n1 {
    background: url(../files/images/1.png) no-repeat bottom,
        #fff;
    background-size: 150px;
}

.kak .block.n2 {
    background: url(../files/images/2.png) no-repeat bottom,
        #fff;
    background-size: 120px;
}

.kak .block.n3 {
    background: url(../files/images/3.png) no-repeat bottom,
        #fff;
    background-size: 180px;
}

.kak .block.n4 {
    background: url(../files/images/4.png) no-repeat bottom,
        #fff;
    background-size: 250px;
}

.map {
    border-radius: 8px;
    min-height: 458px;
    margin-top: 80px;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 8px 0px 0px 8px;
    
}

.map .title {
    font-size: 30px;
    text-transform: uppercase;
    
}


.map .block {
    background: #fff;
    padding: 30px;
    border-radius: 0px 8px 8px 0px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.05);
    font-weight: 700;
}

.map .tell {
    font-size: 25px;
    padding-left: 15px;
    margin-bottom: 10px;

}

.map .mes {
    width: 38px;
    height: 38px;
    border-radius: 100px;
    margin-left: 10px;
}


.map .adres {
    font-size: 22px;
    padding-left: 15px;
    margin-bottom: 10px;
    line-height: 26px;

}

.footer {
    padding-top: 20px;
    padding-bottom: 50px;
}

.footer .logo {
    margin-right: 25px;
    max-width: 245px;
}

.footer .title {
    font-size: 12px;
    line-height: 18px;
}

.footer .title span {
    cursor: pointer;
    text-decoration: underline;
}

.footer .right {
    font-size: 12px;
    line-height: 18px;
}

::-webkit-input-placeholder {
    color: #565656;
    opacity: 1;
}

::-moz-placeholder {
    color: #565656;
    opacity: 1;
}

:-moz-placeholder {
    color: #565656;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #565656;
    opacity: 1;
}

.fon_black {
    background-color: rgba(63, 58, 59, 0.9);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 11;
    top: 0px;
    display: none;
}

.fon {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    top: 0px;
    display: none;
}

.mess {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 450px;
    max-width: 100%;
    min-height: 300px;
    background-color: #fff;
    z-index: 501;
    padding: 50px 50px;
    display: none;
    text-align: center;
    padding-bottom: 51px;
}

.mess .clos {
    width: 46px;
    height: 46px;
    background-image: url(../img/clos_black.svg);
    position: absolute;
    cursor: pointer;
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
    top: 10px;
    right: 10px;
}

.mess .but {
    width: 380px;
}

.mess .mini {
    font-size: 12px;
    color: #c7c9e1;
    margin-bottom: 0px;
}

.mess input[type="text"] {
    width: 100%;
    height: 70px;
    max-width: 380px;
    border-radius: 10px;
    margin-bottom: 8px;
    padding: 0px 20px 0px 20px;
    font-size: 16px;
    border: none;
    background-color: #f6f6f6;
}

.mess .mini {
    font-size: 10px;
    text-align: center;
    color: #2e2e2e;
    margin-top: 15px;
}

.mess .mini span {
    text-decoration: underline;
}

.mess .zag {
    font-size: 36px;
    line-height: 36px;
    text-transform: uppercase;
}

.mess .text {
    font-size: 13px;
}

.mess .form .mini {
    color: #3d3d3d;
    font-size: 11px;
}

.mess .form .mini .chek {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .05) inset;
    margin-right: 10px;
    background-color: #f6f6f6;
    margin-bottom: -5px;
}

.mess .form .mini .chek.activ {
    background-image: url(../img/chek.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

.autoflash {
    position: relative;
    overflow: hidden;
}

.flash {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 3em;
    display: block;
    position: absolute;
    top: 0;
    left: -4.5em;
    -webkit-transform: skewX(-45deg) translateX(0);
    transform: skewX(-45deg) translateX(0);
    -webkit-transition: none;
    transition: none;
}

.lighting {
    webkit-animation: moving 3s ease-in-out infinite;
    -webkit-animation: moving 3s ease-in-out infinite;
            animation: moving 3s ease-in-out infinite;
}

@-webkit-keyframes moving {
    30% {
        webkit-transform: skewX(-45deg) translateX(53.5em);
        -webkit-transform: skewX(-45deg) translateX(53.5em);
                transform: skewX(-45deg) translateX(53.5em);
    }

    100% {
        webkit-transform: skewX(-45deg) translateX(53.5em);
        -webkit-transform: skewX(-45deg) translateX(53.5em);
                transform: skewX(-45deg) translateX(53.5em);
    }
}

@keyframes moving {
    30% {
        webkit-transform: skewX(-45deg) translateX(53.5em);
        -webkit-transform: skewX(-45deg) translateX(53.5em);
                transform: skewX(-45deg) translateX(53.5em);
    }

    100% {
        webkit-transform: skewX(-45deg) translateX(53.5em);
        -webkit-transform: skewX(-45deg) translateX(53.5em);
                transform: skewX(-45deg) translateX(53.5em);
    }
}



.after-modal-title {
    font-size: 16px;
    font-family: 'Gilroy Ultra Light Italic';
    font-weight: 600;


}

h4 {
    color: #000000;
    font-family: 'Oswald-Heavy';
    font-size: 36px;
    font-weight: 400;

    font-style: italic;

}

.modal-header {
    padding: 50px 20px 0;
    border: none;
    text-align: center;
    display: block;

}

.modal-title {
    font-size: 30px;
    margin-bottom: 10px;
    color: #000
}

.modal-body {
    position: relative;
    padding: 20px 50px 50px;
}

.modal-body button.main-btn {
    width: 100%;
}

.modal-body .form-control {
    text-align: center;
    margin-bottom: 15px;
}

#modal-thank .after-modal-title {
    margin-bottom: 40px;
}

button.close {
    font-size: 30px;
    position: absolute;
    top: 5px;
    right: 2px;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    text-shadow: none;
}

.modal-content {
    box-shadow: none;
    font-size: 20px;
}

.modal {
    text-align: center;
}


@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }

}

.modal-dialog {
    display: inline-block;

    vertical-align: middle;
    color: #000
}

@media(max-width: 768px) {
    .modal-body {
        position: relative;
        padding: 20px;
    }

    .modal-header {
        padding: 30px 20px 0;
        font-size: 14px;
    }
}