@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* CSS Document */


/*-----------------------------------------------------------------------------

Prototype Version:  2.4

*/


/* Table of Contents
-----------------------------------------------------------------------------

1. Clean Base
2. Base Typography
3. Images
4. Links
5. Forms
6. Tables
7. Framework

*/


/* 1. Create a Clean Base
------------------------------------------------------------------------------*/

html,
body,
br,
hr,
div,
span,
a,
object,
iframe,
ul,
ol,
dl,
li,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
q,
address,
small,
big,
cite,
dfn,
ins,
del,
i,
em,
b,
strong,
sup,
sub,
strike,
pre,
code,
samp,
kbd,
var,
tt,
form,
fieldset,
legend,
label,
input,
textarea,
option,
.nobox {
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

blockquote,
q {
    quotes: none;
}

br {
    height: 0;
}

ul,
ol,
dl,
li {
    margin: 0;
    padding: 0;
    color: #555555;
    font-size: 14px;
    line-height: 24px;
}

html,
body {
    height: 100%;
    -webkit-appearance: none;
    border: none;
    -webkit-text-size-adjust: none;
}

body {
    position: relative;
    top: 0 !important;
}


/* Class for clearing floats */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.cf:after,
.cf:before {
    display: table;
    content: ''
}

.cf:after {
    clear: both;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* 2. Define Base Typography
------------------------------------------------------------------------------*/


/* Create the Default Headers  */

h1,
h2,
h3,
h4,
h5,
h6 {}


/* Specific Header Settings */

h1 {
    font-weight: bold;
    font-size: 36px;
    color: #131313;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    color: #131313;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}


/* Create the Default Paragraphs */

p {
    color: #131313;
    font-size: 16px;
    line-height: 24px;
}


/* Other Typo */

strong {
    font-weight: bold;
}

hr {
    border: 0 #000 solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
}

ol {
    list-style: decimal;
}

ul {
    list-style: disc;
}


/* To make FontSmooth in MAC */

.mac * {
    -webkit-font-smoothing: antialiased;
}


/* 3. Images
------------------------------------------------------------------------------*/


/* Remove border around linked images */

img {
    border: 0;
    border-style: none;
}


/* 4. Links
------------------------------------------------------------------------------*/


/* Default Link Types */

a {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

a:hover {}

a:active {
    color: #e8941a;
}

a:focus {
    outline: none;
}

a.current {
    color: #e8941a;
}


/* 5. Forms
------------------------------------------------------------------------------*/

input {
    line-height: normal;
}

input[type='email'],
input[type='text'],
input[type='password'] {
    -webkit-text-size-adjust: none;
    padding: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.estimate input[type='email'] {
    border: 1px solid #cbcbcb;
}

textarea {
    -webkit-appearance: none;
    border: none;
    -webkit-text-size-adjust: none;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #cbcbcb;
    display: block;
    overflow: auto;
}

input[type='email']:focus,
input[type='text']:focus,
input[type='password']:focus,
textarea:focus {
    border-color: #ccc
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    border: none;
    -webkit-text-size-adjust: none;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="search"] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
}

:-ms-input-placeholder {
    color: #000;
}

::-ms-input-placeholder {
    color: #000;
}

:placeholder-shown {
    color: #000;
}


/* Removes fieldset borders. even on Opea 7 */

fieldset {
    border: 1px solid transparent;
}


/* 6. Tables
------------------------------------------------------------------------------*/


/* Table Fixes */

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td {
    text-align: left;
    font-weight: normal;
}


/* 7. Framework
------------------------------------------------------------------------------*/


/* Common CSS */


/*common margin style*/

.m0 {
    margin: 0 !important;
}

.mr20 {
    margin-right: 20px;
}

.mt20 {
    margin-top: 20px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt50 {
    margin-top: 50px !important;
}


/*all padding zero*/

.p0 {
    padding: 0 !important;
}

.pt20 {
    padding-top: 20px;
}


/*common display style*/

.dis-b {
    display: block
}

.pos_rel {
    position: relative;
}

.hidden {
    display: none !important;
}


/*border*/

.no_bdr {
    border: none !important;
}


/*common fonts style*/

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.fbold {
    font-weight: bold;
}


/*transition effect*/

.tra {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* opacity effect */

.opacity1 {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

.opacity0 {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}


/* column grid */

.row {
    width: 100%;
}

.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1 {
    float: left;
}

.col-12 {
    width: 100%;
}

.col-11 {
    width: 91.66666667%;
}

.col-10 {
    width: 83.33333333%;
}

.col-9 {
    width: 75%;
}

.col-8 {
    width: 66.66666667%;
}

.col-7 {
    width: 58.33333333%;
}

.col-6 {
    width: 50%;
}

.col-5 {
    width: 41.66666667%;
}

.col-4 {
    width: 33.33333333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.66666667%;
}

.col-1 {
    width: 8.33333333%;
}


/* Page Layout */

body {
    font-family: 'Poppins';
}

#full_wrapper {
    /*min-height: 100%;*/
    height: auto !important;
    height: 100%;
    margin: 0 auto;
    /* the bottom margin is the negative value of the footer's height */
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.content {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

img {
    max-width: 100%;
}

a,
.in,
.sub {
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}


/* Header*/

header {
    top: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    z-index: 1;
}

header .wrapper {
    position: relative;
}

header .day_action {
    background-color: #BF942F;
    padding: 8px 0px;
}

header .day_action p {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

header .day_action p strong {
    font-weight: bold;
    text-transform: uppercase;
}

header .day_action h6 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
}

header .day_action h6 strong {
    font-weight: bold;
    text-transform: uppercase;
}

header .day_action a {
    color: #fff;
}

header .middle_header {
    padding-top: 25px;
    padding-bottom: 22px;
    background-color: #131313;
    border-top: solid 20px #BF942F;
    position: relative;
    z-index: 1;
}

header .middle_header .logo {
    float: left;
}

header .middle_header .logo img, footer .last_col .logo img {
    height: 90px;
}

header .middle_header .right_header {
    float: right;

    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

header .middle_header .right_header .tel {
    display: inline-block;
    vertical-align: middle;
    text-align: right;
}

header .middle_header .right_header .tel p {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/site/telk.svg);
    background-size: 13px;
    display: inline-block;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}

header .middle_header .right_header .tel p:hover {
    color: #BF942F;
    background-image: url(../images/site/telkh.png)
}

header .middle_header .right_header .tel .bottom {
    color: #898989;
    font-size: 14px;
    font-weight: 400;
}

header .middle_header .right_header .tel h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

header .middle_header .right_header .tel h6 strong {
    font-weight: bold;
    ;
}

header .middle_header .right_header .social {
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
}

header .middle_header .right_header .social a {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border: 2px solid #BF942F;
    border-radius: 10px;
    position: relative;
    margin-right: 6px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

header .middle_header .right_header .social a img {
    position: absolute;
    left: 0px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

header .middle_header .right_header .shop_near {
    /*display: inline-block;
    vertical-align: middle;
    border: 2px solid #BF942F;
    border-radius: 5px;
    padding: 0px 10px;
    background-image: url(../images/site/after.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    position: relative;
    background-color: #fff;*/
    height: 50px;
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    border-radius: 5px;
    border: 2px solid #BF942F;
    position: relative;
    /* background-image: url(../images/site/dots.png); */
    text-align: right;
    padding-right: 10px;
    margin-left: 5px;
    transition: 0.1s all ease;
    -webkit-transition: 0.1s all ease;
    -o-transition: 0.1s all ease;
    -moz-transition: 0.1s all ease;
    color:#fff;
}

header .middle_header .right_header .shop_near i img {
    display: inline-block;
    vertical-align: middle;
}

header .middle_header .right_header .shop_near span {
    background-image: url(../images/site/arror_l.png);
    background-repeat: no-repeat;
    background-position: right center;
    line-height: 46px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding-right: 15px;
    padding-left: 20px;
}

header .middle_header .right_header .shop_near[data-tooltip]:before {
    position: absolute;
    right: 0;
    top: 60px;
    background-color: #BF942F;
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
    padding: 0 40px;
    content: attr(data-tooltip);
    white-space: nowrap;
    display: none;
    font-size: 13px;
    font-weight: 400;
}

header .middle_header .right_header .shop_near[data-tooltip]:after {
    position: absolute;
    right: 80px;
    bottom: -14px;
    border-bottom: 7px solid #BF942F;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: none;
}

header .middle_header .right_header .shop_near[data-tooltip]:hover:after,
header .middle_header .right_header .shop_near[data-tooltip]:hover:before {
    display: none !important;
}

.shop_near[data-tooltip]:hover:after,
.shop_near[data-tooltip]:hover:before {
    display: none !important;
}

header .middle_header .right_header .lang_drp {
    position: relative;
    width: 82px;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    margin-left: 30px;
    z-index: 9;
}

header .middle_header .right_header .lang_drp a {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

header .middle_header .right_header .lang_drp .de_lang {
    position: relative;
    padding-right: 8px;
    min-width: 40px;
}

header .middle_header .right_header .lang_drp .de_lang:after {
    position: absolute;
    content: '';
    background-image: url(../images/site/bottom_arrow.png);
    background-position: center center;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    top: 0;
    right: -15px;
    margin: auto;
    bottom: 0px;
    z-index: 99999;
}

header .middle_header .right_header .lang_drp ul {
    position: absolute;
    width: 100%;
    background-color: #efefef;
    border-radius: 6px;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    padding: 5px 0px;
    text-align: left;
    padding-left: 20px;
    display: none;
    top: 23px;
    left: -20px;
}

header .middle_header .right_header .lang_drp ul li {
    list-style: none;
    margin-bottom: 5px;
}

header .menu {
    background-color: #fff;
    height: 66px;
    padding-top: 22px;
    position: relative;
}

header .menu nav {
    text-align: center;
}

header .menu nav ul li {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
    margin-right: 35px;
    position: relative;
}

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

header .menu nav ul li a {
    display: inline-block;
    vertical-align: middle;
    color: #131313;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 20px;
}

header .menu nav ul li a:hover {
    color: #BF942F;
}

header .menu nav ul li .sub-menu {
    display: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 30px;
    position: absolute;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    width: 200px;
    background-color: #efefef;
}

header .menu nav ul li.menu-item-has-children a {
    background-image: url(../images/site/arrow_drp.png);
    background-repeat: no-repeat;
    background-position: right 10px;
    padding-right: 25px;
}

header .menu nav ul li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    display: block;
}

header .menu nav ul li .sub-menu li {
    margin: 0;
    padding: 5px 0px;
    display: block;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

header .menu nav ul li .sub-menu a {
    background-image: none;
    padding-right: 0;
    color: #383838;
    padding-bottom: 0;
    display: block;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

header .menu nav ul li .sub-menu li:hover {
    background-color: #131313;
}

header .menu nav ul li .sub-menu li:hover a {
    color: #ffffff;
}

header .time_period {
    background-color: #131313;
    padding: 10px 0px;
    text-align: center;
}

header .time_period h6 {
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
}

header .time_period .working_hours {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    vertical-align: middle;
}

header .time_period .timing {
    background-color: #ea5459;
    display: inline-block;
    vertical-align: middle;
    padding: 0px 15px;
    border-radius: 25px;
    margin-left: 30px;
    width: auto;
    text-align: left;
    display: none;
}

header .time_period .timing.open {
    background-color: #9ec753;
}

header .time_period .timing.active {
    display: inline-block;
}

header .time_period .timing img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

header .time_period .timing p {
    color: #fff ;
    font-size: 14px;
    font-weight: bold;
    line-height: 35px;
    display: inline-block;
    vertical-align: middle;
}

header .time_period .timing .time {
    display: inline-block;
    vertical-align: middle;
}

header .time_period .timing .countdowntimer .second,
header .time_period .timing .countdowntimer .minute,
header .time_period .timing .countdowntimer .hour {
    color: #fff ;
    font-size: 14px;
    font-weight: bold;
    line-height: 35px;
}

header .marquee_text #scroll_news4 h6 {
    display: inline-block;
    vertical-align: middle;
    color: #898989;
    font-size: 14px;
    margin-right: 45px;
}

header .marquee_text #scroll_news4 h6 strong {
    color: #BF942F;
}

header .marquee_text {
    padding: 10px 0px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #BF942F;
    color: #fff;
}

header .marquee_text .play_mar {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    padding: 0px 15px;
    padding-top: 13px;
    background-color: #BF942F;
    font-size: 0px;
    background-image: url(../images/site/pause.png);
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

header .marquee_text .play_mar.active {
    background-image: url(../images/site/play.png);
}

/* .main {
    padding-top: 330px;
} */

.banner {
    padding: 50px 0px 30px 0;
    background-repeat: repeat-x;
    background-position: center center;
}

.banner .slider {}

.banner .slider .slide {
    width: 100%;
    background-color: #131313;
    min-height: 420px;
    border-radius: 30px;
}

.banner .slider .slide .left .img {
    min-height: 420px;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.banner .slider .slide .left {
    float: left;
    width: 60%;
    height: 100%;
    background-size: cover;
}

.banner .slider .slide .left img {
    display: block;
    border-radius: 30px;
}

.banner .slider .slide .right {
    float: right;
    margin-right: 76px;
    max-width: 325px;
    text-align: center;
    padding-bottom: 20px;
}

.banner .slider .slide .right h2 {
    color: #ffffff;
    font-size: 90px;
    font-weight: 900;
    line-height: 80px;
    padding-top: 27px;
}

.banner .slider .slide .right h2 em {
    font-style: normal;
    color: #BF942F;
}

.banner .slider .slide .right h3 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 300;
}

.banner .slider .slide .right h4 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 300;
    padding-top: 20px;
    padding-bottom: 30px;
    line-height: 32px;
}

.banner .slider .slide .right h4 strong {
    color: #BF942F;
    font-weight: bold;
}

.banner .slider .slide .right a.read_more {
    width: 310px;
    text-align: center;
    color: #131313;
    font-size: 17px;
    font-weight: 600;
    background-image: url(../images/site/arror_l.png);
    background-repeat: no-repeat;
    background-position: 72% center;
    background-color: #ffffff;
    line-height: 50px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.banner .slider .owl-nav .owl-prev {
    font-size: 0px;
    background-repeat: no-repeat;
    width: 23px;
    height: 38px;
    background-position: center center;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    margin: auto;
    cursor: pointer;
}

.banner .slider .owl-nav .owl-prev,
.banner .slider .owl-nav .owl-next {
    background-image: url(../images/site/nav.png);
    transition: 0.5s ease all;
}

.banner .slider .owl-nav .owl-prev:hover,
.banner .slider .owl-nav .owl-next:hover {
    background-image: url(../images/site/navorg.png);
}

.banner .slider .owl-nav .owl-next {
    font-size: 0px;
    background-repeat: no-repeat;
    width: 23px;
    height: 38px;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto;
    cursor: pointer;
}

.banner .slider .slide .right a.read_more:hover {
    background-color: #000000;
    color: #ffffff;
}

.banner .slider .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
}

.banner .slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background-color: #ffffff;
    margin-left: 6px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    cursor: pointer;
}

.banner .slider .owl-dots .owl-dot.active span {
    background-color: #BF942F;
    width: 14px;
    height: 14px;
}

.banner .slider .owl-dots {
    bottom: 10px;
    position: absolute;
    left: 0px;
    right: 0;
    text-align: center;
}

.box_sec {
    background-color: #efefef;
    padding: 60px 0px;
}

.box_sec .box {
    width: 23.75%;
    text-align: center;
    padding: 30px 38px 20px 38px;
    float: left;
    margin-right: 1.64%;
    position: relative;
    border-radius: 20px;
}

.box_sec .box:last-child {
    margin-right: 0;
}

.box_sec .box h3 {
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    padding-bottom: 10px;
}

.box_sec .box p {
    color: #ffffff;
    font-size: 17px;
    font-weight: 300;
    padding-bottom: 18px;
}

.box_sec .box a {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    color: #131313;
    font-size: 17px;
    font-weight: 600;
    background-image: url(../images/site/arror_l.png);
    background-repeat: no-repeat;
    background-position: 80% center;
    background-color: #ffffff;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 5px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.box_sec .box a:hover {
    background-color: #000000;
    color: #ffffff;
}

.box_sec .box .vip {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
}

.box1 {
    background-color: #BF942F !important;
}

.box2 {
    background-color: #787878 !important;
}

.box3 {
    background-color: #9F9F9F !important;
}

.box4 {
    background-color: #131313 !important;
}

.box4 span {
    color: #BF942F !important;
}

.features {
    padding-top: 65px;
    padding-bottom: 72px;
    background-color: #131313;
}

.features .f_box {
    float: left;
    width: 25%;
    text-align: center;
    padding: 0px 15px;
}

.features .f_box i {
    height: 85px;
    width: 85px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
}

.features .f_box h3 {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 18px;
}

.features .f_box p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.features .f_box p strong {
    color: #BF942F;
}

.features .f_box a {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    background-image: url(../images/site/arror_l.png);
    background-repeat: no-repeat;
    padding-right: 20px;
    background-position: 99% center;
    color: #fff;
}

.features .f_box a:hover {
    color: #BF942F;
    padding-right: 30px;
}

.blog {
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 32px;
    margin-bottom: 50px;
}

.blog .left_img {
    float: left;
    width: 50%;
    background-color: #131313 !important;
}

.blog .right_img {
    float: right;
    width: 50%;
    background-color: #131313 !important;
}

.blog .column h3, .blog .column p {
    color: #fff;
}

.blog hr {
    border: 0 #707070 solid;
    border-top-width: 1px;
    clear: both;
    height: 0;
}

.blog img {
    border-radius: 30px;
}

.blog-naslov {
    background-color: #131313 !important;
}

.blog-naslov div {
    background-color: #BF942F !important;
}

.blog-naslov p {
    color: #fff !important;
    font-weight: bold;
}

/* Footer */

.postopek {
    padding-top: 44px;
    padding-bottom: 62px;
    background-color: #EFEFEF;
}

.postopek h3 {
    color: #131313;
    font-size: 18px;
    margin-bottom: 20px;
}

.postopek p {
    font-size: 14px;
    color: #131313;
    font-weight: 300;
    line-height: 1.714;
}

footer .top_col {
    background-color: #BF942F;
    padding-top: 25px;
    padding-bottom: 23px;
}

footer .top_col p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    display: inline-block;
    vertical-align: top;
    line-height: 50px;
}

footer .top_col form {
    display: inline-block;
    vertical-align: top;
}

footer .top_col .in {
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    border-radius: 5px;
    width: 291px;
    height: 50px;
    font-family: 'Poppins';
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 300;
    border: 2px solid #fff;
    margin-left: 20px;
}

footer .top_col .in:focus {
    border-color: #131313;
}

footer .top_col .sub {
    display: inline-block;
    vertical-align: top;
    background-color: #131313;
    border-radius: 5px;
    width: 82px;
    height: 50px;
    font-family: 'Poppins';
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-left: 5px;
}

footer .top_col .sub:hover {
    background-color: #000;
    color: #fff;
}

footer .bottom_col {
    background-color: #131313;
    padding-top: 32px;
    padding-bottom: 35px;
}

footer .bottom_col ul {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    float: left;
    width: 285px;
}

footer .bottom_col ul:nth-child(2) {
    width: 280px;
}

footer .bottom_col ul:nth-child(3) {
    width: 280px;
}

footer .bottom_col ul li {
    display: block;
}

footer .bottom_col ul li a {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

footer .bottom_col ul li a:hover {
    color: #BF942F
}

footer .bottom_col ul li a strong {
    font-size: 15px;
}

footer .bottom_col ul li:first-child {
    margin-bottom: 20px;
}

footer .bottom_col ul li+li {
    margin-bottom: 2px;
}

footer .bottom_col .contect {
    display: inline-block;
    vertical-align: top;
    text-align: right;
    width: 282px;
    float: right;
}

footer .bottom_col .contect h3 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 24px;
}

footer .bottom_col .contect a {
    display: block;
}

footer .bottom_col .contect .tell {
    color: #fff;
    line-height: 30px;
    font-size: 30px;
    font-weight: 900;
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/site/telk.svg);
    background-size: 13px;
    display: inline-block;
}

footer .bottom_col .contect .tell:hover {
    background-image: url(../images/site/telkh.png);
    color: #BF942F
}

footer .bottom_col .contect p {
    color: #898989;
    font-size: 14px;
    font-weight: 600;
}

footer .bottom_col .contect p strong {
    font-weight: 900;
}

footer .bottom_col .contect .mail {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    margin-top: 9px;
}

footer .bottom_col .contect .mail i {
    color: #BF942F;
}

footer .bottom_col .contect .mail:hover {
    color: #BF942F
}

footer .bottom_col .contect .mail:hover i {
    color: #fff
}

footer .bottom_col .contect .partner {
    color: #131313;
    font-size: 15px;
    font-weight: bold;
    height: 50px;
    border-radius: 5px;
    background-color: #fff;
    text-align: left;
    line-height: 50px;
    margin-top: 22px;
    text-align: center;

    background-repeat: no-repeat;
    background-position: left 20px center;
    padding-left: 35px;
    background-image: url(../images/site/partner.svg);
    background-size: 20px;
}

footer .bottom_col .contect .partner:hover {
    background-color: #BF942F;
    color: #fff;
    background-image: url(../images/site/partner_hover.svg);
}

footer .bottom_col .contect .link {
    color: #BF942F;
    font-size: 14px;
    font-weight: 300;
    display: inline-block;
    position: relative;
    margin-top: 24px;
}

footer .bottom_col .contect .link:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background-color: #BF942F;
}

footer .bottom_col .contect .link:hover {
    color: #fff;
}

footer .partner_sheep {
    background-color: #131313;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.49);
    border-bottom: 1px solid rgba(255, 255, 255, 0.49);
    padding-top: 30px;
    padding-bottom: 27px;
}

footer .partner_sheep .col {
    display: inline-block;
    vertical-align: top;
    width: 444px;
    position: relative;
    padding-bottom: 6px;
}

footer .partner_sheep .col h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 13px;
}

footer .partner_sheep .col a {
    display: inline-block;
    vertical-align: top;
    width: 271px;
    border-radius: 5px;
    border: 2px solid #BF942F;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 50px;
    text-align: left;
    background-repeat: no-repeat;
    background-position: left 39px center;
    padding-left: 68px;
    background-image: url(../images/site/partkln_nova.png);
    background-size: 20px;
}

footer .partner_sheep .col+.col a {
    width: 291px;
    padding-left: 50px;
    background-image: url(../images/site/partkr_nova.png);
    background-size: 30px;
    background-position: left 15px center;
    
}


footer .partner_sheep .col a:hover {
    color: #131313;
    background-color: #fff;
    background-image: url(../images/site/partkln_nova_b.png);
}

footer .partner_sheep .col+.col:after {
    content: '';
    position: absolute;
    left: -0.5px;
    top: 0;
    background-color: rgba(255, 255, 255, 0.49);
    height: 100%;
    width: 1px;
}

footer .last_col {
    background-color: #131313;
    padding-top: 50px;
    padding-bottom: 41px;
    border-bottom: solid 20px #BF942F;
}

footer .last_col .logo {
    float: left;
}

footer .last_col .right_col {
    float: right;
}

footer .last_col .right_col p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    line-height: 50px;
    margin-right: 15px;
}

footer .last_col .right_col .fb,
footer .last_col .right_col .insta,
footer .last_col .right_col .youtube,
header .middle_header .right_header .social .fb, .right_header .social .fb,
header .middle_header .right_header .social .insta, .right_header .social .insta,
header .middle_header .right_header .social .youtube, .right_header .social .youtube {
    border-radius: 5px;
    border: 2px solid #BF942F;
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
}

footer .last_col .right_col .fb, header .middle_header .right_header .social .fb, .right_header .social .fb {
    /* background-image: url(../images/site/fb_f.png); */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #BF942F;
    font-size: 25px;
}

footer .last_col .right_col .insta, header .middle_header .right_header .social .insta, .right_header .social .insta {
    /* background-image: url(../images/site/insta_f.png); */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #BF942F;
    font-size: 25px;
}

footer .last_col .right_col .youtube, header .middle_header .right_header .social .youtube, .right_header .social .youtube {
    /* background-image: url(../images/site/youtube_f.png); */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #BF942F;
    font-size: 25px;
}

footer .last_col .right_col .fb:hover, header .middle_header .right_header .social .fb:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

footer .last_col .right_col .insta:hover, header .middle_header .right_header .social .insta:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

footer .last_col .right_col .youtube:hover, header .middle_header .right_header .social .youtube:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

footer .last_col .right_col .naso img {
    position: absolute;
    left: 7px;
    top: 0;
}

footer .last_col .right_col .naso {
    height: 50px;
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    width: 245px;
    border-radius: 5px;
    border: 2px solid #BF942F;
    position: relative;
    /* background-image: url(../images/site/dots.png); */
    text-align: right;
    padding-right: 10px;
    margin-left: 5px;
    transition: 0.1s all ease;
    -webkit-transition: 0.1s all ease;
    -o-transition: 0.1s all ease;
    -moz-transition: 0.1s all ease;
}

footer .last_col .right_col .naso:hover {
    background-color: rgba(255, 255, 255, 0.1)
}

footer .last_col .right_col .naso i {
    font-style: normal;
    display: inline-block;
    line-height: 50px;
    padding-right: 16px;
    background-image: url(../images/site/arror_l.png);
    background-repeat: no-repeat;
    background-position: right center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

footer .last_col .right_col .naso:hover i {
    color: #fff;
}

footer .last_col .right_col .lang_drp {
    position: relative;
    width: 82px;
    display: inline-flex;
    vertical-align: middle;
    text-align: center;
    margin-left: 5px;
    height: 50px;
    line-height: 50px;
}

footer .last_col .right_col .lang_drp a {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
}

footer .last_col .right_col .lang_drp .de_lang {
    position: relative;
    padding-right: 8px;
}

footer .last_col .right_col .lang_drp .de_lang:after {
    content: '';
    background-image: url(../images/site/arrow_top.png);
    background-position: centercenter;
    background-repeat: no-repeat;
    width: 16px;
    height: 10px;
    right: -15px;
    margin: auto;
    bottom: 5px;
    z-index: 99999;
}

footer .last_col .right_col .lang_drp ul {
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: #efefef;
    border-radius: 6px;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    -o-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.15);
    padding: 9px 0px;
    text-align: left;
    padding-left: 20px;
    display: none;
}

footer .last_col .right_col .lang_drp ul li {
    list-style: none;
    margin-bottom: 5px;
}

footer .last_col .right_col .lang_drp ul li a {}

.hamburger {
    display: none;
}

footer .calander_icon {
    background-color: #131313;
}

footer .calander_icon .wrapper {
    position: relative;
    /* height: 99px; */
}

footer .calander_icon .wrapper>img {
    position: fixed;
    left: 227px;
    bottom: 73px;
    z-index: 91;
    cursor: pointer;
    transform-origin: center;
    transition: 0.5s ease all;
}

footer .calander_icon .wrapper>img:hover {
    transform: rotate(90deg);
}

footer .calander_icon a {
    position: fixed;
    left: 20px;
    bottom: 0;
    display: inline-block;
    border: 2px solid #fff;
    z-index: 9;
    width: 232px;
    border-radius: 20px;
}

footer .calander_icon a img {
    display: block;
    border-radius: 20px;
}

.shop_near[data-tooltip]:before {
    position: absolute;
    right: 0;
    top: 60px;
    background-color: #BF942F;
    color: #ffffff;
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
    padding: 0 40px;
    content: attr(data-tooltip);
    white-space: nowrap;
    display: none;
    font-size: 13px;
    font-weight: 400;
}

.shop_near[data-tooltip]:after {
    position: absolute;
    right: 80px;
    bottom: -14px;
    border-bottom: 7px solid #BF942F;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
    display: none;
}

.shop_near[data-tooltip]:hover:after,
.shop_near[data-tooltip]:hover:before {
    display: block;
}


/* animation */

.banner .slider {
    transform: translateY(70px);
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    opacity: 0;
}

.banner .slider.active {
    opacity: 1;
    transform: translateY(0px);
}

.box_sec .box,
.features .f_box,
/*.blog a,*/
.postopek h3,
.postopek p {
    transform: translateY(70px);
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    opacity: 0;
}

.box_sec .box.active,
.features .f_box.come-in,
.blog a.come-in,
.postopek h3.come-in,
.postopek p.come-in {
    opacity: 1;
    transform: translateY(0px);
}

header .middle_header .right_header .shop_near:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

header .middle_header .right_header .shop_near:hover span {
    color: #fff;
}

.backtop {
    position: fixed;
    right: 50px;
    bottom: 20px;
    z-index: 999;
    display: none;
    width: 100px;
}

.box_sec.inner_bg {
    background-image: url(../images/site/banner_bg2.png);
    background-repeat: repeat-x;
    background-size: cover;
    margin-bottom: 22px;
    position: relative;
}


/*.box_sec.inner_bg:after{content: '';position: absolute;left: 0;bottom:-22px;width: 100%;height: 23px;background-color: #efefef;}*/


/* bolha page */

.breadcrumb {
    padding: 10px 0px;
}

.breadcrumb a,
.breadcrumb p,
.breadcrumb span {
    font-size: 14px;
    font-weight: 300;
    display: inline-block;
    vertical-align: top;
    color: #BF942F;
    line-height: 30px;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 14px;
    font-weight: 300;
    color: #2c2c2c;
}

.breadcrumb span {
    margin: 0px 5px;
}

.breadcrumb a:hover {
    color: #BF942F;
}

.btn {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    background-color: #BF942F;
    padding: 6px 50px;
    border-radius: 20px;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    display: inline-block;
}

.btn img {
    margin-left: 5px;
}

.btn:hover {
    background-color: #e3af37;
    color: #fff;
}

.visite_blog {
    background-color: #efefef;
    padding-top: 36px;
}

.visite_blog .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.visite_blog .left_col {
    width: 785px;
}

.visite_blog .right_col {
    width: 370px;
}

.visite_blog .left_col>h2 {
    color: #131313;
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 20px;
}

.visite_blog .left_col>p {
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
    padding-right: 10px;
}

.bolha {
    min-height: 363px;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding-top: 15px;
    margin-bottom: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.bolha>img {
    display: block;
    margin: 0 auto;
    width: 500px;
}

.bolha .btn {
    margin-top: 24px;
}

.frequently_questions {}

.frequently_questions h3 {
    color: #131313;
    font-size: 30px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 20px;
}

.frequently_questions h4 {
    position: relative;
    background-color: #fff;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px 14px 20px;
    cursor: pointer;
}

.frequently_questions h4 span {
    width: 14px;
    height: 14px;
    position: absolute;
    right: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    display: inline-block;
    text-align: center;
    transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}

.frequently_questions h4 span.active {
    transform: rotate(90deg)
}

.frequently_questions .col {
    margin-bottom: 10px;
}

.frequently_questions label {
    display: block;
    text-align: right;
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 300;
}

.frequently_questions label a {
    display: inline-block;
    font-weight: 400;
    color: #BF942F;
}

.frequently_questions label a:hover {
    color: #131313;
}

.frequently_questions .text {
    padding: 14px 0px 20px 0px;
}

.frequently_questions p {
    color: #2c2c2c;
    font-size: 15px;
    line-height: 24px;
    font-weight: 300;
    padding-left: 10px;
}

.frequently_questions .icon {
    background-color: #e4e4e4;
    border-radius: 4px;
    margin-top: 26px;
    padding: 0px 20px;
    position: relative;
}

.frequently_questions .icon p {
    text-align: center;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
}

.frequently_questions .icon h5 {
    text-align: center;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
}

.frequently_questions .icon h6 {
    text-align: center;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
}

.frequently_questions .icon h5 span {
    display: inline-block;
    position: relative;
    margin-left: 5px;
    top: 5px;
}

.frequently_questions .icon_like {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    background-color: #e4e4e4;
    padding: 0px 20px;
}

.frequently_questions .icon_like.active {
    opacity: 0;
    pointer-events: none;
}

.frequently_questions .icon_like .like_bt {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.frequently_questions .icon_like .like_bt span {
    width: 18px;
    height: 20px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.frequently_questions .icon_like .like_bt span+span {
    margin-left: 11px;
}

.frequently_questions .icon_like .like_bt span+span:after {
    content: '';
    position: absolute;
    left: -5.5px;
    top: 0px;
    width: 1px;
    height: 18px;
    background-color: #131313;
}

.frequently_questions .icon_like .like_bt span img {
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
}

.frequently_questions .icon_like .like_bt span img+img {
    opacity: 0;
}

.frequently_questions .icon_like .like_bt span:hover img,
.frequently_questions .icon_like .like_bt span.active img {
    opacity: 0;
}

.frequently_questions .icon_like .like_bt span:hover .hov,
.frequently_questions .icon_like .like_bt span.active .hov
{
    opacity: 1;
}

.interested {
    margin-bottom: 63px;
}

.interested h3 {
    color: #131313;
    font-size: 30px;
    font-weight: 400;
    line-height: 60px;
    margin-bottom: 20px;
}

.interested .col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 27px;
}

.interested .col .l_col {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: bottom -28px center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.interested .col .l_col img {
    max-width: 60px;
}

.interested .col .r_col {
    width: calc(100% - 80px);
    padding-left: 22px;
}

.interested .col .r_col h4 a {
    color: #131313;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
}

.interested .col .r_col a {
    display: inline-block;
    font-weight: 400;
    color: #131313;
    font-size: 15px;
}

.interested .col .r_col a:hover {
    color: #BF942F;
}

.interested .col .r_col a img {
    margin-left: 5px;
    position: relative;
    top: 2px
}


/* filozofija page */

.philosophy_value {
    margin-top: 58px;
}

.philosophy_value .col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 27px;
}

.philosophy_value .col .l_col {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: bottom -28px center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.philosophy_value .col .r_col {
    width: calc(100% - 80px);
    padding-left: 31px;
}

.philosophy_value .col .r_col h4 {
    color: #131313;
    font-size: 20px;
    line-height: 20px;
    display: block;
    margin-bottom: 4px;
}

.philosophy_value .col .r_col p {
    color: #2c2c2c;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
}


/* fundation page */

.fundation_banner {
    min-height: 405px;
    background-repeat: no-repeat;
    background-size: cover;
}

.fundation_blog {
    background-color: #efefef;
    padding-top: 96px;
    padding-bottom: 61px;
}

.fundation_blog .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fundation_blog .col {
    width: 415px;
}

.fundation_blog .col+.col+.col {
    width: 285px;
}

.fundation_blog h2 {
    color: #131313;
    font-size: 36px;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 32px;
}

.fundation_blog h2 img {
    position: relative;
    top: 10px;
}

.fundation_blog p {
    color: #3c3c3c;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
}

.fundation_blog p strong {
    font-weight: 600;
}

.fundation_blog h3 {
    color: #131313;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}

.fundation_blog h4 {
    color: #131313;
    font-size: 26px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 29px;
}

.fundation_blog h5 {
    color: #131313;
    font-size: 15px;
    line-height: 16px;
}

.fundation_blog .col:first-child p {
    margin-bottom: 25px;
}

.fundation_blog .col>img {
    margin: 0 auto;
    display: block;
    margin-bottom: 37px;
}

.fundation_blog .col .col_in h3 {
    margin-top: 5px;
    margin-bottom: 16px;
}

.fundation_blog .col .col_in a {
    display: inline-block;
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    color: #131313;
    margin-top: 20px;
}

.fundation_blog .col .col_in a img {
    position: relative;
    margin-left: 5px;
    top: 5px;
}

.fundation_blog .col .col_in a em {
    font-style: normal;
    position: relative;
}

.fundation_blog .col .col_in a em:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #131313;
    content: '';
}

.fundation_blog .col .col_in a:hover {
    color: #BF942F;
}

.fundation_blog .col:last-child p strong {
    color: #131313;
}

.fundation_blog .col:last-child span {
    color: #BF942F;
}

.fundation_blog .col:last-child p>span {
    font-weight: bold;
}

.fundation_blog .col:last-child p a {
    color: #131313;
    font-weight: 600;
    font-weight: 15px;
}

.fundation_blog .col:last-child .tell {
    display: inline-block;
    color: #131313;
    font-weight: 600;
    font-size: 15px;
}

.fundation_blog .col:last-child .tell img {
    max-width: 7px;
    position: relative;
    top: 1px;
}

.fundation_blog .col:last-child .mail {
    font-weight: 300;
}


/* what_i_can */

.what_ask {
    margin-bottom: 62px;
}

.what_ask h3 {
    color: #131313;
    font-size: 24px;
    line-height: 18px;
    font-weight: 400;
    margin-top: 13px;
}

.what_ask h4 {
    color: #BF942F;
    font-size: 24px;
    line-height: 18px;
    font-weight: 400;
    margin-top: 55px;
    margin-bottom: 28px;
}

.what_ask .col {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.what_ask .col .l_col {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background-color: #fff;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #BF942F;
    background-position: center;
}

.what_ask .col .r_col {
    width: calc(100% - 86px);
    padding-left: 31px;
    position: relative;
    padding-bottom: 60px;
    transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}

.what_ask .col .r_col h5 a {
    color: #131313;
    font-size: 20px;
    line-height: 20px;
    display: block;
    margin-bottom: 4px;
}

.what_ask .col .r_col h5 a:hover {
    color: #BF942F;
}

.what_ask .col .r_col p {
    color: #2c2c2c;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
}

.what_ask .col .r_col .link {
    color: #BF942F;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    margin-top: 12px;
    display: inline-block;
}

.what_ask .col .r_col .link:hover {
    color: #131313
}

.what_ask .col .r_col .likemore {
    width: 122px;
    height: 35px;
    background-color: #fff;
    border-radius: 4px;
    text-align: left;
    background-image: url(../images/site/arrow_drp.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-left: 12px;
    display: inline-block;
    margin-top: 22px;
    font-size: 15px;
    font-weight: 600;
    color: #131313;
    line-height: 35px;
    position: absolute;
    left: 31px;
    bottom: 0;
}

.what_ask .col .r_col .likemore:hover {
    background-color: #000;
    color: #fff;
}

.what_ask .col .r_col.pad {
    padding-bottom: 0px;
}

.what_ask .col .inmore {}

.what_ask .col .inmore .btn.close {
    width: 100%;
    display: block;
    background-color: #fff;
    color: #131313;
    font-size: 15px;
    font-weight: 600;
    max-width: 77px;
    padding: 0;
    height: 35px;
    line-height: 35px;
    margin-top: 10px;
}

.what_ask .col .inmore .btn.close:hover {
    background-color: #000;
    color: #fff;
}

.what_ask .col .inmore h6 {
    color: #131313;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 25px;
}

.what_ask .col .inmore .logos {
    margin: 30px 0px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.what_ask .col .inmore .logos span {
    min-height: 62px;
    width: 24%;
    margin-right: 1.3%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what_ask .col .inmore .logos span img {
    max-width: 100%;
}

.what_ask .col .inmore .logos span:nth-child(4n) {
    margin-right: 0px;
}

.what_ask .col .inmore p {
    margin-bottom: 20px;
}

.what_ask .col .inmore p strong {
    color: #BF942F;
}

.what_ask .col .inmore p em {
    font-style: normal;
    font-size: 14px;
    color: #2c2c2c;
}


/* whare_we */

.whare_we {
    margin-bottom: 55px;
}

.whare_we h3 {
    color: #131313;
    font-size: 24px;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 24px;
}

.whare_we p {
    margin-bottom: 20px;
}

.whare_we p,
.whare_we label {
    color: #2c2c2c;
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
    display: block;
}

.whare_we label a {
    color: #2c2c2c;
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
    display: inline-block;
    margin-left: 2px;
    color: #131313;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
}

.whare_we label a:hover {
    color: #BF942F
}

.whare_we label a img {
    max-width: 9px;
    margin-left: 3px;
    position: relative;
    top: 3px;
}

.whare_we label a em {
    color: #BF942F;
}

.whare_we .map {
    margin-top: 43px;
}

.whare_we>img {
    margin-top: 43px;
}

.our_branch {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 25px;
}

.our_branch .col {
    width: 48%;
}

.our_branch .col h4 {
    color: #262D58;
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0px;
}

.our_branch .col p strong {
    display: block;
    color: #131313;
}


/* frequently page */

.frequently_page.frequently_questions .icon {
    margin-top: 49px;
}


/* purchase_page */

.purchase_page {
    background-color: #efefef;
    padding-top: 23px;
}

.way_case {
    position: relative;
}

.way_case h1 {
    color: #131313;
    font-size: 54px;
    font-weight: bold;
    text-align: center;
}

.way_case p {
    color: #131313;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.way_case p strong {
    font-weight: 600;
}

.way_case .step {
    background-color: #131313;
    padding: 38px 0px 22px 0px;
    position: relative;
}

.way_case .step>img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    pointer-events: none;
}

.way_case .step .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 68px;
}

.way_case .step .inner .col {
    border: 3px solid #BF942F;
    border-radius: 4px;
    min-height: 148px;
    width: 285px;
    text-align: center;
    padding-top: 14px;
    position: relative;
    flex: unset;
}

.way_case .step .inner .col+.col:after {
    content: '';
    position: absolute;
    left: -60.5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 18px;
    height: 31px;
    background-image: url(../images/site/right_arrow.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.way_case .step .inner .col h2 {
    color: #BF942F;
    font-size: 34px;
    line-height: 34px;
}

.way_case .step .inner .col .ordinal {
    color: #BF942F;
    font-size: 34px;
    line-height: 34px;
    font-weight: bold;
}

.way_case .step .inner .col h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 6px;
}

.way_case .step .inner_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.way_case .step .inner_link .col {
    width: 33.33%;
    text-align: center;
    position: relative;
    min-height: 78px;
}

.way_case .step .inner_link .col h4 {
    color: #BF942F;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
}

.way_case .step .inner_link .col .talk {
    color: #BF942F;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    display: block;
}

.way_case .step .inner_link .col .btn {
    background-color: #fff;
    color: #131313;
    margin-top: 10px;
}

.way_case .step .inner_link .col .btn img {
    position: relative;
    top: 2px;
}

.way_case .step .inner_link .col .btn:hover {
    background-color: #000;
    color: #fff;
}

.way_case .step .inner_link .col:first-child a {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    display: inline-block;
    background-image: url(../images/site/telk.svg);
    background-size: 13px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 28px;
}

.way_case .step .inner_link .col:first-child a:hover {
    color: #BF942F;
    background-image: url(../images/site/telkh.png);
}

.way_case .step .inner_link .col:first-child a img {
    position: relative;
    top: 4px;
    display: none;
}

.way_case .step .inner_link .col:nth-child(2) {
    height: 68px;
}

.way_case .step .inner_link .col:nth-child(2) img {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.way_case .step .inner_link .col:nth-child(2) img:first-child {
    left: 0;
}

.way_case .step .inner_link .col:nth-child(2) img:nth-child(2) {
    left: 0;
    right: 0;
    margin: 0 auto
}

.way_case .step .inner_link .col:nth-child(2) img:nth-child(3) {
    right: 0;
}

.categories {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 2px solid #fff;
    padding-bottom: 70px;
}

.categories_blog {
    background-color: #efefef;
    padding-top: 31px;
}

.categories .l_col {
    width: 285px;
}

.categories .l_col>h2 {
    margin-bottom: 12px;
}

.categories .l_col h2 {
    color: #131313;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.cat {
    list-style: none;
    background-color: #fff;
}

.cat li {
    display: block;
}

.cat>li {
    margin-bottom: 2px;
}

.cat li h3 {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #131313;
    padding: 16px 35px 16px 20px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}

.cat li h3.active {
    background-color: #BF942F;
}

.cat li h3 span {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 20px;
    top: 20px;
    background-size: contain;
    background-position: center;
    background-image: url(../images/site/arror_l.png);
    background-repeat: no-repeat;
    display: none;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    transform-origin: center
}

.cat li h3.active span {
    background-image: url(../images/site/arror_l_w.png);
    transform: rotate(90deg)
}

.cat li ul {
    list-style: none;
}

.cat li ul li {
    border-bottom: 1px solid #dfdfdf;
}

.cat li ul li:last-child {
    border-color: #efefef;
}

.cat li ul li a {
    display: block;
    background-color: #fff;
    color: #252525;
    font-size: 16px;
    font-weight: 300;
    padding: 12.5px 20px;
    padding-left: 30px;
}

.cat li ul li a:hover {
    color: #fff;
    background-color: #131313;
}

.cat li.drop span {
    display: block;
}

.object {
    margin-top: 23px;
}

.object h2 {
    line-height: 29px;
    margin-bottom: 11px;
}

.object .inner {}

.object .col {
    text-align: center;
    background-color: #fff;
}

.object .img_col {
    height: 141px;
    background-repeat: no-repeat;
    background-size: cover;
}

.object h4 {
    color: #131313;
    font-size: 20px;
    font-weight: 600;
    margin-top: 13px;
}

.object a {
    display: inline-block;
    color: #131313;
    font-size: 14px;
    font-weight: 600;
}

.object a:hover {
    color: #BF942F;
}

.object a img {
    margin-left: 5px;
    position: relative;
    top: 4px;
    display: inline-block !important;
    width: auto;
}

.object .text {
    padding-bottom: 16px;
}

.object .owl-nav {
    position: absolute;
    left: 0;
    top: 56px;
    width: 100%;
    height: 30px;
    display: block;
}

.object .owl-nav .owl-prev,
.object .owl-nav .owl-next {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    font-size: 0px;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    position: absolute;
    cursor: pointer;
}

.object .owl-nav .owl-prev {
    left: 10px;
    background-image: url(../images/site/arror_r.png);
}

.object .owl-nav .owl-next {
    right: 10px;
    background-image: url(../images/site/arror_l.png);
}

.object .owl-nav .owl-prev:hover,
.object .owl-nav .owl-next:hover {
    background-color: #131313
}

.categories .r_col {
    width: 895px;
    background-color: #fff;
    padding: 40px 20px 0px 38px;
}

.categories .frequently_questions h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
}

.categories .frequently_questions h4 {
    padding: 0px;
    color: #BF942F;
    font-size: 24px;
    font-weight: 600;
}

.categories .frequently_questions h4 span {
    display: none
}

.categories .frequently_questions p {
    padding: 0px;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 300;
}

.categories .frequently_questions .text {
    padding: 4px 0px 17px 0px;
}

.categories .frequently_page.frequently_questions .icon {
    margin-top: 14px;
    width: 330px;
}


/* prossess_buy page */

.visite_blog .left_col>h2 img {
    position: relative;
    top: 3.5px;
}

.prossess_buy {
    text-align: center;
}

.prossess_buy>.btn {
    background-color: #131313;
    padding: 13.5px 20px 13.5px 35px;
    margin-top: 24px;
}

.prossess_buy>.btn:hover {
    background-color: #000;
}

.prossess_buy>.btn img {
    position: relative;
    margin-left: 10px;
    top: 2px;
}

.prossess_buy h2 {
    color: #131313;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    margin-top: 27px;
    margin-bottom: 23px;
}

.prossess_buy h3 {
    color: #131313;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    margin-top: 27px;
    margin-bottom: 23px;
}

.prossess_buy .inner .col {
    text-align: left;
    margin-bottom: 10px;
    background-color: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.prossess_buy .inner .col label .h3_title {
    position: relative;
    background-color: #BF942F;
    padding: 8px 30px 7.9px 17.5px;
    display: block;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    line-height: 48px;
    border-radius: 4px;
    cursor: pointer;
    margin: unset;
    background: transparent;
    border: 0;
    font-size: 100%;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
    display: inline;
}

.prossess_buy .inner .col label {
    position: relative;
    background-color: #BF942F;
    padding: 8px 30px 7.9px 17.5px;
    display: block;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    line-height: 48px;
    border-radius: 4px;
    cursor: pointer;
}

.prossess_buy .inner .col label em {
    position: absolute;
    transition: 0.4s ease all;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto 0;
    width: 14px;
    height: 14px;
    display: block;
}

.prossess_buy .inner .col label em img {
    display: inherit;
}

.prossess_buy .inner .col label.active em {
    transform: rotate(90deg);
}

.prossess_buy .inner .col label>img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
    width:45px;
}

.prossess_buy .inner .col label span {
    font-size: 34px;
    font-weight: bold;
    color: #131313;
    display: inline-block;
    line-height: 48px;
    margin-right: 20px;
    vertical-align: middle;
}

.prossess_buy .inner .col .text {
    padding: 24px 22px;
}

.prossess_buy .inner .col .text p {
    color: #2c2c2c;
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
}

.prossess_buy .inner_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 34px;
    margin-bottom: 70px;
}

.prossess_buy .inner_link .col {
    width: 45%;
    text-align: center;
    position: relative;
}

.prossess_buy .inner_link .col:first-child {
    width: 39%;
}

.prossess_buy .inner_link .col:nth-child(2) {
    width: auto;
}

.prossess_buy .inner_link .col h4 {
    color: #BF942F;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.prossess_buy .inner_link .col .talk1 {
    color: #BF942F;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.prossess_buy .inner_link .col:nth-child(3) h4 {
    font-size: 16px;
}

.prossess_buy .inner_link .col .btn {
    background-color: #131313;
    color: #fff;
    margin-top: 10px;
    padding: 13.5px 42.6px;
}

.prossess_buy .inner_link .col .btn img {
    position: relative;
    top: 2px;
}

.prossess_buy .inner_link .col .btn:hover {
    background-color: #000;
    color: #fff;
}

.prossess_buy .inner_link .col:first-child a {
    color: #131313;
    font-size: 30px;
    font-weight: 800;
    display: inline-block;
    padding-left: 28px;
    background-image: url(../images/site/telk.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: left center;
}

.prossess_buy .inner_link .col:first-child a img {
    position: relative;
    top: 4px;
    display: none;
}

.prossess_buy .inner_link .col:first-child a:hover {
    color: #BF942F;
}

.investing_form {
    position: relative;
    background-color: #fff;
    margin-top: 36px;
    padding: 32px 20px 45px 30px;
    margin-bottom: 100px;
}
/*
.investing_form:after {
    width: 100%;
    height: 6px;
    content: '';
    background-image: url(../images/site/line_img.png);
    background-repeat: repeat-x;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}*/

.investing_form .contect {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.investing_form .contect .l_col {
    width: 265px;
}

.investing_form .contect .r_col {
    width: 440px;
}

.investing_form .contect label {
    display: block;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
}

.investing_form .contect label span {
    color: #BF942F;
}

.investing_form .contect .in {
    width: 100%;
    height: 50px;
    background-color: #efefef;
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Poppins';
    border: 1px solid transparent;
    padding-left: 10px;
    outline: none;
    resize: none;
    margin-bottom: 27px;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}

.investing_form .contect .in:focus {
    border-color: #131313;
}

.investing_form .contect select {
    background-image: url(../images/site/blue_arrow.png);
    background-repeat: no-repeat;
    background-position: right 20px center;
    -webkit-appearance: none;
}

.investing_form .contect textarea.in {
    margin-bottom: 0px;
    height: 255px;
}

.investing_form .sub {
    width: 100%;
    max-width: 268px;
    height: 50px;
    border-radius: 4px;
    color: #fff;
    background-color: #BF942F;
    background-image: url(../images/site/arror_l_w.png);
    background-repeat: no-repeat;
    background-position: right 95px center;
    margin: 0 auto;
    margin-right: 64px;
    font-size: 17px;
    font-weight: bold;
    display: block;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    margin-top: 31px;
}

.investing_form .sub:hover {
    background-color: #131313;
}

.investing_form .up_img {
    position: relative;
    width: 175px;
    /* position: absolute; */
    /* left:30px; */
    /* bottom:45px; */
}

.investing_form .up_img span {
    display: block;
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 400;
}

.investing_form .up_img .col {
    position: relative;
    height: 50px;
    background-color: #131313;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.investing_form .up_img .col input[type="file"] {
    z-index: -1;
    position: absolute;
    opacity: 0;
}

.investing_form .up_img .col label {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    line-height: 50px;
    display: block;
    text-align: center;
    transition: 0.4s ease all;
}

.investing_form .up_img .col label img {
    position: relative;
    margin-right: 5px;
}

.investing_form .up_img .col label:hover {
    background-color: #BF942F
}

.investing_form .up_img #file-upload-filename {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    padding: 0px 10px;
    line-height: 50px;
    background-color: #131313;
    pointer-events: none;
    width: 100%;
}

.investing_form .popup {
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 5;
    text-align: center;
    padding: 200px 110px;
    padding-bottom: 30px;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
}

.investing_form .popup.active {
    opacity: 1;
    pointer-events: auto;
}

.investing_form .popup>img {
    position: absolute;
    top: 30px;
    right: 30px;
}

.investing_form .popup h3 {
    font-size: 30px;
    line-height: 30px;
    color: #131313;
}

.investing_form .popup h3 span {
    color: #BF942F
}

.investing_form .popup p {
    color: #2c2c2c;
    font-size: 17px;
    font-weight: 400;
    margin-top: 22px;
}

.investing_form .popup label {
    display: block;
    text-align: right;
    margin-top: 48px;
}

.investing_form .popup label img {
    display: inline-block;
    margin-left: 9px;
    top: 4px;
    position: relative;
}

.investing_form .popup label span {
    display: inline-block;
    color: #2c2c2c;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
}


/*what_buy*/

.what_buy {
    position: relative;
    padding: 115px 0px;
    background-size: cover;
    background-position: center center;
}

.what_buy:after {
    position: absolute;
    content: '';
    width: 100%;
    background-color: #131313;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.85;
}

.what_buy .wrapper {
    position: relative;
    z-index: 9;
}

.what_buy .left {
    float: left;
    text-align: center;
    width: 65%;
    padding-top: 108px;
}

.what_buy .left h2 {
    font-size: 36px;
    color: #ffffff;
    font-weight: 100;
}

.what_buy .left h2 strong {
    font-style: normal;
    font-weight: bold;
}

.what_buy .left h2 em {
    font-style: normal;
    color: #BF942F;
    font-weight: bold;
}

.what_buy .left h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 100;
    margin-top: 30px;
}

.what_buy .left h3 strong {
    font-style: normal;
    font-weight: bold;
}

.what_buy .left h3 em {
    font-style: normal;
    font-weight: bold;
    color: #BF942F;
}

.what_buy .left .arrow_right {
    position: relative;
    text-align: right;
    top: 14px;
}

.what_buy .left .box_section .box {
    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding-right: 120px;
    position: relative;
}

.what_buy .left .box_section .box:after {
    background-image: url(../images/site/big_arrow.png);
    content: '';
    position: absolute;
    right: 5%;
    bottom: 30%;
    width: 90px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center center;
}

.what_buy .left .box_section .box:last-child:after {
    display: none;
}

.what_buy .left .box_section .box:last-child {
    padding-right: 0;
}

.what_buy .left .box_section .box h5 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 12px;
}

.what_buy .right_from {
    float: right;
    width: 34.5%;
    background-color: #efefef;
}

.what_buy .right_from .head_title {
    background-color: #BF942F;
    text-align: center;
}

.what_buy .right_from .head_title h4 {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    line-height: 82px;
}

.what_buy .right_from .from_body {
    padding: 30px 30px 20px 30px;
}

.what_buy .right_from .from_body label {
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 7px;
    display: block;
}

.what_buy .right_from .from_body label img {
    display: inline-block;
    vertical-align: middle;
}

.what_buy .right_from .from_body .in {
    background-color: #ffffff;
    width: 100%;
    line-height: 50px;
    border-radius: 0px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.what_buy .right_from .from_body select.in {
    background-image: url(../images/site/arrow_in.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0px;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Poppins';
    outline: none;
}

.what_buy .right_from .from_body .submit {
    background-color: #BF942F;
    line-height: 50px;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
    width: 270px;
    margin: 0 auto;
    display: block;
    background-image: url(../images/site/submit_arrow.png);
    background-repeat: no-repeat;
    background-position: 175px center;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.what_buy .right_from .from_body .submit:hover {
    background-color: #131313;
}

.what_buy .right_from .from_body textarea {
    min-height: 118px;
    border: 0px;
    resize: none;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Poppins';
    padding-top: 10px;
}

.what_buy_mes {
    text-align: center;
}

.what_buy_mes h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: bold;
}

.what_buy_mes h2 i {
    color: #BF942F;
    font-style: normal;
}

.what_buy_mes h6 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    margin-top: 5px;
}

.what_buy_mes .testo_msg {
    text-align: right;
    padding-top: 50px;
    max-width: 510px;
    margin: 0 auto;
}

.what_buy_mes .testo_msg img {
    display: inline-block;
    vertical-align: middle;
}

.what_buy_mes .testo_msg p {
    display: inline-block;
    vertical-align: middle;
    color: #ffffff;
    font-weight: 100;
    font-size: 15px;
    padding-right: 8px;
}

.business_partners {
    background-color: #efefef;
    text-align: center;
}

.business_partners .business_heading {
    padding: 40px 0px;
}

.business_partners .business_heading h2 {
    color: #131313;
    font-size: 36px;
    font-weight: 100;
}

.business_partners .business_heading h2 strong {
    font-weight: bold;
}

.business_partners .business_heading h2 i {
    color: #BF942F;
    font-style: normal;
    font-weight: bold;
}

.business_partners .business_heading img {
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.partners_list {}

.partners_list .partner {
    background-size: cover;
    background-position: center center;
    padding: 55px 0px 45px 0px;
    position: relative;
    z-index: 9;
}

.partners_list .partner.bg1:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    opacity: 0.87;
    z-index: -1;
}

.partners_list .partner.bg2:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #131313;
    opacity: 0.87;
    z-index: -1;
}

.partners_list .partner.bg3:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: #BF942F;
    opacity: 0.87;
    z-index: -1;
}

.partners_list .partner h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
}

.partners_list .partner p {
    font-size: 20px;
    font-weight: 400;
}

.partners_list .avtar_img {
    display: block;
    margin-top: 38px;
    margin-bottom: 35px;
}

.partners_list .avtar_img span {
    display: inline-block;
    vertical-align: middle;
    width: 140px;
    height: 140px;
    background-size: cover;
    background-position: left center;
    border-radius: 50%;
    margin: 0px 10px;
}

.partners_list .partner h4 {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 20px;
}

.partners_list .partner ul {
    margin-bottom: 38px;
}

.partners_list .partner ul li {
    list-style: none;
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.partners_list .partner ul li p {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
    font-size: 17px;
}

.partners_list .partner ul li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.partners_list .btn {
    background-color: #BF942F;
    line-height: 61px;
    text-align: center;
    border-radius: 5px;
    color: #ffffff;
    font-size: 19.96px;
    padding: 0px 22px;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.partners_list .btn.light {
    background-color: #ffffff;
    color: #32375e;
}

.partners_list .btn:hover {
    background-color: #131313;
    color: #ffffff;
}

.partners_list .partner.dark h3 {
    color: #131313;
}

.partners_list .partner.dark p {
    color: #3c3c3c;
}

.partners_list .partner.dark h4 {
    color: #131313;
}

.partners_list .partner.dark ul li p {
    color: #3c3c3c;
}

.partners_list .partner.light h3 {
    color: #ffffff;
}

.partners_list .partner.light p {
    color: #ffffff;
}

.partners_list .partner.light h4 {
    color: #ffffff;
}


/* popup */

#popup .co_from ::-webkit-input-placeholder {
    color: #8a8a8a;
}

#popup .co_from :-moz-placeholder {
    color: #8a8a8a;
}

#popup .co_from ::-moz-placeholder {
    color: #8a8a8a;
}

#popup .co_from :-ms-input-placeholder {
    color: #8a8a8a;
}

#popup .co_from ::-ms-input-placeholder {
    color: #8a8a8a;
}

#popup .co_from :placeholder-shown {
    color: #8a8a8a;
}

#popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

#popup.active {
    opacity: 1;
    visibility: visible;
}

#popup .overlay {
    z-index: -1;
    background-color: #131313;
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
}

#popup .po_outer {
    display: table;
    position: absolute;
    width: 100%;
    height: 100%;
}

#popup .po_inner {
    display: table-cell;
    vertical-align: middle;
}

#popup .co_from {
    width: 415px;
    margin: 0 auto;
    background-color: #efefef;
    position: relative;
}

#popup .co_from .close {
    position: absolute;
    top: 18px;
    right: 20px;
    transition: 0.5s ease all;
    transform-origin: center;
}

#popup .co_from .close:hover {
    transform: rotate(90deg)
}

#popup .co_from h2 {
    line-height: 83px;
    background-color: #BF942F;
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
}

#popup .co_from .from_body {
    padding: 30px 30px 20px 30px;
}

#popup .co_from .from_body label {
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 7px;
    display: block;
}

#popup .co_from .from_body label img {
    display: inline-block;
    vertical-align: middle;
}

#popup .co_from .from_body .in {
    background-color: #ffffff;
    width: 100%;
    line-height: 50px;
    border-radius: 0px;
    margin-bottom: 20px;
    padding-left: 10px;
    border: 0px;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Poppins';
}

#popup .co_from .from_body select.in {
    background-image: url(../images/site/arrow_in.png);
    background-repeat: no-repeat;
    background-position: 95% center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0px;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Poppins';
    outline: none;
    border: 0px;
}

#popup .co_from .from_body .submit {
    background-color: #BF942F;
    line-height: 50px;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 6px;
    width: 270px;
    margin: 0 auto;
    display: block;
    background-image: url(../images/site/submit_arrow.png);
    background-repeat: no-repeat;
    background-position: 175px center;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

#popup .co_from .from_body .submit:hover {
    background-color: #131313;
}

#popup .co_from .from_body textarea {
    min-height: 118px;
    border: 0px;
    resize: none;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Poppins';
    padding-top: 10px;
}

#popup .co_from .from_body .check_in {
    margin-bottom: 20px;
}

#popup .co_from .from_body [type="checkbox"]:not(:checked),
#popup .co_from .from_body [type="checkbox"]:checked {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#popup .co_from .from_body input[type="checkbox"]+label span {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    width: 22px;
    height: 22px;
    margin-right: 12px;
}

#popup .co_from .from_body input[type="checkbox"]+label span:after {
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    cursor: pointer;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    background-color: #ffffff;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

#popup .co_from .from_body input[type="checkbox"]:checked+label span:before {
    opacity: 1;
    width: 4px;
    height: 10px;
    transform-origin: left top;
    border-right: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    content: '';
    position: absolute;
    animation-duration: 800ms;
    animation-timing-function: ease;
    animation-name: checkmark;
    transform: scaleX(-1) rotate(135deg);
    bottom: 0px;
    top: 15px;
    left: -6px;
    right: 0px;
    margin: auto;
    z-index: 9;
}

#popup .co_from .from_body input[type="checkbox"]:checked+label span:after {
    background-color: #BF942F;
}

.thankyou_message {
    display: none;
}

#popup .co_from .thanks {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    background-color: #fff;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s ease all;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

#popup .co_from .thanks.active {
    opacity: 1;
    pointer-events: auto;
}

#popup .co_from .thanks h2 {
    color: #131313;
    font-size: 48px;
    font-weight: bold;
    line-height: 70px;
    background-color: transparent;
}

#popup .co_from .thanks h2 i {
    color: #BF942F;
    font-style: normal;
}

#popup .co_from .thanks h6 {
    color: #131313;
    font-size: 17px;
    font-weight: 400;
    margin-top: 5px;
}

#popup .co_from .thanks .testo_msg {
    text-align: right;
    padding-top: 50px;
    max-width: 510px;
    margin: 0 auto;
}

#popup .co_from .thanks .testo_msg p {
    display: inline-block;
    vertical-align: middle;
    color: #131313;
    font-weight: 100;
    font-size: 15px;
    padding-right: 8px;
}

#popup .co_from .thanks .testo_msg img {
    display: inline-block;
    vertical-align: middle;
}

#popup .co_from .close {
    z-index: 999;
}

#popup .co_from .close .hovar {
    display: none;
}

#popup .co_from .close.active img {
    display: none;
}

#popup .co_from .close.active .hovar {
    display: block;
}


/* vip */

.vip {
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
    position: relative;
}

.vip .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.vip .left_col {
    width: calc(100% - 415px);
    padding-right: 40px;
    text-align: center;
    padding-left: 70px;
}

.vip .right_col {
    width: 415px;
}

.vip .left_col h2 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
    font-weight: 300;
    position: relative;
}

.vip .left_col h2 img {
    /*position: absolute;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -12px;
}

.vip .left_col h3 {
    color: #fff;
    font-size: 24px;
    line-height: 27px;
    font-weight: 300;
}

.vip .left_col .anonimno {
    color: #fff;
    font-size: 24px;
    line-height: 27px;
    font-weight: 300;
}

.vip .left_col .inner {
    padding-left: 28px;
    margin-top: 38px;
}

.vip .left_col ul {
    list-style: none;
}

.vip .left_col ul li {
    display: block;
    padding-left: 28px;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    background-image: url(../images/site/right_img.png);
    background-repeat: no-repeat;
    background-position: left top 4px;
}

.vip .left_col ul li.line {
    background-image: none;
}

.vip .left_col .inner {
    padding-left: 25px;
}

.vip .blog1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
    margin-top: 35px;
}

.vip .blog1 .col {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
    margin-bottom: 28px;
}

.vip .blog1 .col h4 {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding-left: 15px;
    width: calc(100% - 90px)
}

.vip .right_col {
    width: 415px;
}

.vip .right_col .inner {
    background-color: #2e2e2e;
    text-align: center;
    padding-bottom: 33px;
}

.vip .right_col .inner .wrap {
    padding: 0px 30px;
}

.vip .right_col h2 {
    color: #fff;
    font-size: 32px;
    line-height: 85px;
    border-bottom: 1px solid #424242;
}

.vip .right_col h3 {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    margin-top: 24px;
}

.vip .right_col .tell {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    margin-top: 20px;
    display: inline-block;
    background-image: url(../images/site/telk.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 28px;
}

.vip .right_col .tell img {
    position: relative;
    top: 4px;
    display: none;
}

.vip .right_col .tell:hover {
    color: #BF942F;
    background-image: url(../images/site/telkh.png);
}

.vip .right_col h4 {
    color: #fff;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    margin-top: 16px;
}

.vip .right_col .mail {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.vip .right_col .mail span {
    color: #BF942F;
}

.vip .right_col .mail:hover {
    color: #BF942F
}

.vip .right_col .mail:hover span {
    color: #fff;
}

.vip .right_col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 8px;
}

.vip .right_col h5 img {
    position: relative;
    top: 6px;
    margin-left: 2px;
}

.vip .right_col textarea {
    height: 118px;
    background-color: #fff;
    resize: none;
    width: 100%;
}

.vip .right_col input[type=email] {
    height: 32px;
    background-color: #fff;
    resize: none;
    width: 100%;
}

.vip .right_col .up_img {
    width: 175px;
    position: relative;
    margin-top: 19px;
}

.vip .right_col .up_img span {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}

.vip .right_col .up_img h6 {
    position: absolute;
    left: 190px;
    bottom: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    width: 160px;
    line-height: 50px;
}

.vip .right_col .up_img .col {
    position: relative;
    height: 50px;
    background-color: #bbbbbb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.vip .right_col .up_img .col input[type="file"] {
    z-index: -1;
    position: absolute;
    opacity: 0;
    width: 100%;
}

.vip .right_col .up_img .col label {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    transition: 0.4s ease all;
    width: 175px;
    display: inline-block;
}

.vip .right_col .up_img .col label img {
    position: relative;
    margin-right: 5px;
}

.vip .right_col .up_img .col label:hover {
    background-color: #BF942F
}

.vip .right_col .up_img #file-upload-filename {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    padding: 0px 10px;
    line-height: 50px;
    background-color: #bbbbbb;
    pointer-events: none;
    width: 100%;
}

.vip .sub {
    width: 100%;
    max-width: 270px;
    height: 50px;
    border-radius: 4px;
    color: #fff;
    background-color: #BF942F;
    background-image: url(../images/site/arror_l_w.png);
    background-repeat: no-repeat;
    background-position: right 95px center;
    margin: 0 auto;
    font-size: 17px;
    font-weight: bold;
    display: block;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    margin-top: 31px;
}

.vip .sub:hover {
    background-color: #bbbbbb;
}

.vip .popup {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/site/vip_bg.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
}

.vip .popup.active {
    opacity: 1;
    pointer-events: auto;
}

.vip .popup .inner {
    text-align: center;
    width: 579px;
    margin: 0 auto;
}

.vip .popup .inner h2 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
    position: relative;
    margin-bottom: 43px;
    font-family: 'Roboto Slab';
    /*text-transform: uppercase;*/
}

.vip .popup .inner h2 img {
    /*position: absolute;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -20px;
}

.vip .popup .inner h3 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
}

.vip .popup .inner h3 span {
    color: #BF942F;
}

.vip .popup .inner p {
    color: #fff;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 15px;
}

.vip .popup label {
    display: block;
    text-align: right;
    margin-top: 46px;
}

.vip .popup label span {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
}

.vip .popup label img {
    display: inline-block;
    margin-left: 9px;
    top: 4px;
    position: relative;
}


/* free_estimate */

.estimate {
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
    position: relative;
}

.estimate .wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.estimate .left_col {
    width: calc(100% - 415px);
    padding-right: 40px;
    text-align: center;
    padding-left: 70px;
}

.estimate .right_col {
    width: 415px;
}

.estimate .left_col h2 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
    font-weight: 300;
    position: relative;
}

.estimate .left_col h2 img {
    /*position: absolute;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -12px;
}

.estimate .left_col h3 {
    color: #fff;
    font-size: 24px;
    line-height: 27px;
    font-weight: 300;
}

.estimate .left_col .inner {
    padding-left: 28px;
    margin-top: 38px;
}

.estimate .left_col ul {
    list-style: none;
}

.estimate .left_col ul li {
    display: block;
    padding-left: 28px;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-align: left;
    background-image: url(../images/site/right_img.png);
    background-repeat: no-repeat;
    background-position: left top 4px;
}

.estimate .left_col ul li.line {
    background-image: none;
}

.estimate .left_col .inner {
    padding-left: 25px;
}

.estimate .blog1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    margin-top: 35px;
}

.estimate .blog1 .col {
    width: 20%;
    /*display: flex;*/
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
    margin-bottom: 28px;
}

.estimate .blog1 .col h4 {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    padding-left: 0px;
    width: calc(100% - 90px)
}

.estimate .right_col {
    width: 415px;
}

.estimate .right_col .inner {
    background-color: #ffffff;
    text-align: center;
    padding-bottom: 33px;
}

.estimate .right_col .inner .wrap {
    padding: 0px 30px;
}

.estimate .right_col h2 {
    color: #131313;
    font-size: 32px;
    line-height: 85px;
    border-bottom: 1px solid #424242;
}

.estimate .right_col h3 {
    color: #131313;
    font-size: 18px;
    line-height: 24px;
    /*font-weight: 300;*/
    margin-top: 24px;
}

.estimate .right_col .tell {
    font-size: 30px;
    font-weight: 900;
    color: #131313;
    margin-top: 20px;
    display: inline-block;
    background-image: url(../images/site/telk.svg);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 28px;
}

.estimate .right_col .tell img {
    position: relative;
    top: 4px;
    display: none;
}

.estimate .right_col .tell:hover {
    color: #BF942F;
    background-image: url(../images/site/telkh.png);
}

.estimate .right_col h4 {
    color: #131313;
    font-size: 18px;
    line-height: 24px;
    /*font-weight: 300;*/
    margin-top: 16px;
}

.estimate .right_col .mail {
    font-size: 20px;
    font-weight: 900;
    color: #131313;
}

.estimate .right_col .mail span {
    color: #BF942F;
}

.estimate .right_col .mail:hover {
    color: #BF942F
}

.estimate .right_col .mail:hover span {
    color: #131313;
}

.estimate .right_col h5 {
    color: #131313;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 8px;
}

.estimate .right_col h5 img {
    position: relative;
    top: 6px;
    margin-left: 2px;
}

.estimate .right_col textarea {
    height: 118px;
    background-color: #fff;
    resize: none;
    width: 100%;
}

.estimate .right_col input[type=email] {
    height: 32px;
    background-color: #fff;
    resize: none;
    width: 100%;
}

.estimate .right_col .up_img {
    width: 175px;
    position: relative;
    margin-top: 19px;
}

.estimate .right_col .up_img span {
    display: block;
    color: #131313;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}

.estimate .right_col .up_img h6 {
    position: absolute;
    left: 190px;
    bottom: 0;
    color: #131313;
    font-size: 13px;
    font-weight: 400;
    width: 160px;
    line-height: 50px;
}

.estimate .right_col .up_img .col {
    position: relative;
    height: 50px;
    background-color: #bbbbbb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.estimate .right_col .up_img .col input[type="file"] {
    z-index: -1;
    position: absolute;
    opacity: 0;
    width: 100%;
}

.estimate .right_col .up_img .col label {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    transition: 0.4s ease all;
    width: 175px;
    display: inline-block;
}

.estimate .right_col .up_img .col label img {
    position: relative;
    margin-right: 5px;
}

.estimate .right_col .up_img .col label:hover {
    background-color: #BF942F
}

.estimate .right_col .up_img #file-upload-filename {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    padding: 0px 10px;
    line-height: 50px;
    background-color: #bbbbbb;
    pointer-events: none;
    width: 100%;
}

.estimate .sub {
    width: 100%;
    max-width: 270px;
    height: 50px;
    border-radius: 4px;
    color: #fff;
    background-color: #BF942F;
    background-image: url(../images/site/arror_l_w.png);
    background-repeat: no-repeat;
    background-position: right 95px center;
    margin: 0 auto;
    font-size: 17px;
    font-weight: bold;
    display: block;
    transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    margin-top: 31px;
}

.estimate .sub:hover {
    background-color: #131313;
}

.estimate .popup {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/site/vip_bg.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -o-transition: 0.4s ease all;
}

.estimate .popup.active {
    opacity: 1;
    pointer-events: auto;
}

.estimate .popup .inner {
    text-align: center;
    width: 579px;
    margin: 0 auto;
}

.estimate .popup .inner h2 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
    position: relative;
    margin-bottom: 43px;
    font-family: 'Roboto Slab';
    text-transform: uppercase;
}

.estimate .popup .inner h2 img {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -20px;
}

.estimate .popup .inner h3 {
    color: #fff;
    font-size: 48px;
    line-height: 50px;
}

.estimate .popup .inner h3 span {
    color: #BF942F;
}

.estimate .popup .inner p {
    color: #fff;
    font-size: 17px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 15px;
}

.estimate .popup label {
    display: block;
    text-align: right;
    margin-top: 46px;
}

.estimate .popup label span {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
}

.estimate .popup label img {
    display: inline-block;
    margin-left: 9px;
    top: 4px;
    position: relative;
}


/* animation */

.padanimate {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.padanimate.come-in {
    opacity: 1;
    transform: translateY(0);
}

.visite_blog .left_col>h2,
.bolha,
.visite_blog .left_col>p {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.bolha {
    transition-delay: 0.1s
}

.visite_blog .left_col>p {
    transition-delay: 0.2s
}

.visite_blog .left_col>h1.active,
.bolha.active,
.visite_blog .left_col>p.active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s
}

.visite_blog .left_col>h2.active,
.bolha.active,
.visite_blog .left_col>p.active {
    opacity: 1;
    transform: translateY(0);
}

.visite_blog .left_col .kontakt {
    margin-bottom: 20px;
    color: #131313;
}

.visite_blog .left_col .kje {
    margin-bottom: 20px;
    color: #131313;
}

.visite_blog .left_col .prodaja {
    margin-bottom: 20px;
    color: #131313;
}

.frequently_questions h3,
.frequently_questions .col,
.frequently_questions label,
.interested h3,
.interested .col {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.frequently_questions .col {
    transition-delay: 0.1s;
}

.frequently_questions label {
    transition-delay: 0.4s;
}

.interested h3 {
    transition-delay: 0.2s;
}

.interested .col {
    transition-delay: 0.3s;
}

.frequently_questions h3.active,
.frequently_questions .col.active,
.frequently_questions label.active,
.interested h3.active,
.interested .col.active {
    opacity: 1;
    transform: translateY(0);
}

.business_partners .business_heading h2,
.partners_list .partner.bg11 .wrapper {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.partners_list .partner.bg11 .wrapper {
    transition-delay: 0.2s
}

.business_partners .business_heading h2.active,
.partners_list .partner.bg11 .wrapper.active {
    opacity: 1;
    transform: translateY(0);
}

.philosophy_value .col,
.investing_form {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.investing_form {
    transition-delay: 0.3s
}

.philosophy_value .col.active,
.investing_form.active {
    opacity: 1;
    transform: translateY(0);
}

.prossess_buy>.btn,
.prossess_buy h3,
.prossess_buy .inner .col,
.prossess_buy .inner_link {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.prossess_buy>.btn {
    transition-delay: 0.2s;
}

.prossess_buy h3 {
    transition-delay: 0.3s;
}

.prossess_buy .inner .col {
    transition-delay: 0.4s;
}

.prossess_buy .inner_link {
    transition-delay: 0.5s;
}

.prossess_buy.active>.btn,
.prossess_buy.active h3,
.prossess_buy.active .inner .col,
.prossess_buy.active .inner_link {
    opacity: 1;
    transform: translateY(0);
}

.way_case h1,
.way_case p,
.way_case .step .inner .col,
.way_case .step .inner_link,
.whare_we {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.way_case h1,
.way_case p {
    transition-delay: 0.2s;
}

.way_case .step .inner .col {
    transition-delay: 0.3s;
}

.way_case .step .inner_link {
    transition-delay: 0.4s;
}

.way_case h1.active,
.way_case p.active,
.way_case .step.active .inner .col,
.way_case .step.active .inner_link,
.whare_we.active {
    opacity: 1;
    transform: translateY(0);
}

.what_ask .col,
.what_ask h3,
.what_ask h4 {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.what_ask .col.active,
.what_ask.active h3,
.what_ask.active h4 {
    opacity: 1;
    transform: translateY(0);
}

.what_buy .left,
.what_buy .right_from {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease all;
    -moz-transition: 0.5s ease all;
    -webkit-transition: 0.5s ease all;
    -o-transition: 0.5s ease all;
}

.what_buy .right_from {
    transition-delay: 0.2s
}

.what_buy .left.active,
.what_buy .right_from.active {
    opacity: 1;
    transform: translateY(0);
}


/* end animation */


/*Kamini*/

.new_page {
    background-color: #efefef;
    padding-bottom: 85px;
    padding-top: 40px;
}

#menjalniska-lista {
    background-color: #fff;
}

.new_page .top_sec {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.new_page .top_sec .col {
    width: 670px;
    background-color: #131313;
}

.new_page .top_sec .col.col2 {
    width: 510px;
}

.new_page .top_sec .col .top_title {
    padding: 20px 0;
    border-bottom: 1px solid #131313;
}

.new_page .top_sec .col .top_title h2 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    color: #fff;
}

.new_page .top_sec .col.col2 .top_title h2 {
    font-size: 20px;
    font-weight: bold;
}

.new_page .top_sec .col .bottom_detail {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 22px;
}

.new_page .top_sec .col .bottom_detail .sec {
    width: 50%;
    padding: 0px 50px 0 30px
}

.new_page .top_sec .col .bottom_detail .sec+.sec {
    padding-left: 0;
    margin-top: 20px;
}

.new_page .top_sec .col .bottom_detail .sec label {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
}

.new_page .top_sec .col .bottom_detail .sec label:first-child {
    margin-top: 0;
}

.new_page .top_sec .col .bottom_detail .sec .in {
    height: 50px;
    background-image: url(../images/site/bottom_arrow.png);
    background-position: left 95% center;
    border: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none !important;
    background-repeat: no-repeat;
    font-size: 14px;
    color: #2c2c2c;
    padding-left: 10px;
    background-color: #fff;
    -webkit-border-radius: 0px;
}

.new_page .top_sec .col .bottom_detail #weight {
    -webkit-border-radius: 0px;
}

.new_page .top_sec .col .bottom_detail .sec .in:focus {
    outline: none;
}

.new_page .top_sec .col .bottom_detail .sec p {
    font-size: 22px;
    font-weight: 300;
    color: #fff;
    line-height: 29px;
    padding-left: 0;
}

.new_page .top_sec .col .bottom_detail .sec p span {
    font-weight: bold;
}

.new_page .top_sec .col .bottom_detail .sec h3 {
    font-size: 30px;
    font-weight: bold;
    color: #BF942F;
    line-height: 29px;
}

.new_page .top_sec .col .bottom_detail .sec .calculate {
    font-size: 30px;
    font-weight: bold;
    color: #BF942F;
    line-height: 29px;
}

.new_page .top_sec .col .bottom_detail .sec .sec_nd {
    margin-top: 40px;
}

.new_page .top_sec .col .bottom_detail .sec .sec_nd p {
    font-size: 18px;
}

.new_page .top_sec .col .bottom_detail .sec .sec_nd h3 {
    font-size: 24px;
}

.new_page .top_sec .col p {
    font-size: 13px;
    font-weight: 300px;
    padding-left: 30px;
    color: #BF942F;
    margin: 10px 0;
}

.new_page .top_sec .col.col2 {
    width: 510px;
}

.new_page .top_sec .col.col2 .bottom_detail {
    padding-top: 30px;
}

.new_page .top_sec .col.col2 .bottom_detail p {
    font-size: 22px;
    font-weight: 300;
    color: #131313;
    vertical-align: middle;
    text-align: center;
    width: 100%;
}

.new_page .top_sec .col.col2 .bottom_detail p span {
    font-size: 30px;
    font-weight: bold;
    color: #131313;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
}

.new_page .top_sec .col.col2 .bottom_detail p img {
    vertical-align: middle;
}

.new_page .top_sec .col.col2 .table_part {
    padding: 0 30px;
}

.new_page .top_sec .col.col2 table {
    margin-top: 30px;
    width: 100%;
}

.new_page .top_sec .col.col2 table td {
    color: #131313;
    width: 33%;
    font-size: 15px;
    padding-bottom: 15px;
}

.new_page .top_sec .col.col2 table td span {
    color: #0a8b49;
    width: 33%;
}

.new_page .top_sec .col.col2 .bottom_t {
    padding-left: 30px;
}

.new_page .top_sec .col.col2 p {
    padding-left: 0;
}

.new_page .top_sec .col.col2 p span {
    color: #fff;
}

.new_page .center_sec {
    margin-top: 25px;
    margin-bottom: 40px;
}

.new_page .center_sec .top_title, .new_page .top_sec .top_title.showmobile {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #131313;
    border-radius: 20px;
}

.new_page .top_sec .top_title.showmobile {
    width: 100%;
    margin-bottom: 20px;
}

.new_page .center_sec .top_title h2, .new_page .top_sec .top_title.showmobile h2 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.new_page .center_sec .top_title p, .new_page .top_sec .top_title.showmobile p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
}

.new_page .center_sec .top_title p span {
    font-weight: bold;
}


/*.new_page .center_sec .table_data,.new_page .center_sec .top_title,.new_page .blog_sec .col{transition: 0.5s ease all;-o-transition: 0.5s ease all;-moz-transition: 0.5s ease all;-webkit-transition: 0.5s ease all;transform: translateY(100px);opacity: 0;}*/

.new_page .center_sec .top_title.come-in,
.new_page .center_sec .table_data.come-in,
.blog_sec .col.come-in {
    opacity: 1;
    transform: translateY(0px);
}

.blog_sec .img_sec img {
    height: 85px;
    width: 85px;
}

/*.new_page .top_sec .col{transition: 0.5s ease all;-o-transition: 0.5s ease all;-moz-transition: 0.5s ease all;-webkit-transition: 0.5s ease all;transform: translateY(100px);opacity: 0;}*/

.new_page .top_sec .col.come {
    opacity: 1;
    transform: translateY(0px);
}

.new_page .center_sec .table_data {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 35px 0px;
}

.new_page .center_sec .table_data .col {
    width: 31%;
    position: relative;
}
.new_page .center_sec .table_data .col.platina {
    width: 100%;
    bottom: 0;
    position: absolute;
}
.new_page .center_sec .table_data .col.platina {
    width: 100%;
}

.new_page .center_sec .table_data .col h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 15px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.new_page .center_sec .table_data .col {}

.new_page .center_sec .table_data .col .table_Sec {
    background-color: #131313;
}

.new_page .center_sec .table_data .col .table_Sec.platina table {
    /* min-width: 87%; */
}

.new_page .center_sec .table_data .col .table_Sec table td {
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 15px;
}

.new_page .center_sec .table_data .col .table_Sec table td span {
    color: #6AD278;
}

.table_Sec .gold th {
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.025em;
    padding: 12px 17px;
    text-align: left;
}

.table_Sec .silver th {
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.025em;
    padding: 12px 17px;
    text-align: left;
}

.table_Sec .platina th {
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.025em;
    padding: 12px 17px;
    text-align: left;
}

.new_page .table_data .col {
    background-color: #131313;
}

.table_Sec .dark_gold th {
    font-weight: bold;
    font-size: 13px;
    color: #fff;
    letter-spacing: 0.025em;
    padding: 12px 17px;
    text-align: left;
}

.table_Sec tr.table_head.gold th:nth-child(3), .table_Sec tr.table_head.silver th:nth-child(3), .table_Sec tr.table_head.platina th:nth-child(3), .table_Sec .table_head.dark_gold th:nth-child(3) {
    padding: 12px 12px;
    text-align: right;
}

.center_sec .table_Sec table {
    width: 100%;
    text-align: left;
    border-spacing: 0;
}

.center_sec td.data_one {
    width: 40%;
    font-size: 14px;
    padding-left: 15px;
}

.center_sec td.data_two {
    text-align: center;
    padding: 10px 0px 10px 8px;
    color: #131313;
    font-weight: 500;
    width: 20%;
    font-size: 14px;
}

.center_sec td.data_three {
    text-align: right;
    padding: 10px 20px 10px 0px;
    width: 33%;
    font-weight: 900;
}

.new_page .top_sec .col.col2 .bottom_detail, .new_page .top_sec .col.col2 .table_part {
    background-color: #fff !important;
}

.blog_sec {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0;
}

.blog_sec .col {
    width: 23.5%;
    text-align: center;
    background-color: #131313;
    padding: 50px 20px;
    border-radius: 30px;
}

.blog_sec .col .img_sec {
    min-height: 105px;
    display: inline-flex;
}

.blog_sec .col .img_sec img {
    vertical-align: bottom;
    margin: auto;
}

.blog_sec .col .text_sec {}

.blog_sec .col .text_sec h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 33px;
}

.blog_sec .col .text_sec h3 {
    font-size: 17px;
    font-weight: 300;
    color: #2c2c2c;
    margin-top: 15px;
}

.blog_sec .col .text_sec .odkup {
    font-size: 17px;
    font-weight: 300;
    color: #fff;
    margin-top: 15px;
}

.blog_sec .col .text_sec p {
    font-size: 17px;
    font-weight: bold;
    color: #BF942F;
}

.new_page .kaj_sec {
    margin-top: 80px;
    padding-bottom: 60px;
}

.new_page .kaj_sec h2 {
    font-size: 40px;
    text-align: left;
    font-weight: 400;
    color: #131313;
    margin-bottom: 28px;
}

.new_page .kaj_sec p {
    font-size: 17px;
    text-align: left;
    font-weight: 300;
    color: #2c2c2c;
}

.new_page .kaj_sec>a {
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    margin: auto;
    border-radius: 6px;
    background-color: #BF942F;
    width: 270px;
    height: 50px;
    display: block;
    line-height: 50px;
    margin-top: 36px;
    margin-bottom: 20px;
}

.new_page .kaj_sec>a:hover {
    cursor: pointer;
    background-color: #000;
}

.new_page .kaj_sec h3 {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    color: #131313;
}

.new_page .last_sec {
    background-color: #fff;
}

.new_page .last_sec .kaj_sec {
    margin-top: 0;
    padding-top: 55px;
    padding-bottom: 80px;
}

.new_page .last_sec .kaj_sec p {
    margin-bottom: 38px;
}

.new_page .last_sec .kaj_sec a {
    margin-top: 60px;
}

.new_page .last_sec .kaj_sec>a:hover {
    cursor: pointer;
    background-color: #000;
}

.new_page .kaj_sec h3 a {
    font-size: 17px;
    font-weight: 300;
    color: #131313;
    display: inline-block;
    transition: 0.4s ease all;
    font-weight: bold;
}

.new_page .kaj_sec h3 a:hover {
    color: #BF942F;
}

footer .top_col form {
    position: relative;
}

.tooltip_wrap {
    position: absolute;
    background-color: #ffffff;
    width: 150px;
    border-radius: 8px;
    top: -130px;
    left: 90px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.tooltip_wrap.hide {
    opacity: 0;
    visibility: hidden;
}

.tooltip_wrap .tool_close {
    position: absolute;
    top: 7px;
    right: 7px;
}

.tooltip_wrap .tool_close img {
    display: block;
}

.tooltip_wrap .tooltip_head {
    background-color: #131313;
    line-height: 40px;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tooltip_wrap .tooltip_head h6 {
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
}

.tooltip_wrap .tooltip_head h6 span {
    color: #BF942F;
}

.tooltip_wrap .tooltip_slider {
    height: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.tooltip_wrap:after {
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -10px;
}

.tooltip_wrap .tooltip_slider {
    text-align: center;
    padding: 3px 0px;
}

.tooltip_wrap .tooltip_slider .icon_img img {
    max-height: 75px;
}

#cycler {
    position: relative;
}

#cycler .img_div {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 8px;
    padding-top: 3px;
}

#cycler .img_div img {
    max-height: 70px;
}

#cycler .img_div.active {
    z-index: 3;
    opacity: 1;
}

.mobile-tel-fix {
    display: none;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee .prices {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 14px;
    margin-right: 45px;
    font-weight: bold;
}

.marquee h6 {
    display: inline-block;
    vertical-align: middle;
    color: #898989;
    font-size: 14px;
    margin-right: 45px;
}

.marquee h6 strong {
    color: #BF942F;
}

footer .partner_sheep .col a {
    max-width: 271px;
    margin-top: 10px;
}

.tooltip_wrap .tool_close img {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
}

.tooltip_wrap .tool_close:hover img {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
}

.frequently_questions p a {
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    color: #BF942F;
}

.frequently_questions p a:hover {
    color: #b85c00;
}

footer .partner_sheep .col+.col a {
    padding-left: 65px !important;
    background-position: left 60px center !important;
    background-image: none;
}

footer .partner_sheep .col+.col a::before {
    content: "\e216";
    font: var(--fa-font-solid);
    font-family: 'Font Awesome 6 Pro';
    font-size: 22px;
    margin-right:5px;
}


/* Form error style */

.refresh-form-button {
    position: relative;
    z-index: 20;
    margin: auto;
    width: 45%;
    text-align: center;
}

.refresh-form-button a {
    padding: 10px;
    background-color: #BF942F;
    border-radius: 6px;
    color: #333864;
}

/*Honeypot*/
.email2-form{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Translate elements */

#google_translate_element .skiptranslate.goog-te-gadget a.VIpgJd-ZVi9od-l4eHX-hSRGPd{
    display: none !important;
}

.goog-te-combo{
    display: none;
}
#country-list, #country-list-footer{
    padding-left: 10px;
}
#country-list li, #country-list-footer li{
    display: flex;
    align-items: baseline;
    cursor: pointer;
    gap: 5px;
}
#country-list li span, #country-list-footer li span{
    padding-left: 20px;
    margin-left: -20px;
}
#country-list li img, #country-list-footer li img{
    width: 15px;
    height: 10px;
}

.goog-logo-link {
    display:none !important;
} 
    
.goog-te-gadget{
    color: transparent !important;
}

body > .skiptranslate {
    display: none;
}

#image-flag{
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
}

#image-flag #flag-icon{
  width: 25px;
  height: 18px;
}
#image-flag-footer{
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
}

#image-flag-footer #flag-icon{
  width: 25px;
  height: 18px;
}

.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}
#goog-gt-tt{
    display: none !important;
}

/* menu optimization for translate */

@media screen and (min-width:960px) {
    header .menu nav ul{
        display: flex;
        justify-content: space-between;
    }
    header .menu nav ul li{
        white-space: nowrap;
        margin: 0;
    }
    }


    /* exchange style */
.main .new_page .wrapper .exchange-title{
   color: #131313; 
   padding: 30px 0px;
   text-align: center;
}

#exchange-wrap {
    display: flex;
    padding-bottom: 50px;
    gap: 20px;
    flex-direction: row-reverse;
}
#exchange-wrap .left-side {
    display: flex;
    flex-direction: column;
    flex-basis: 60%;
}
#exchange-wrap .left-side .validate-time {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
    color: #131313;
}
    
.exchange-table{
width: 100%;
cursor: default;
background-color: #131313;
border-radius: 20px;
}
.exchange-table tbody tr{
    transition: 0.2s;
    background-color: #ececec;
}
.exchange-table tbody tr:hover{
    color: #343a40;
    background-color: #fff;
}

.exchange-table thead{
text-align: left;
color: #fff;
}
.exchange-table thead tr th{
padding: 12px;
}
.exchange-table tbody tr td{
padding: 12px;
}

.exchange-table tbody tr td.country{
    font-weight: 700;
    color: #131313;
}

#exchange-wrap .right-side {
    display: flex;
    flex-basis: 40%;
    align-items: center;
    flex-direction: column;
}
#exchange-wrap .right-side .calc-title {
    text-align: left;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    color: #131313;
    text-transform: uppercase;
}
#calc-unit {
    font-weight: 700;   
    color: #131313;
}
#exchange-wrap .right-side .warnning-calc {
   display: flex;
   color: #BF942F;
   width: 100%;
}
#exchange-wrap .right-side .unit-wrapp {
    display: flex;
    padding-top: 10px;
    width: 100%;
 }
.calculator-wrapp {
   width: 100%;
   background:#131313;
   color: #fff;
   font-size: 18px;
   display: flex;
   border-radius: 20px;
   align-items: center;
   height: 215px;
   padding: 0 10px;
    gap: 10px;
   
}


.calculator-wrapp .calc-wrapp {
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    
}
.calculator-wrapp .calc-wrapp #amount, .calculator-wrapp .calc-wrapp #amount2 {
    text-align: center;
    color: #000;
    background: #fff;
    font-size: 24px;
    border-radius: 10px;
    box-shadow:  0 1px 3px rgb(0 0 0 / 20%), 0 0 0 0.2rem rgb(0 73 144 / 25%);
    padding: 5px 20px;
    
    width: 100%;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.calculator-wrapp .calc-wrapp #amount:focus, .calculator-wrapp .calc-wrapp #amount2:focus{
    box-shadow: inset 0 1px 8px rgb(0 0 0 / 20%), 0 0 0 0.2rem rgb(0 73 144 / 25%);
}
.calculator-wrapp .calc-wrapp .result-wrapp{
    flex:1 1 0;
    display: flex;
}
p#result, p#result2{
    color: #fff;
    font-size: 24px;
    text-align: center;
    border-radius: 10px;
    box-shadow: inset 0px 0px 5px #fff;
    padding: 5px 20px;
    height: 38px;
    width: 100%;
    margin-bottom: 0 !important;
}
.calculator-wrapp .calc-left .calc-wrapp select::after{
    content: "";
    width: 0;
    height: 0;
    z-index: 999;
    border-left: 13px solid rgba(0,0,0,0);
    border-right: 13px solid rgba(0,0,0,0);
    border-top: 23px solid;
    border-top-color: inherit;
    position: absolute;
    color: #91251e;
    left: 50%;
    transform: translate(-50%, 0);
    top: 80px;
}
.calculator-wrapp .calc-rigth{
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
    /* gap: 17px; */
    align-items: center;
}
.calculator-wrapp .calc-rigth .result-wrapp{
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;

}
.calculator-wrapp .calc-left{
    display: flex;
    flex-basis: 50%;
    
}

select#from, select#to, select#from2, select#to2{
    padding: 10px 30px;
    border-radius: 10px;
    background: #BF942F;;
    font-size: 18px;
    color: #fff;
    width: 100%;
    cursor: pointer;
    
}
tr#EUR{
    display: none;
}
#changeCurrencies{
    width: 20px;
    cursor: pointer;
}

#exchange-wrap .left-side .below-table-txt{
    padding-top: 20px;
    color: #131313;
}

/* Select 2 styling */
.calculator-wrapp .calc-rigth .select2 .select2-selection--single{
    background: #BF942F;
    height: 44px;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    width: 100%;
    cursor: pointer;
}
.calculator-wrapp .calc-left .calc-wrapp  .select2 .select2-selection--single{
    background: #BF942F;
    height: 44px;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    width: 100%;
    cursor: pointer;
}
#select2-to-container, #select2-from-container, #select2-to2-container, #select2-from2-container{
    color: #fff;
    font-weight: 700;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 100% !important;
    
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #fff transparent transparent transparent !important;
}

#exchange-wrap .left-side.tv {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}

#exchange-wrap .left-side .validate-time.tv {
    font-size: 19px;
    font-weight: 800;
    padding-bottom: 10px;
    color: #000;
    text-align: center;
}

.new_page.tv {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding: 0;
    background: url(../images/site/graf_bg.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}


.new_page.tv .wrapper {
    max-width: 80%;
}

.new_page.tv #exchange-wrap {
    align-items: center;
    padding: 0;
    height: 100vh;
}

.new_page.tv tbody {
    background-color: #efefef;
}

.exchange-table tbody tr {
    box-shadow: unset;
}

.new_page.tv #exchange-wrap .left-side .below-table-txt {
    text-align: center;
    font-weight: 700;
}

.marquee_text.tv .marquee {
    width: 100%;
    overflow: hidden;
}

.marquee_text.tv .marquee .prices {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-size: 14px;
    margin-right: 45px;
    font-weight: bold;
}

.marquee_text.tv .marquee h6 {
    display: inline-block;
    vertical-align: middle;
    color: #898989;
    font-size: 14px;
    margin-right: 45px;
}

.marquee_text.tv .marquee h6 strong {
    color: #BF942F;
}

.marquee_text.tv #scroll_news4 h6 {
    display: inline-block;
    vertical-align: middle;
    color: #898989;
    font-size: 14px;
    margin-right: 45px;
}

.marquee_text.tv #scroll_news4 h6 strong {
    color: #BF942F;
}

.marquee_text.tv {
    padding: 10px 0px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #000;
}

.marquee_text.tv .play_mar {
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    padding: 0px 15px;
    padding-top: 13px;
    background-color: #000;
    font-size: 0px;
    background-image: url(../images/site/pause.png);
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.5s all ease;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    color: #fff;
}

.marquee_text.tv .play_mar.active {
    background-image: url(../images/site/play.png);

}

.marquee_text.tv .marquee p {
    margin-bottom: 0px;
}

.marquee_text.tv .marquee .flag-image {
    top: 3px;
    position: relative;
}

.tv-top {
    position:absolute;
    width: 100%;
}

.tv-bottom {
    position:absolute;
    width: 100%;
    bottom: 0;
}

@media only screen and (max-width:850px){

    #exchange-wrap {
        flex-direction: column;
    }

}
@media only screen and (max-width:480px){

        #currencyTable{
            display: block;
            
    }
    .exchange-table thead{
        white-space: nowrap;
    }
    .exchange-table thead tr th.empty-cell{
        display: none;
    }
    .exchange-table tbody tr td.country-flag{
        display: none;
    }

    .exchange-table thead tr th{
        font-size: 10px;
        padding: 10px 5px;
    }
    .exchange-table tbody tr td{
        font-size: 12px;
        padding: 10px 5px;
    }

}

@media only screen and (max-width:390px){
    .main .new_page .wrapper .exchange-title{
        font-size: 26px;
    }
    #exchange-wrap .right-side .calc-title{
        font-size: 17px;
        padding-bottom: 10px;
    }
    .calculator-wrapp .calc-left .calc-wrapp .select2 .select2-selection--single{
        padding: 10px;
    }
    .calculator-wrapp .calc-rigth .select2 .select2-selection--single{
        padding: 10px;
    }
    #exchange-wrap .right-side .warnning-calc{
        font-size: 13px;
    }
    #exchange-wrap .left-side .validate-time{
        font-size: 14px;
    }
    #exchange-wrap .left-side .below-table-txt{
        font-size: 14px;
    }

}



.svetovanje {
    border-radius: 50px;
    background-color: #F8F8F8;
    padding: 30px 22px;
}

.telst {
    font-size: 30px;
    font-weight: bold;
}

.krogec {
    background-color: #BF942F;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    text-indent: initial;
    margin-right: 10px;
}

.tab-stevilka .krogec {
    width: 50px;
    height: 50px;
    font-size: 25px;
}

.odkup-crta .tab-stevilka .krogec {
    margin-right: 0;
    width: 30px;
    height: 30px;
    z-index: 1;
}

.odkup-crta .tab-stevilka::before {
    content: "";
    height: 100%;
    position: absolute;
    border-right: 1px solid #B7B3B3;
}

.form-cenitev {
    padding: 25px;
    background-color: #232323;
    border-radius: 25px;
    position:relative;
}

.form-cenitev-success, .form-paket-success {
    display: flex;
    flex-direction: column;
    z-index:1;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 90px;
    left: 0;
    top: 0;
    background-color: #BF942F;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    color: #fff;
    text-align:center;
    font-size: 22px;
}

.form-cenitev input, .form-cenitev textarea {
    width: 100%;
    margin-bottom:20px;
    padding:10px 20px;
}

.form-cenitev input[type=email], .form-cenitev input[type=text], .form-cenitev textarea {
    background-color: #2E2E2E;
    border-radius: 10px;
    color: #fff;
    border: 0px;
}

.form-cenitev input[type=submit] {
    border-radius: 10px;
}

.form-cenitev ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #979797;
  opacity: 1; /* Firefox */
}

.form-cenitev :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #979797;
}

.form-cenitev ::-ms-input-placeholder { /* Microsoft Edge */
  color: #979797;
}

.mainc {
    color: #BF942F !important;
}

.utripa {
    animation: scaling ease-in-out 1.5s infinite alternate;
}

.diha {
    animation: dihanje ease-in-out 1s infinite alternate;
}

@keyframes scaling {
    0% {
    transform: scale(1);
    }
    66.67% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.07);
    }
}

@keyframes dihanje {
    0% {
    transform: scale(1);
    }
    66.67% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

.svetovalec-img {
    text-align: right;
    margin-bottom: 15px;
}

@media (max-width: 991px) {
    .svetovalec-img {
        text-align: center;
    }
}

/* NAROČILO GOTOVINE */
.naroci-wrap {
    width: 100%;
    background: #131313;
    color: #fff;
    font-size: 18px;
    display: flex;
    border-radius: 20px;
    align-items: center;
    padding: 0 10px;
    gap: 50px;
    flex-direction: column;
    padding: 80px 30px;
    margin-top: 50px;
}

.cenitev-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition: all 0.35s linear;
    margin: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: -100;
}

@media (max-width: 576px) {
    .cenitev-modal .content h2 { margin-top: 2rem; }
    .cenitev-modal form input[type=email], .cenitev-modal form input[type=text], .cenitev-modal form textarea { margin-bottom: 10px; }
    .sliderpad { padding: 0 25px; }
}

.cenitev-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    transition: all 0.35s linear;
    margin: 0;
    z-index: -100;
}

.cenitev-modal.show {
    z-index: 1000;
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.cenitev-bg.show {
    z-index: 999;
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cenitev-modal .content {
    position: relative;
    padding: 0;
    background: #fff;
    overflow: auto;
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 20%;
}

.cenitev-modal .content h2 {
    color: #BF942F;
    text-align: center;
    margin-top: 1.625rem;
    margin-bottom: 2rem;
    font-size: 30px;
}

.cenitev-modal form {
    text-align: center;
}

.cenitev-modal form input[type=email], .cenitev-modal form input[type=text], .cenitev-modal form textarea {
    background-color: #fff;
    border-radius: 10px;
    border: 0px;
    width: 100%;
    margin-bottom: 35px;
    padding: 10px 20px;
}

.cenitev-modal .content .form-cenitev-success {
    border-radius:0;
    font-size: 30px;
}

.cenitev-modal .modal-top {
    height: 100px;
    background-color: #131313;
    padding: 20px 40px;
}

.cenitev-modal .modal-top img {
    height: 100%;
}

.cenitev-modal .validate-time, .cenitev-modal .below-table-txt  {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.cenitev-modal .exchange-table {
    margin-bottom: 10px;
}

.calculator-wrapp .calc-rigth .select2 .select2-selection--single {
    background: #BF942F;
    height: 44px;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 18px;
    color: #fff;
    width: 100%;
    cursor: pointer;
}

.nav-item {
    padding: 0 10px;
}

.nav-link.active {
    background-color: #BF942F !important;
    color: #fff !important;
}

.nav-item button {
    width: 100%;
    text-align: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    background-color: #E3E3E3 !important;
    color: #232323 !important;
    border-radius: 0px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.nav-tabs {
    padding: 10px 70px;
    border: 0;
}

@media only screen and (max-width:767px) {
    .nav-tabs .nav-link {
        font-size: 15px;
        height: 100%;
    }
    header .middle_header .right_header {
        position: relative;
        top: unset;
        right: unset;
        transform: unset;
    }
}

.tab-content {
    padding: 0 20px;
}

.button-close {
    color: #fff;
    font-size: 25px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #BF942F;
    text-align: center;
}

.tab-pane {
    margin: 50px 0;
}

.tab-pane#faq {
    padding: 0 50px;
}

.faqh {
    font-weight: bold;
    margin-bottom: 10px;
}

#faq .frequently_questions h4 {
    position: relative;
    background-color: #fff;
    color: #BF942F;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px 14px 0;
    cursor: pointer;
}

@media only screen and (max-width:390px){

    .calculator-wrapp .calc-left .calc-wrapp .select2 .select2-selection--single{
        padding: 10px;
    }
    .calculator-wrapp .calc-rigth .select2 .select2-selection--single{
        padding: 10px;
    }
}

/* WIZARD */

/* Style the form */
#regForm {
    background-color: #ffffff;
    margin: 0 auto;
    padding: 0 40px;
    min-width: 300px;
  }
  
  /* Style the input fields */
  #regForm input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: 'Poppins';
    border: 1px solid #aaaaaa;
    border-radius: 20px;
  }
  
  /* Mark input boxes that gets an error on validation: */
  #regForm input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  #regForm .tabr {
    display: none;
  }
  
  /* Make circles that indicate the steps of the form: */
  #regForm .stepr {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  /* Mark the active step: */
  #regForm .stepr.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  #regForm .stepr.finish {
    background-color: #BF942F;
  }

  .datum-prihoda {
    margin-bottom: 15px;
  }

  .tabr.datum-prihoda p {
    font-weight: bold;
  }

  .pregledcasa {
    padding: 30px 25px;
    background-color: #131313;
    color: #fff;
    border-radius: 30px;
  }

  .pregledcasa p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
  }

  .prevzem-gotovine-cas {
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 14px;
    margin-bottom: 25px;
  }

  .prevzem-gotovine-cas i {
    color: #BF942F;
    font-size: 40px;
    margin-right:20px;
  }

  .prevzem-gotovine-cas .pregled-ikona {
    width: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .povzetek-narocila {
    padding: 10px 20px;
    border: #131313 1px solid;
    border-radius: 20px;
    margin-bottom: 15px;
  }
  .povzetek-narocila p {
    text-align: left !important;
  }

  footer .day_action p {
    background-color: #131313;
    padding: 5px 20px;
    border-radius: 20px;
  }
  
  .select2-container {
    width: 100% !important;
    max-width: 206.844px;
  }

  .tab-result {
    display: none;
    justify-content: center;
    padding: 40px;
  }

  .bootstrap-timepicker-widget table td input {
    width: 40px !important;
  }
  .icon-chevron-up:before {
    content: "\f077";
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
  }

  .icon-chevron-down:before {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
  }

  .solo_faq h4 {
    position: relative;
    background-color: #fff;
    color: #131313;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px 14px 20px;
    cursor: pointer;
    }   
    .solo_faq .col {
        margin-bottom: 10px;
    }

    .solo_faq .col.active {
        border-bottom: 1px solid #131313;
    }

    .outer-calc {
        padding: 0 55px;
    }

    .tab-pane#home p {
        text-align: center;
        margin-bottom: 15px;
    }

    .tab-pane#home {
        padding: 0 30px;
    }

    /* END NAROČILO GOTOVINE */

    /* KALKULATOR */

    .kalk-levo, .kalk-desno, .center_sec, .new_page .center_sec .table_data .col {
        border-radius: 30px;
    }
    
    .kalk-desno {
        background-color: transparent;
    }
    
    .kalk-desno div {
        background-color: #fff;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    
    .kalk-desno p {
        color: #131313 !important;
    }
    
    .kalk-desno .bottom_t {
        min-height: 42px;
        
    }
    
    .kalk-levo {
        background-color: #131313;
    }
    
    .kalk-desno .top_title {
        background-color: #131313;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: unset !important;
        border-bottom-right-radius: unset !important;
    }
    
    .kalk-desno tr {
        border-bottom: 1px solid #131313;
    }

    .new_page .top_sec .col .bottom_detail .sec .in {
        height: 40px;
        /* background-image: url(../images/site/bottom_arrow.png); */
        background-position: left 95% center;
        border: none;
        width: 100%;
        font-size: 14px;
        color: #fff;
        padding-left: 10px;
        /* background-color: #fff; */
        background-color: #BF942F;
        border-radius: 10px;
        -webkit-border-radius: 10px;
    }

    .input-group-text {
        border: 0px;
        border-radius: 10px;
        background-color: #BF942F;
        color: #fff;
    }

    .input-grami {
        border: 0px;
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
        -webkit-border-top-left-radius: 10px !important;
        -webkit-border-bottom-left-radius: 10px !important;
    }
    /* END KALKULATOR */

    .new_page-bg {
        background: url(../images/site/graf_bg.svg) rgba(0,0,0,0.85);
        background-blend-mode: multiply;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 60px 0 !important;
    }

    .slick-slide {
        margin: 0px 20px;
    }

    .card {
        border: #BF942F solid 2px;
        min-height: 474px;
    }
    
    .card-odkup {
        border: #C2B7A4 solid 1px;
        margin-bottom: 20px;
        min-height: 500px;
    }
    
    .card-body {
        padding: 15px 0px;
    }
    
    .card-title {
        font-weight: bold;
        font-size: 16px;
    }
    
    .card-odkup .card-title {
        font-size: 21px;
    }
    
    .card-cena {
        color: #BF942F;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 5px;
        margin-top: 10px;
    }
    
    .card-body ul {
        list-style-type: none;
        margin-left:0;
    }
    
    .card-body li {
        padding-left: 1em;
        text-indent: -0.68em;
    }

    .slid-prev {
        left: -25px;
        color: #BF942F;
        line-height: 0;
        position: absolute;
        top: 50%;
        display: block;
        width: 20px;
        height: 20px;
        padding: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        cursor: pointer;
        border: none;
        outline: none;
        font-size:36px;
    }
    
    .slid-next {
        right: -25px;
        color: #BF942F;
        line-height: 0;
        position: absolute;
        top: 50%;
        display: block;
        width: 20px;
        height: 20px;
        padding: 0;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        cursor: pointer;
        border: none;
        outline: none;
        font-size:36px;
    }

    .sliderpad { padding: 50px 0; }

    #myTabContent {
        border-left: 1px solid #707070;
        border-right: 1px solid #707070;
        border-bottom: 1px solid #707070;
        padding-left: 80px;
    }

    #myTabContent .tab-pane {
        border-left: 1px solid #E3E3E3;
        margin: 50px 0;
    }

    .tab-stevilka {
        align-items: center;
        display: flex;
        justify-content: center;
        left: -35px;
        position: relative;
    }

    .tab-stevilka .krogec {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .krogec {
        background-color: #BF942F;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        color: #fff;
        text-indent: initial;
        margin-right: 10px;
    }

    .postopek-tabs .nav-item {
        padding: 0;
    }

    .postopek-tabs .nav-link {
        font-size: 26px;
        font-weight: 600;
        background-color: #E3E3E3 !important;
        color: #232323 !important;
        border-radius: 0px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .postopek-tabs .nav-link.active {
        background-color: #BF942F !important;
        color: #fff !important;
    }

    .time_period .btn {
        background-color: #131313;
        border: #BF942F 3px solid;
        /* animation: scaling ease-in-out 1.5s infinite alternate; */
        position: relative;
        margin-left: 10px;
    }

    /* naroči paket */

    .paket-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        transition: all 0.35s linear;
        margin: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: -100;
    }
    
    .paket-modal.show {
        z-index: 1000;
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    .paket-modal .content {
        position: relative;
        height: 100%;
        padding: 1.25rem;
        background: #131313;
        overflow: auto;
        max-width: 55rem;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .paket-modal .content h2 {
        color: #BF942F;
        text-align: center;
        margin-top: 1.625rem;
        margin-bottom: 2rem;
        font-size: 30px;
    }
    
    .paket-modal form {
        text-align: center;
    }
    
    .paket-modal form input[type=email], .paket-modal form input[type=text], .paket-modal form textarea {
        background-color: #fff;
        border-radius: 10px;
        border: 0px;
        width: 100%;
        margin-bottom: 35px;
        padding: 10px 20px;
    }
    
    .paket-modal .content .form-paket-success {
        border-radius:0;
        font-size: 30px;
    }

    @media (max-width: 576px) {
        .paket-modal .content h2 { margin-top: 2rem; }
        .paket-modal form input[type=email], .paket-modal form input[type=text], .paket-modal form textarea { margin-bottom: 10px; }
    }

    footer .vizitkacas {
        margin-top: 20px;
        border-radius: 30px;
        padding: 2px 0 !important;
        background-color: #BF942F;
        font-weight: bold;
        text-align: center;
    }

    .vizitkacas .countdowntimer {
        background-color: #131313;
        display: inline-block;
        padding: 5px 20px;
        border-radius: 20px;
        width: 98%;
    }

    .partner_sheep p {
        color: #AFAFAF;
    }

    /* dropdown menu */
    .menu UL LI.item .menusub {
        position: absolute;
        width: 248px;
        display: none;
        padding-top: 0px;
        z-index: 100;
        background-color: #fff;
        border-radius: 15px;
        border: 1px solid #BF942F;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        -webkit-box-shadow: 0px 2px 3px rgba(118, 118, 118, 0.9);
        -moz-box-shadow: 0px 2px 3px rgba(118, 118, 118, 0.9);
        box-shadow: 0px 2px 3px rgba(118, 118, 118, 0.9);
    }

    .menu UL LI.item:hover .menusub {
        display: block;
    }

    .menu UL LI.item .menusub a {
        padding: 11px 27px;
        display: block;
        height: auto;
        color: #131313;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        text-align: left;
        line-height: 24px;
        text-decoration: none;
        transition: all 0.2s ease-out 0s;
        border: none;
        background-color: #fff;
    }

    .menu UL LI.item .menusub a:first-child {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }

    .menu UL LI.item .menusub a:last-child {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .menu UL LI.item .menusub a:hover {
        color: #BF942F;
    }

    .mainbtn {
        color: #fff !important;
        text-decoration: none !important;
        font-size: 17px;
        font-weight: 500;
        text-align: center !important;
        background-color: #BF942F;
        padding: 10px 50px;
        border-radius: 30px;
        transition: 0.4s ease all;
        -o-transition: 0.4s ease all;
        -moz-transition: 0.4s ease all;
        -webkit-transition: 0.4s ease all;
        display: inline-block;
        width: 100%;
    }

.menu .wrapper {
    max-width: 1300px;
}

.time_period .wrapper {
    max-width: 1390px;
}

.blog-content h1 {
    color: #B99B49;
    margin-bottom: 15px;
}

.blog-content h2 {
    color: #BF942F;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-naslednji, .blog-main-image {
    margin-bottom: 50px;
}

.blog-image {
    margin-bottom: 5px;
}

.blog-naslednji img {
    margin-bottom: 20px;
}

.blog-sidebar {
    padding-bottom: 10px;
    border-bottom: solid #131313 1px;
    margin-bottom: 30px;
}

.blog .svetovanje h1 {
    font-size: 30px;
}

.blog .svetovanje h2 {
    font-size: 20px;
}

.blog .svetovanje {
    margin-bottom: 30px;
}

.blog-gumbi {
    text-align: center;
    margin-top: 50px;
}

.blog-gumbi .btn {
    padding: 15px 55px;
    font-size: 22px;
    margin-bottom: 20px;
    width: 70%;
}

#svetovalec {
    padding: 80px 0 100px;
}

.showmobile {
    display: none !important;
}

.shadow-left {
    box-shadow: #BF942F -25px -20px !important;
    margin-bottom: 20px;
}

.shadow-right {
    box-shadow: #BF942F 25px -20px !important;
    margin-bottom: 20px;
}

.logo-slider .card-odkup {
    height: 200px !important;
    min-height: unset;
}

.logo-slider .card-body {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.logo-slider .card-body img {
    max-height: 100px;
}

.orodja-slider .card-odkup {
    height: 200px !important;
    min-height: unset;
}

.orodja-slider .card-body {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.orodja-slider .card-body img {
    padding: 2px;
}

.naslov {
    font-weight: bold;
    font-size: 34px;
    color: #131313;
}

.podnaslov {
    font-weight: bold;
    font-size: 24px;
    color: #131313;
    margin-bottom: 10px;
}

.site-banner {
    height: 600px;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.site-banner h1, .site-banner p {
    width: 700px;
    margin: 0 auto;
}

.site-banner h1 {
    font-size: 40px;
}

.grey-bg {
    background-color: #F9F9F9;
}

.pop-up {
    position: fixed;
    bottom: 10px;
    left: 30px;
    width: 230px;
    padding: 10px 20px 10px 10px;
    background-color: #fff;
    border-radius: 25px;
    color: #131313;
    z-index: 15;
    background-color: #131313;
}

.close-popup {
    /* background-color: #fff; */
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    z-index: 16;
    cursor: pointer;
}

.pop-content {
    display: flex;
    align-items: center;
}

.pop-image {
    width: 35%;
}

.pop-text {
    font-size: 15px;
    font-weight: 600;
    color: #BF942F;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    text-align: center;
}

.pop-naslov {
    color: #fff;
    font-weight: 700;
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.pop-ime {
    font-size: 15px;
    font-weight: bold;
}

.pop-tel {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}

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

.modal-dialog {
    max-width: 60%;
    margin: 0 auto;
}

.close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    font-size: 23px;
    font-weight: normal;
    color: #fff;
    opacity: 1;
    background-color: #BF942F;
    width: 35px;
    height: 35px;
}

.blog a:hover {
    color: #BF942F;
}

.blog a {
    font-size: 22px;
    font-weight: bold;
}

.blog-list .col-md-4 {
    margin-bottom: 30px;
}

.grecaptcha-badge {
    bottom: 6.5rem !important;
}

/* Move reCAPTCHA v3 badge to the left */
 
.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 0px !important;
  }
  .grecaptcha-badge:hover {
    width: 256px !important;
  }

.podnaslov-valuta {
    font-size: 14px;
}

@media (max-width: 576px) {
    .showmobile { display: block !important; }
    .hidemobile { display: none !important;  }

    .site-banner h1, .site-banner p {
        width: 100%;
    }

    .odkup-crta .tab-stevilka {
        display: none;
    }

    .naslov {
        font-size: 25px;
    }

    .grey-bg .container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 10px;
    }

    .podnaslov-valuta {
        font-size: 9px;
    }
}
