@charset "utf-8";

/* 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;
}


/* 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: #fff;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    color: #555;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}


/* Create the Default Paragraphs */

p {
    color: #9f9f9f;
    font-size: 15px;
    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-appearance: none;
    border: none;
    -webkit-text-size-adjust: none;
    padding: 5px;
    border: 1px solid #cbcbcb;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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;
    background: #cbcbcb;
}

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: 'Nunito';
}

#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 {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    z-index: 999999;
    background-color: #ffffff;
}

header .wrapper {
    position: relative;
}

header .day_action {
    background-color: #9ec753;
    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 .middle_header {
    padding-top: 25px;
    padding-bottom: 22px;
}

header .middle_header .logo {
    float: left;
}

header .middle_header .goog-logo-link {
    display:none !important;
} 
    
header .middle_header .goog-te-gadget{
    color: transparent !important;
}  
    


header .middle_header .right_header {
    float: right;
}

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

header .middle_header .right_header .tel p {
    color: #282d58;
    font-size: 30px;
    font-weight: 900;
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(../images/site/telk.png);
    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: #f79027;
    background-image: url(../images/site/tel_blue.png)
}

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

header .middle_header .right_header .tel h6 {
    color: #898989;
    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: 3px solid #dcdcdc;
    border-radius: 5px;
    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 .social a:hover {
    background-color: #282d58;
    border-color: #282d58;
}

header .middle_header .right_header .shop_near {
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #ed8e20;
    border-radius: 5px;
    padding: 0px 10px;
    background-image: url(../images/site/after.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    position: relative;
}

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: #282d58;
    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: #f79027;
    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 #f79027;
    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-block;
    vertical-align: middle;
    text-align: center;
    margin-left: 10px;
    z-index: 9;
}

header .middle_header .right_header .lang_drp a {
    display: inline-block;
    vertical-align: middle;
    color: #383838;
    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/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;
    top: -5px;
    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;
}

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

header .middle_header .right_header .lang_drp ul li a {}

header .menu {
    background-color: #282d58;
    height: 66px;
    padding-top: 22px;
}

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: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 20px;
}

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

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: #282d58;
}

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

header .time_period {
    background-color: #efefef;
    padding: 6px 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: #3c3c3c;
    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 6px;
    border-radius: 5px;
    margin-left: 30px;
    width: auto;
    text-align: left;
    display: none;
}

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

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

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

header .time_period .timing p {
    color: #ffffff;
    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: #ffffff;
    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: #f79027;
}

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;
}

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: #ffffff;
    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: 303px;
}

.banner {
    padding: 20px 0px;
    background-repeat: no-repeat;
    background-position: center center;
}

.banner .slider {}

.banner .slider .slide {
    width: 100%;
    background-color: #282d58;
    min-height: 420px;
}

.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;
}

.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: #f79027;
}

.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: #f79027;
    font-weight: bold;
}

.banner .slider .slide .right a.read_more {
    width: 310px;
    text-align: center;
    color: #282d58;
    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: #f79027;
    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: 20px 0px;
}

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

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

.box_sec .box h3 {
    color: #ffffff;
    font-size: 30px;
    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: #282d58;
    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: 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;
}

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

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

.features {
    padding-top: 65px;
    padding-bottom: 72px;
}

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

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

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

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

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

.features .f_box a {
    display: inline-block;
    vertical-align: middle;
    margin-top: 20px;
    font-weight: 700;
    text-decoration: underline;
    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: 15px;
    background-position: 99% center;
}

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

.blog {
    background-color: #efefef;
    padding-top: 21px;
    padding-bottom: 32px;
}

.blog .left_img {
    float: left;
    width: 50%;
}

.blog .right_img {
    float: right;
    width: 50%;
}


/* Footer */

.postopek {
    padding-top: 44px;
    padding-bottom: 62px;
}

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

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

footer .top_col {
    background-color: #ef9630;
    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: 'Nunito';
    color: #2c2c2c;
    font-size: 14px;
    font-weight: 300;
    border: 2px solid #fff;
    margin-left: 20px;
}

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

footer .top_col .sub {
    display: inline-block;
    vertical-align: top;
    background-color: #292e59;
    border-radius: 5px;
    width: 82px;
    height: 50px;
    font-family: 'Nunito';
    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: #292e59;
    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: #f79027
}

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: 272px;
    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.png);
    display: inline-block;
}

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

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: #f79027;
}

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

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

footer .bottom_col .contect .partner {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    height: 50px;
    border-radius: 5px;
    background-color: #f79027;
    text-align: left;
    padding-left: 52px;
    line-height: 50px;
    background-image: url(../images/site/part.png);
    background-repeat: no-repeat;
    background-position: left 20px center;
    margin-top: 22px;
}

footer .bottom_col .contect .partner:hover {
    background-color: #000;
}

footer .bottom_col .contect .link {
    color: #f79027;
    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: #f79027;
}

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

footer .partner_sheep {
    background-color: #292e59;
    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;
    height: 50px;
    border-radius: 5px;
    border: 2px solid #fff;
    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.png);
}

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

footer .partner_sheep .col a:hover {
    color: #292e59;
    background-color: #fff;
}

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: #292e59;
    padding-top: 50px;
    padding-bottom: 41px;
}

footer .last_col .wrapper a .footer-logo {
    width: 300px;
}

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 {
    border-radius: 5px;
    border: 2px solid #515578;
    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 {
    background-image: url(../images/site/fb_f.png);
}

footer .last_col .right_col .fb:hover {
    background-image: url(../images/site/fb_fh.png);
}

footer .last_col .right_col .insta {
    background-image: url(../images/site/insta_f.png);
}

footer .last_col .right_col .insta:hover {
    background-image: url(../images/site/insta_fh.png);
}

footer .last_col .right_col .youtube {
    background-image: url(../images/site/youtube_f.png);
}

footer .last_col .right_col .youtube:hover {
    background-image: url(../images/site/youtube_fh.png);
}

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: 270px;
    border-radius: 5px;
    border: 2px solid #515578;
    position: relative;
    background-image: url(../images/site/dots.png);
    text-align: right;
    padding-right: 10px;
    margin-left: 5px;
    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 {
    background-color: #ffffff;
}

footer .last_col .right_col .naso i {
    font-style: normal;
    display: inline-block;
    line-height: 50px;
    padding-right: 16px;
    background-image: url(../images/site/arrow_right.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: #292e59;
}

footer .last_col .right_col .lang_drp {
    display: inline-block;
    vertical-align: top;
}

footer .last_col .right_col .lang_drp {
    position: relative;
    width: 82px;
    display: inline-block;
    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 {
    position: absolute;
    content: '';
    background-image: url(../images/site/arrow_top.png);
    background-position: centercenter;
    background-repeat: no-repeat;
    width: 14px;
    height: 8px;
    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: #515578;
    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: #292e59;
}

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

footer .calander_icon .wrapper>img {
    position: fixed;
    left: 330px;
    bottom: 78px;
    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: 115px;
    bottom: 0;
    display: inline-block;
    border: 2px solid #fff;
    z-index: 9;
}

footer .calander_icon a img {
    display: block;
}

.shop_near[data-tooltip]:before {
    position: absolute;
    right: 0;
    top: 60px;
    background-color: #f79027;
    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 #f79027;
    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: #282d57;
    color: #fff;
}

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

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

.box_sec.inner_bg {
    background-image: url(../images/site/banner_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 38px;
}


/*.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: #ed8e20;
    line-height: 30px;
}

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

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

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

.btn {
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    background-color: #f79027;
    padding: 13.5px 64.6px;
    border-radius: 5px;
    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: #000;
}

.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: #282d58;
    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;
}

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

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

.frequently_questions {}

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

.frequently_questions h4 {
    position: relative;
    background-color: #fff;
    color: #282d58;
    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: #f79027;
}

.frequently_questions label a:hover {
    color: #282d58;
}

.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: #282d58;
}

.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: #282d58;
    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: #282d58;
    font-size: 20px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
}

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

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

.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: #282d58;
    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: #343965;
    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: #343965;
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
}

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

.fundation_blog h5 {
    color: #343965;
    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: #282d58;
    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: #282d58;
    content: '';
}

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

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

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

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

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

.fundation_blog .col:last-child .tell {
    display: inline-block;
    color: #343965;
    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: #282d58;
    font-size: 24px;
    line-height: 18px;
    font-weight: 400;
    margin-top: 13px;
}

.what_ask h4 {
    color: #ed8e20;
    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 #2e335d;
    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: #282d58;
    font-size: 20px;
    line-height: 20px;
    display: block;
    margin-bottom: 4px;
}

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

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

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

.what_ask .col .r_col .link:hover {
    color: #282d58
}

.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: #282d58;
    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: #282d58;
    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: #282d58;
    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: #ed8e20;
}

.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: #282d58;
    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: #282d58;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
}

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

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

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

.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: #282d58
}


/* 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: #282d58;
    font-size: 54px;
    font-weight: 400;
    text-align: center;
}

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

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

.way_case .step {
    background-color: #282d58;
    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 #515578;
    border-radius: 4px;
    min-height: 148px;
    width: 285px;
    text-align: center;
    padding-top: 14px;
    position: relative
}

.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: #ed8e20;
    font-size: 34px;
    line-height: 34px;
}

.way_case .step .inner .col .ordinal {
    color: #ed8e20;
    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: #ed8e20;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
}

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

.way_case .step .inner_link .col .btn {
    background-color: #fff;
    color: #282d58;
    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.png);
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 28px;
}

.way_case .step .inner_link .col:first-child a:hover {
    color: #ed8e20;
    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: #282d58;
    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: #282d58;
    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: #ee8e21
}

.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: #282d58;
}

.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: #282d58;
    font-size: 20px;
    font-weight: 600;
    margin-top: 13px;
}

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

.object a:hover {
    color: #ee8e21
}

.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: #282d58
}

.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: #ee8e21;
    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: #282d58;
    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: #282d58;
    font-size: 24px;
    font-weight: 400;
    text-align: left;
    margin-top: 27px;
    margin-bottom: 23px;
}

.prossess_buy h3 {
    color: #282d58;
    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: #ef8f21;
    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: #ef8f21;
    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;
}

.prossess_buy .inner .col label span {
    font-size: 34px;
    font-weight: bold;
    color: #282d58;
    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: #ed8e20;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
}

.prossess_buy .inner_link .col .talk1 {
    color: #ed8e20;
    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: #282d58;
    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: #282d58;
    font-size: 30px;
    font-weight: 800;
    display: inline-block;
    padding-left: 28px;
    background-image: url(../images/site/telk.png);
    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: #ed8e20;
    background-image: url(../images/site/tel_blue.png);
}

.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: #ee8e21;
}

.investing_form .contect .in {
    width: 100%;
    height: 50px;
    background-color: #efefef;
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Nunito';
    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: #282d58;
}

.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: #f79027;
    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: #282d58;
}

.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: #282d58;
    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: #f79027
}

.investing_form .up_img #file-upload-filename {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    padding: 0px 10px;
    line-height: 50px;
    background-color: #282d58;
    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: #292e59;
}

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

.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: #282d58;
    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: #f79027;
    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: #f79027;
}

.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/arrow_after.png);
    content: '';
    position: absolute;
    right: 8%;
    bottom: 30%;
    width: 80px;
    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: #f79027;
    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: 'Nunito';
    outline: none;
}

.what_buy .right_from .from_body .submit {
    background-color: #f79027;
    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: #282d58;
}

.what_buy .right_from .from_body textarea {
    min-height: 118px;
    border: 0px;
    resize: none;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Nunito';
    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: #ee8e21;
    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: #282d58;
    font-size: 36px;
    font-weight: 100;
}

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

.business_partners .business_heading h2 i {
    color: #ed8e20;
    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: #282d58;
    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: #e9942f;
    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: #ed8e20;
    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: #282d58;
    color: #ffffff;
}

.partners_list .partner.dark h3 {
    color: #282d58;
}

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

.partners_list .partner.dark h4 {
    color: #282d58;
}

.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: #292e59;
    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: #f79027;
    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: 'Nunito';
}

#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: 'Nunito';
    outline: none;
    border: 0px;
}

#popup .co_from .from_body .submit {
    background-color: #f79027;
    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: #282d58;
}

#popup .co_from .from_body textarea {
    min-height: 118px;
    border: 0px;
    resize: none;
    color: #8a8a8a;
    font-size: 15px;
    font-family: 'Nunito';
    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: #f79027;
}

.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: #282d58;
    font-size: 48px;
    font-weight: bold;
    line-height: 70px;
    background-color: transparent;
}

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

#popup .co_from .thanks h6 {
    color: #282d58;
    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: #282d58;
    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.png);
    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: #f79027;
    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: #f79027;
}

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

.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: #f79027
}

.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: #f79027;
    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: #ee8e21
}

.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: #292e59;
    font-size: 32px;
    line-height: 85px;
    border-bottom: 1px solid #424242;
}

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

.estimate .right_col .tell {
    font-size: 30px;
    font-weight: 900;
    color: #292e59;
    margin-top: 20px;
    display: inline-block;
    background-image: url(../images/site/telk.png);
    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: #f79027;
    background-image: url(../images/site/telkh.png);
}

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

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

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

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

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

.estimate .right_col h5 {
    color: #292e59;
    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: #292e59;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
}

.estimate .right_col .up_img h6 {
    position: absolute;
    left: 190px;
    bottom: 0;
    color: #292e59;
    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: #f79027
}

.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: #f79027;
    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: #bbbbbb;
}

.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: #ee8e21
}

.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: #282d58;
}

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

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

.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;
}

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

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

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

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

.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: #ed8e20;
    line-height: 29px;
}

.new_page .top_sec .col .bottom_detail .sec .calculate {
    font-size: 30px;
    font-weight: bold;
    color: #ed8e20;
    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: #f79027;
    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: #fff;
    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: #fff;
    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;
}

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

.new_page .top_sec .col.col2 table td span {
    color: #ed8e20;
    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 {
    background-color: #fff;
    margin-top: 25px;
    margin-bottom: 40px;
}

.new_page .center_sec .top_title {
    border-bottom: 1px solid #cccdd7;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.new_page .center_sec .top_title h2 {
    font-size: 24px;
    color: #282d58;
    font-weight: bold;
}

.new_page .center_sec .top_title p {
    font-size: 14px;
    font-weight: 300;
    color: #282d58;
}

.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,
.new_page .blog_sec .col.come-in {
    opacity: 1;
    transform: translateY(0px);
}


/*.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 20px;
}
.new_page .center_sec .table_data .col.platina {
    width: 100%;
}

.new_page .center_sec .table_data .col {
    width: 31%;
}

.new_page .center_sec .table_data .col h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #f79027;
    margin-bottom: 30px;
}

.new_page .center_sec .table_data .col {}

.new_page .center_sec .table_data .col .table_Sec {}

.new_page .center_sec .table_data .col .table_Sec table {}

.new_page .center_sec .table_data .col .table_Sec table td {
    color: #2c2c2c;
    width: 33%;
    font-size: 15px;
    font-weight: 400;
    padding-bottom: 15px;
}

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

.new_page .center_sec .table_data .col .table_Sec table td:first-child {
    width: 41%
}

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

.new_page .blog_sec .col {
    width: 23.5%;
    text-align: center;
    background-color: #fff;
    padding-top: 25px;
    padding-bottom: 79px;
}

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

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

.new_page .blog_sec .col .text_sec {}

.new_page .blog_sec .col .text_sec h2 {
    font-size: 30px;
    font-weight: 700;
    color: #282d58;
    line-height: 33px;
}

.new_page .blog_sec .col .text_sec h3 {
    font-size: 17px;
    font-weight: 300;
    color: #2c2c2c;
    margin-top: 15px;
}

.new_page .blog_sec .col .text_sec .odkup {
    font-size: 17px;
    font-weight: 300;
    color: #2c2c2c;
    margin-top: 15px;
}

.new_page .blog_sec .col .text_sec p {
    font-size: 17px;
    font-weight: bold;
    color: #ff961d;
}

.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: #282d58;
    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: #f79027;
    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: #282d58;
}

.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: #282d58;
    display: inline-block;
    transition: 0.4s ease all;
    font-weight: bold;
}

.new_page .kaj_sec h3 a:hover {
    color: #f79027;
}

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: #292e59;
    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: #ef9630;
}

.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: #898989;
    font-size: 14px;
    margin-right: 45px;
}

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

.marquee h6 strong {
    color: #f79027;
}

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;
}

.frequently_questions p a:hover {
    color: #f79027;
}

footer .partner_sheep .col+.col a {
    padding-left: 95px !important;
    background-position: left 60px center !important;
}


/* 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: #ef9731;
    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 */

.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;
}


footer .last_col .right_col .lang_drp ul li{
 color: white;
}

.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;
    }
    }
