/*reset*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, menu, nav, output, ruby, section,
summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, menu, nav, section, main {display: block;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
img{max-width: 100%; height: auto;}
a{text-decoration: underline;}
a:hover{cursor: pointer;}
*::-webkit-input-placeholder {color: #a9a9a9; opacity: 1;}
*:-moz-placeholder {color: #a9a9a9; opacity: 1;}
*::-moz-placeholder {color: #a9a9a9; opacity: 1;}
*:-ms-input-placeholder {color: #a9a9a9; opacity: 1;}
*{margin: 0; padding: 0;}
*{-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;}
button,input,a{outline: none;}
button, input, select{-webkit-appearance: none; -moz-appearance: none; appearance: none;}
html{
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased !important;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* CUSTOM TEMPLATE 1 */

/* fonts */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('https://promag.online/uscatorfructe/fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('https://promag.online/uscatorfructe/fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* styles */
body {
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #222;
    cursor: default;
}

.main-container {
    overflow: hidden;
    background: #f0f0f0;
}

.main_wrapper {
    width: 100%;
    background-color: /* COLOR: schimba_culoarea */
rgb(61, 122, 214);
/* END COLOR: schimba_culoarea */
}

.content {
    max-width: 480px !important;
    overflow: hidden;
    background: #fff;
    margin: 0 auto;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
img {
    max-width: 100%;
    height: auto;
}
b {
    font-weight: 700;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 90%; /* Could be more or less, depending on screen size */
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -16px;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

/* button */
.button {
    position: relative;
    transition: all 0.3s ease-in-out;
    padding-block: 1rem; /* Dublat de la 0.5rem */
    padding-inline: 2.5rem; /* Dublat de la 1.25rem */
    background-color:/* COLOR: schimba_culoarea */
rgb(61, 122, 214);
/* END COLOR: schimba_culoarea */
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 30px; /* Dublat de la 15px */
  }

.prod_count{
	font-size: 16px;
        left: -15px;
	text-align: center;
	margin-bottom: 10px;
	position: relative;
}
.prod_count>span{
	font-weight: 700;
	color: #333;
	font-size: 24px;
	line-height: 1em;
	margin-left: 4px;
	display: inline-block;
	vertical-align: top;
}
.prod_count:before{
	content: '';
	width: 26px;
	height: 26px;
	background: url("../images/count_box.png") 50% 50% no-repeat;
	display: inline-block;
	vertical-align: top;
	margin: 0 10px 0 0;
}
.prod_count:after{
	content: '';
	width: 28px;
	height: 41px;
	background: url("../images/count_arrow.gif") 50% 50% no-repeat;
	position: absolute;
	top: 5px;
	right: 35px;
}





  .icon {
    width: 48px; /* Dublat de la 24px */
    height: 48px; /* Dublat de la 24px */
    transition: all 0.3s ease-in-out;
  }
  
  .button:hover {
    transform: scale(1.05);
    border-color: #fff9;
  }
  
  .button:hover .icon {
    transform: translate(4px);
  }
  
  .button:hover::before {
    animation: shine 1.5s ease-out infinite;
  }
  
  .button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0) 70%
    );
    top: 0;
    left: -100px;
    opacity: 0.6;
  }
  
  @keyframes shine {
    0% {
      left: -100px;
    }
  
    60% {
      left: 100%;
    }
  
    to {
      left: 100%;
    }
  }
  

  .benefits_list7 .benefit_item{
    background: rgb(34, 34, 34);
    color: #fff;
    height: 240px;
}
h2.title span{
    color: #2e77fa;
}
.benefits_list7 .benefit_item img{
    width: 50%;
    height: 100%;
    object-fit: cover;
}

/* section */

.dark_theme {
    background: #222;
    color: #fff;
}
.gray_theme {
    background: #ebebeb;
}
/* titles */
h2.title {
/*    margin: 0 0 30px;*/
    padding: 0 30px;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
}
h2.title:after {
    display: block;
    content: '';
    margin: 15px 0;
    width: 62px;
    height: 5px;
    background: url(../images/separator_red756b8.png) center no-repeat;
}
h2.title span {
    display: inline;
    color: #a267ed;
}
.dark_theme h2.title span {
    color: #f5ca16;
}
/* separator */
.separator {
    width: 62px;
    height: 5px;
    background: url(../images/separator_red756b8.png) center no-repeat;
}
.separator.white {
    background-image: url(https://promag.online/uscatorfructe/images/separator_white50cd9.png);
}
/* image */
section .image {
    display: block;
    margin: 0 auto 30px;
}
/* offer */
.offer_section {
    padding: 0;
}
.offer_section.offer1 {
    background: #222;
}
.offer_section.offer2 {
    background: #222;
}
.offer_section .main_title {
    padding: 10px 20px;
    font-weight: 700;
    font-size: 38px;
    text-align: center;
}
.offer_section.offer1 .main_title {
    background: #f5ca16;
}
.offer_section.offer2 .main_title,
.offer_section.offer3 .main_title {
    background: #a267ed;
    color: #fff;
}
.offer_section .info_block {
    position: relative;
}
.info_block .product_motto {
    position: absolute;
    top: 0; /* Position the text towards the bottom of the image */
    left: 0;
    width: 100%; /* Make the text span the entire width of the image */
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white background */
    color: black; /* Text color */
    text-align: center; /* Centers the text horizontally */
    padding: 5px 0; /* Adds some padding inside the text container */
    margin: 0; /* Removes default paragraph margins */
    font-size: 16px; /* Adjust the font size as necessary */
    box-sizing: border-box; /* Includes padding in width calculation */
}
.offer_section .info_block .image {
    display: block;
    margin: 0;
}
.offer_section .info_block .gift {
    display: block;
    position: absolute;
    top: 220px;
    left: 150px;
}
.offer_section .info_block .subtitle {
    padding: 12px 20px 10px;
    width: 100%;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}
.offer_section.offer1 .info_block .subtitle,
.offer_section.offer2 .info_block .subtitle {
    background: rgba(34,34,34,0.8);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.17);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.17);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.17);
    color: #fff;
}
.offer_section.offer3 .info_block .subtitle {
    background: rgba(235,235,235,0.8);
}
.offer_section .info_block .discount {
    width: 112px;
    height: 112px;
    background: center no-repeat;
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
}
.offer_section.offer1 .info_block .discount {
    background-image: url(https://promag.online/uscatorfructe/images/offer1__discount_bg7e903.png);
    color: #fff;
}
.offer_section.offer3 .info_block .discount {
    background-image: url(https://promag.online/uscatorfructe/images/offer3__discount_bg92045.png);
}
.offer_section .info_block .discount b {
    display: block;
    width: 100px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    white-space: nowrap;
    position: absolute;
    top: 42px;
    left: 21px;
}
.offer_section .price{
	width: 430px;
	margin: 10px auto 20px;
	background: #fff;
	border-radius: 30px;
	position: relative;
	overflow: hidden;
box-shadow:  2px 4px 8px rgba(0,0,0,0.3); 
}
.offer_section .price:before{
	content: '';
	border-left: 34px solid #fff;
	border-top: 85px solid /* COLOR: schimba_culoarea */
rgb(61, 122, 214);
/* END COLOR: schimba_culoarea */
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -17px;

}

.offer_section .price>div{
	width: 50%;
	height: 85px;
	float: left;
	font-size: 12px;
	line-height: 1.2em;
	
	text-align: center;
	padding: 18px 0 0;
}
.offer_section .price>div>p{
	font-size: 30px;
	line-height: 1.3em;
}
.offer_section .price>div>p>small{
	font-size: 0.8em;
    text-transform: uppercase;
}
.offer_section .price .new{
	background:/* COLOR: schimba_culoarea */
rgb(61, 122, 214);
/* END COLOR: schimba_culoarea */
	color: #fff;
	font-weight: 700;
    
}
.offer_section .price .new p span{
	
    text-transform: lowercase;
}
.offer_section .price .old p span{
	text-decoration: line-through;
    text-transform: lowercase;
}
.advantages_block {
    padding: 20px;
    margin-top: 0;
}

.advantages_block ul {
    list-style: none; /* Removes default list styling */
    padding: 0; /* Removes default padding */
}

.advantages_block li {
    font-size: 16px; /* Adequate font size for readability */
    line-height: 1.5; /* Good line height for legibility */
    color: #333; /* Dark color for text for contrast */
    margin-bottom: 10px; /* Space between items */
}

.advantages_block .checkmark {
    color: ; /* Green color for checkmark */
    font-weight: bold; /* Bold checkmark for emphasis */
    font-size: 20px; /* Larger size for visibility */
    margin-right: 10px; /* Space between checkmark and text */
}


.promotion_block {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); /* Yellow to soft orange gradient background */
    color: #333; /* Darker text color for contrast on a lighter background */
    text-align: center; /* Center-align the text */
    padding: 10px 20px; /* Further reduced padding for a more compact height */
    margin-top: 10px; /* Space above the block for separation */
    margin-bottom: 10px;
    border: 3px dashed #666; /* Dashed border with 3px thickness in a darker tone */
    box-shadow: 0 4px 8px rgba(0,0,0,0.10); /* Subtle shadow for depth */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Sleek, modern font */
    font-size: 20px; /* Font size for readability */
    font-weight: bold; /* Bolder text for emphasis */
    line-height: 1.3; /* Reduced line height for a more compact appearance */
    display: flex; /* Flexbox for content alignment */
    flex-direction: column; /* Vertical stacking */
    justify-content: center; /* Vertically center content */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}


.promotion_block p {
    margin: 6px 0; /* Reduced margin for tighter spacing */
}
/*sect8*/
.order_list{
	padding: 0 20px;
}
.order_list>li:not(:last-child){
	margin-bottom: 25px;
}
.order_list>li>img{
	float: left;
	border-radius: 50%;
	-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
}
.order_list>li .text{
	padding: 0 0 0 90px;
}
.el-timer{
    width: 380px;
    margin: 0 auto;
}
.time_circles > div > span, .time_circles > div > h4{
    font-family: "DINRoundPro", Helvetica, sans-serif;
    line-height: 1.1em;
}

 .container {
    display: flex;
    justify-content: center;  /* Center the button horizontally */
    width: 100%;  /* Ensure the container takes full width of its parent */
  }
  
  .continue-application {
    --color: #fff;
    --background: #404660;
    --background-hover: #3A4059;
    --background-left: #2B3044;
    --folder: #F3E9CB;
    --folder-inner: #BEB393;
    --paper: #FFFFFF;
    --paper-lines: #BBC1E1;
    --paper-behind: #E1E6F9;
    --pencil-cap: #fff;
    --pencil-top: #275EFE;
    --pencil-middle: #fff;
    --pencil-bottom: #5C86FF;
    --shadow: rgba(13, 15, 25, .2);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    padding: 17px 29px 17px 69px;
    transition: background 0.3s, opacity 1s ease-in-out;
    color: var(--color);
    background: var(--bg, var(--background));
    animation: fadeInOut 2s infinite;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  .continue-application > div {
    top: 0;
    left: 0;
    bottom: 0;
    width: 53px;
    position: absolute;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
    background: var(--background-left);
  }
  
  .continue-application > div .folder {
    width: 23px;
    height: 27px;
    position: absolute;
    left: 15px;
    top: 13px;
  }
  
  .continue-application > div .folder .top {
    left: 0;
    top: 0;
    z-index: 2;
    position: absolute;
    transform: translateX(var(--fx, 0));
    transition: transform 0.4s ease var(--fd, 0.3s);
  }
  
  .continue-application > div .folder .top svg {
    width: 24px;
    height: 27px;
    display: block;
    fill: var(--folder);
    transform-origin: 0 50%;
    transition: transform 0.3s ease var(--fds, 0.45s);
    transform: perspective(120px) rotateY(var(--fr, 0deg));
  }
  
  .continue-application > div .folder:before, .continue-application > div .folder:after,
  .continue-application > div .folder .paper {
    content: "";
    position: absolute;
    left: var(--l, 0);
    top: var(--t, 0);
    width: var(--w, 100%);
    height: var(--h, 100%);
    border-radius: 1px;
    background: var(--b, var(--folder-inner));
  }
  
  .continue-application > div .folder:before {
    box-shadow: 0 1.5px 3px var(--shadow), 0 2.5px 5px var(--shadow), 0 3.5px 7px var(--shadow);
    transform: translateX(var(--fx, 0));
    transition: transform 0.4s ease var(--fd, 0.3s);
  }
  
  .continue-application > div .folder:after,
  .continue-application > div .folder .paper {
    --l: 1px;
    --t: 1px;
    --w: 21px;
    --h: 25px;
    --b: var(--paper-behind);
  }
  
  .continue-application > div .folder .paper {
    z-index: 1;
    --b: var(--paper);
  }
  
  .continue-application > div .folder .paper:before, .continue-application > div .folder .paper:after {
    content: "";
    width: var(--wp, 14px);
    height: 2px;
    border-radius: 1px;
    transform: scaleY(0.5);
    left: 3px;
    top: var(--tp, 3px);
    position: absolute;
    background: var(--paper-lines);
    box-shadow: 0 12px 0 0 var(--paper-lines), 0 24px 0 0 var(--paper-lines);
  }
  
  .continue-application > div .folder .paper:after {
    --tp: 6px;
    --wp: 10px;
  }
  
  .continue-application > div .pencil {
    height: 2px;
    width: 3px;
    border-radius: 1px 1px 0 0;
    top: 8px;
    left: 105%;
    position: absolute;
    z-index: 3;
    transform-origin: 50% 19px;
    background: var(--pencil-cap);
    transform: translateX(var(--pex, 0)) rotate(35deg);
    transition: transform 0.4s ease var(--pbd, 0s);
  }
  
  .continue-application > div .pencil:before, .continue-application > div .pencil:after {
    content: "";
    position: absolute;
    display: block;
    background: var(--b, linear-gradient(var(--pencil-top) 55%, var(--pencil-middle) 55.1%, var(--pencil-middle) 60%, var(--pencil-bottom) 60.1%));
    width: var(--w, 5px);
    height: var(--h, 20px);
    border-radius: var(--br, 2px 2px 0 0);
    top: var(--t, 2px);
    left: var(--l, -1px);
  }
  
  .continue-application > div .pencil:before {
    -webkit-clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
    clip-path: polygon(0 5%, 5px 5%, 5px 17px, 50% 20px, 0 17px);
  }
  
  .continue-application > div .pencil:after {
    --b: none;
    --w: 3px;
    --h: 6px;
    --br: 0 2px 1px 0;
    --t: 3px;
    --l: 3px;
    border-top: 1px solid var(--pencil-top);
    border-right: 1px solid var(--pencil-top);
  }
  
  .continue-application:before, .continue-application:after {
    content: "";
    position:absolute;
    width: 10px;
    height: 2px;
    border-radius: 1px;
    background: var(--color);
    transform-origin: 9px 1px;
    transform: translateX(var(--cx, 0)) scale(0.5) rotate(var(--r, -45deg));
    top: 26px;
    right: 16px;
    transition: transform 0.3s;
  }
  
  .continue-application:after {
    --r: 45deg;
  }
  
  .continue-application:hover {
    --cx: 2px;
    --bg: var(--background-hover);
    --fx: -40px;
    --fr: -60deg;
    --fd: .15s;
    --fds: 0s;
    --pbx: 3px;
    --pby: -3px;
    --pbd: .15s;
    --pex: -24px;
  }
  
  
  .sec_title {
    font-size: 1.65em;
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    text-transform: uppercase;
    padding-left: 20px;
    letter-spacing: 0.05em;

}

.sec_title_green {
    color:rgb(233, 111, 50);
    margin-top: 30px;
}

.sec_title .xxx {
    padding: 6px 20px;
    margin-left: 10px;
}

.sec_title .yyy {
    padding: 0 15px 0 10px;
    margin-left: -40px;
}

.bottom {
    padding-bottom: 40px;
}

.bottom span {
    border-bottom: 2px solid rgb(233, 111, 50);
}

.offer_section.offer1 .price_block {
    margin: -42px 0 25px;
}

.offer_section.offer1 .price_old {
    float: left;
    padding: 15px 0 0 15px;
    width: 160px;
    height: 84px;
    background: #e43315;
    color: #fff;
    position: relative;
}
.offer_section.offer1 .price_old:before {
    display: block;
    content: '';
    border-right: 50px solid rgba(255,255,255,0);
    border-bottom: 84px solid #e43315;
    position: absolute;
    top: 0;
    right: -50px;
}
.offer_section.offer1 .price_old .text {
    margin: 0 0 2px;
    font-size: 14px;
}
.offer_section.offer1 .price_old .value {
    font-weight: 700;
    font-size: 26px;
    line-height: 26px;
    text-decoration: line-through;
}
.offer_section.offer1 .price_new {
    float: left;
    margin: 14px 0 0 16px;
    width: 130px;
    height: 56px;
    background: #f5ca16;
    font-weight: 700;
    font-size: 24px;
    line-height: 56px;
    text-align: center;
    position: relative;
}
.offer_section.offer1 .price_new:before,
.offer_section.offer1 .price_new:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
}
.offer_section.offer1 .price_new:before {
    border-left: 34px solid rgba(255,255,255,0);
    border-top: 56px solid #f5ca16;
    left: -34px;
}
.offer_section.offer1 .price_new:after {
    border-right: 34px solid rgba(255,255,255,0);
    border-bottom: 56px solid #f5ca16;
    right: -34px;
    z-index: 10;
}
.offer_section.offer1 .price_new span {
    position: relative;
    z-index: 99;
}
.offer_section.offer1 .timer {
    float: left;
    margin: 27px 0 0;
    padding: 0 0 0 62px;
    width: 174px;
    height: 30px;
    background: rgba(255,255,255,0.2) url(https://promag.online/uscatorfructe/images/offer1__timer_arrows09e08.png) 30px center no-repeat;
    line-height: 32px;
    color: #fff;
    position: relative;
}
.offer_section.offer2 .price_block {
    margin: 0 0 34px;
    position: relative;
}
.offer_section.offer2 .price_item {
    float: left;
    width: 50%;
    height: 74px;
    text-align: center;
}
.offer_section.offer2 .price_item.old {
    padding: 13px 65px 0 0;
    background: #ebebeb;
}
.offer_section.offer2 .price_item.new {
    padding: 13px 0 0 65px;
    background: #f5ca16;
}
.offer_section.offer2 .price_item .text {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 14px;
}
.offer_section.offer2 .price_item .value {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}
.offer_section.offer2 .price_item.old .value {
    text-decoration: line-through;
}
.offer_section.offer2 .discount {
    padding: 19px 0 0 46px;
    width: 176px;
    height: 92px;
    background: url(https://promag.online/uscatorfructe/images/offer2__discount_bga2611.png) center no-repeat;
    color: #fff;
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -88px;
}
.offer_section.offer2 .discount .text {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 8px;
    text-transform: uppercase;
}
.offer_section.offer2 .discount .value {
    margin: 0 0 0 5px;
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
}
.offer_section.offer3 .price_block {
    height: 80px;
    position: relative;
}

.offer_section.offer3 .price_block .price_item_before {
    display: block;
    content: '';
    width: 75px;
    height: 34px;
    background: #f5ca16;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 0;
}
.offer_section.offer3 .price_block .price_item_after {
    display: block;
    content: '';
    width: 75px;
    border-top: 34px solid #f5ca16;
    border-left: 22px solid rgba(255,255,255,0);
    position: absolute;
    top: 50%;
    margin-top: -17px;
    right: 0;
}
.offer_section.offer3 .price_item {
    float: left;
    width: 50%;
    height: 80px;
    color: #fff;
    position: relative;
}
.offer_section.offer3 .price_item.old {
    padding-top: 15px;
    text-align: center;
    background: #222;
}
.offer_section.offer3 .price_item.new {
    padding-top: 15px;
    text-align: center;
    background: #a267ed;
}

.offer_section.offer3 .price_item_old_before {
    display: block;
    content: '';
    border-left: 44px solid rgba(255,255,255,0);
    border-top: 80px solid #222;
    position: absolute;
    top: 0;
    left: -44px;
}

.offer_section.offer3 .price_item_old_after {
    display: block;
    content: '';
    border-left: 44px solid #222;
    border-top: 80px solid #a267ed;
    position: absolute;
    top: 0;
    right: -22px;
    z-index: 10;
}

.offer_section.offer3 .price_item_new_before {
    display: block;
    content: '';
    border-right: 44px solid rgba(255,255,255,0);
    border-bottom: 80px solid #a267ed;
    position: absolute;
    top: 0;
    right: -44px;
}

.offer_section.offer3 .price_item .text {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 14px;
    position: relative;
    z-index: 99;
}
.offer_section.offer3 .price_item .value {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    position: relative;
    z-index: 99;
}
.offer_section.offer3 .price_item.old .value {
    text-decoration: line-through;
}
.offer_section ul {
    padding: 0 55px 25px;
}
.offer_section ul li {
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    color: #fff;
    position: relative;
}
.offer_section ul li:last-child {
    margin: 0;
}
.offer_section.offer1 ul li:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid #f5ca16;
    background: #f5ca16;
    -webkit-box-shadow: 0 0 0 2px #222 inset;
    -moz-box-shadow: 0 0 0 2px #222 inset;
    box-shadow: 0 0 0 2px #222 inset;
    position: absolute;
    top: 4px;
    left: 0;
}
.offer_section.offer2 ul li:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    border-top: 8px solid #f5ca16;
    border-left: 8px solid rgba(255,255,255,0);
    border-right: 8px solid rgba(255,255,255,0);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    position: absolute;
    top: 8px;
    left: -2px;
}
.offer_section .benefits_block {
    margin: 25px auto 25px;
    width: 440px;
}
.offer_section .benefits_block .benefit_item {
    float: left;
    padding: 0 5px;
    width: 33.333333%;
    text-align: center;
}
.offer_section .benefits_block img {
    display: block;
    margin: 0 auto 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.offer_section .timer_block {
    margin: 0 0 35px;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
}
.offer_section.order .timer_block {
    margin: 0 0 25px;
}
.offer_section.offer2 .timer_block {
    border-top: 1px dashed rgba(255,255,255,0.1);
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    background: #292929;
    color: #999;
}
.offer_section.offer3 .timer_block {
    border-top: 1px dashed rgba(0,0,0,0.1);
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    background: #f4f4f4;
}
.offer_section .timer_block p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 16px;
}
.offer_section .timer_block .timer {
    margin: 0 auto;
    width: 370px;
}
.offer_section .timer_block .timer_item {
    float: left;
    margin: 0 35px 0 0;
    width: 100px;
}
.offer_section .timer_block .timer_item:last-child {
    margin: 0;
}
.offer_section .timer_block .count {
    margin: 0 0 10px;
    height: 60px;
}
.offer_section .timer_block .count span {
    display: block;
    float: left;
    margin: 0 8px 0 0;
    width: 46px;
    height: 60px;
    background: #f5ca16;
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    color: #222;
}
.offer_section .timer_block .count span:last-child {
    margin: 0;
}
.offer_section .timer_block .text {
    font-size: 13px;
    line-height: 13px;
}
.offer_section.offer3 .products_count {
    padding: 0 0 25px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-align: center;
}
.offer_section.offer3 .products_count {
    color: #222;
}

.offer_section .products_count strong,
.offer_section .products_count b {
    background: #f5ca16;
    font-weight: bold;
    padding: 5px 10px;
}

.offer_section.order .text_block {
    margin: 0 55px 25px;
    text-align: center;
}
.offer_section.order .text_block h4 {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: #fff;
}
.offer_section.order .text_block p {
    color: #999;
}
.offer_section .field {
    display: block;
    margin: 0 auto 10px;
    padding: 0 40px;
    width: 370px;
    height: 72px;
    background-color: #f0f0f0; /* un gri foarte deschis pentru fundal */
    border: none;
    border-radius: 30px; /* o bordură mai pronunțată */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* adaugă o umbră ușoară */
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333; /* un gri închis pentru text pentru contrast mai bun */
    transition: all 0.3s ease; /* tranziție pentru efecte la hover */
}

.offer_section .field:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* umbră mai profundă la hover */
    background-color: #e8e8e8; /* schimbă culoarea de fundal la hover */
}

.offer_section label {
    display: block;
    text-align: left;
    margin-bottom: 1px;
    margin-left: 75px; /* Aliniază eticheta cu paddingul stâng al inputului */
    font-size: 14px; /* Opțional: poți ajusta dimensiunea fontului */
    color: #616161; /* Culoare pentru etichete, pentru o mai bună vizibilitate */
    font-family: 'Montserrat', sans-serif; /* Asigură consistența fontului cu inputurile */
}
.offer_section .field[name='name'] {
    margin: 0 auto 5px;
}
.offer_section .field[name='phone'] {
    margin: 0 auto 35px;
}
.offer_section.offer3 .field {
    border: 1px solid #dedede;
}
.offer_section.offer3 .field[name='DATA[NAME]'] {
    background: #f0f0f0 url(../images/offer__name_iconb5115.png) 22px center no-repeat;
}
.offer_section.offer3 .field[name='DATA[PHONE_WORK]'] {
    margin: 0 auto 15px;
    background: #f0f0f0 url(../images/offer__phone_icon583c4.png) 20px center no-repeat;
}
.offer_section .field::-webkit-input-placeholder {
    opacity: 1;
    color: #777;
}
.offer_section .field:-moz-placeholder {
    opacity: 1;
    color: #777;
}
.offer_section .field::-moz-placeholder {
    opacity: 1;
    color: #777;
}
.offer_section .field:-ms-input-placeholder {
    opacity: 1;
    color: #777;
}
.offer_section .field:focus::-webkit-input-placeholder {
    opacity: 0;
}
.offer_section .field:focus:-moz-placeholder {
    opacity: 0;
}
.offer_section .field:focus::-moz-placeholder {
    opacity: 0;
}
.offer_section .field:focus:-ms-input-placeholder {
    opacity: 0;
}
/* video */
.video_block {
    width: 480px;
    height: 270px;
    margin: 0 0 30px;
    background-color: #000;
    overflow: hidden;
    position: relative;
}
.video_block iframe,
.video_block object,
.video_block embed {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
/* description */
.description_section:first-child {
    padding: 30px 0 0;
}

.description_section h2.title {
    padding: 0 30px;
}



.description_section p {
    padding: 0 30px 0;
}

.description_section p:last-child {
    padding: 0 30px 30px;
}

p p {
    padding: 0 !important;
}

/* social proof */
.social_proof_block {
    padding: 0 30px 30px;
}
.social_proof_block .info_item {
    float: left;
    padding: 20px 0;
    width: 50%;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.social_proof_block .info_item:nth-child(even) {
    border-right: none;
}
.social_proof_block .info_item:nth-last-child(2),
.social_proof_block .info_item:last-child {
    border-bottom: none;
}
.social_proof_block .info_item .icon_block {
    float: right;
    margin: 0 15px;
    width: 50px;
    height: 50px;
    font-size: 0;
    line-height: 50px;
    letter-spacing: -1px;
    text-align: center;
}
.social_proof_block .info_item:nth-child(even) .icon_block {
    float: left;
}
.social_proof_block .info_item img {
    display: inline-block;
    vertical-align: middle;
    max-height: 50px;
}
.social_proof_block .info_item .text_block {
    float: left;
    margin: -2px 0 0;
    width: 129px;
}
.social_proof_block .info_item:nth-child(odd) .text_block {
    text-align: right;
}
.social_proof_block .info_item .number {
    margin: 0 0 5px;
    font-weight: 700;
    font-size: 34px;
    line-height: 34px;
    color: #e43315;
}
.social_proof_block .info_item .text {
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}
/* list 1 */
.list1 {
    padding: 0 30px 15px;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}
.list1 li {
    display: inline-block;
    vertical-align: top;
    margin: 0 20px 15px 0;
    padding: 0 0 0 25px;
    width: 200px;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: normal;
    position: relative;
}
.list1 li:nth-child(even) {
    margin: 0 0 10px;
}
.list1 li:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    border-left: 8px solid rgba(255,255,255,0);
    border-right: 8px solid rgba(255,255,255,0);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
    position: absolute;
    top: 8px;
    left: -2px;
}
.list1.marker1 li:before {
    border-top: 8px solid #f5ca16;
}
.list1.marker2 li:before {
    border-top: 8px solid #e43315;
}

.iAloza {
    margin-top: 11px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.iOBGpd {
    padding-right: 7px;
    font-size: 13px;
    color: rgb(68, 73, 80);
}
.iALXKM {
    display: inline-flex;
    position: relative;
    appearance: none;
    user-select: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    margin: 0px;
    padding: 0px;
    border-radius: 0px;
    border: 0px;
    color: inherit;
    background-color: transparent;
}
.ksTSWJ {
    margin: 18px 0px;
    display: flex;
}
.bpgmEB {
    width: 100%;
    display: flex;
}
.hhFvJt {
    margin: 0px;    flex: 0 0 30px;
    width: 30px;
    max-width: none;
    display: block;
    height: 30px;
    border-radius: 100%;
}
.ggLknz {
    padding-left: 5px;
}
.eWitUL {
    padding: 7px 10px 10px 15px;
    background-color: rgb(242, 243, 245);
    border-radius: 20px;
}
.gKpCSo {
    padding-right: 5px;
    font-size: 14px;
    color: rgb(43, 88, 143);
    font-weight: 700;
    line-height: 1.3;
}
.degbuh {
    font-size: 14px;
    color: rgb(0, 0, 0);
    line-height: 1.25;
}
.bEEZHa {
    position: absolute;
    right: 0px;
    bottom: -13px;
}
.iTNacO {
    display: flex;
}
.kkgXjw {
    margin: 0px;
    display: block;
    height: auto;
    max-width: 100%;
}
.blvJQI {
    font-size: 14px;
    color: rgb(137, 137, 137);
    position: absolute;
    top: 5px;
    right: 9px;
}
.jBtIxC {
    margin-top: 9px;
    padding-left: 16px;
    display: flex;
}
.bdxwcP {
    display: inline-flex;
    position: relative;
    appearance: none;
    user-select: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    margin: 0px;
    padding: 0px 13px 0px 0px;
    border-radius: 0px;
    border: 0px;
    background-color: transparent;
    font-size: 14px;
    color: rgb(56, 88, 152);
}
.bdxwcP::after {
    content: ".";
    position: absolute;
    top: -6px;
    right: 4px;
    color: rgb(137, 137, 137);
    font-size: 15px;
}
.jUItPz {
    display: inline-flex;
    position: relative;
    appearance: none;
    user-select: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    vertical-align: middle;
    text-align: center;
    margin: 0px;
    padding: 0px 13px 0px 0px;
    border-radius: 0px;
    border: 0px;
    background-color: transparent;
    font-size: 14px;
    color: rgb(56, 88, 152);
}
.jUItPz::after {
    content: ".";
    position: absolute;
    top: -6px;
    right: 4px;
    color: rgb(137, 137, 137);
    font-size: 15px;
}
.jAAtcy {
    padding-right: 9px;
    font-size: 14px;
    color: rgb(171, 171, 171);
}
.fExxFQ {
    font-size: 14px;
    color: rgb(68, 73, 80);
}








/* list 2 */
.list2 {
    padding: 0;
    list-style: none; /* eliminarea stilului implicit de listă */
    background: #ffffff; /* fundal general alb */
    box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* umbră subtilă pentru a adăuga profunzime */
    max-width: 600px; /* controlul lățimii pentru un aspect mai ordonat */
    margin: 10px auto; /* centrare */
}

.list2 li {
    margin: 0;
    padding: 10px 20px 10px 60px; /* reducerea padding-ului de sus și jos */
    position: relative;
    transition: background-color 0.3s; /* efect de tranziție la schimbarea culorii de fundal */
}

.list2 li:nth-child(odd) {
    background-color: #f9f9f9; /* culoare pentru rândurile impare */
}

.list2 li:nth-child(even) {
    background-color: #e9e9e9; /* culoare diferită pentru rândurile pare */
}

.list2 li:before {
    content: '\2713'; /* simbolul de bifa */
    font-size: 16px; /* mărimea fontului pentru simbol */
    color: #ffffff; /* culoarea bifei */
    width: 20px;
    height: 20px;
    border: 2px solid /* COLOR: schimba_culoarea */
rgb(61, 122, 214);
/* END COLOR: schimba_culoarea */
    background-color: /* COLOR: schimba_culoarea */
rgb(61, 122, 214);
/* END COLOR: schimba_culoarea */
    text-align: center; /* alinierea bifei în centrul chenarului */
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    line-height: 20px; /* alinierea verticală a textului în chenar */
    transition: background-color 0.3s; /* tranziție pentru schimbarea culorii */
}

.list2 li:hover {
    background-color: #e1e1e1; /* schimbare subtilă la hover */
}

.list2_section {
    padding: 20px 0; /* reducerea padding-ului secțiunii */
}






.dark_theme .list2 li:before {
    -webkit-box-shadow: 0 0 0 2px #222 inset;
    -moz-box-shadow: 0 0 0 2px #222 inset;
    box-shadow: 0 0 0 2px #222 inset;
}
/* slider */
.slider .owl-prev,
.slider .owl-next {
    width: 50px;
    height: 36px;
    background: url(https://promag.online/uscatorfructe/images/slider__arrowsfaa00.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -18px;
}
.slider .owl-prev {
    background-position: left center;
    left: 20px;
}
.slider .owl-next {
    background-position: right center;
    right: 20px;
}
/* image */
.result_image {
    display: block;
    margin: 0 auto;
}
/* benefits 1 */
.benefits_section {
    padding: 30px 0;
    background-color: #f0eef6;
    background-image: -webkit-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: -moz-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: -o-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: linear-gradient(107deg, #eaf2ff 0%, #f0eef6 100%);
}

.benefits_section h2.title {
    margin: 0 0 30px;
}

.benefits_list1 {
    margin: 0 10px;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
    text-align: center;
}
.benefits_list1 .benefit_item {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px 30px;
    width: 33.333333%;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: normal;
}
.benefits_list1 .benefit_item img {
    display: block;
    margin: 0 auto 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.benefits_list1 .benefit_item h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
/* benefits 2 */
.benefits_list2 {
    margin: 0 10px;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
    text-align: center;
}
.benefits_list2 .benefit_item {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px 30px;
    width: 50%;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: normal;
}
.benefits_list2 .benefit_item img {
    display: block;
    margin: 0 auto 15px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.benefits_list2 .benefit_item h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
/* benefits 3 */
.benefits_list3 .benefit_item {
    display: table;
    padding: 0 30px 30px;
    width: 100%;
}
.benefits_list3 .image_block {
    display: table-cell;
    vertical-align: top;
    width: 110px;
}
.benefits_list3.va_middle .image_block {
    vertical-align: middle;
}
.benefits_list3 .image_block img {
    display: block;
    width: 110px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.benefits_list3 .text_block {
    display: table-cell;
    vertical-align: top;
    padding: 0 0 0 20px;
}
.benefits_list3.va_middle .text_block {
    vertical-align: middle;
}
.benefits_list3 .text_block h4 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
/* benefits 4 */
.components_section {
    padding: 30px;
}
.benefits_list4 .benefit_item {
    margin: 0 auto 30px;
    width: 420px;
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
}
.benefits_list4 .benefit_item:last-child {
    margin: 0;
}
.benefits_list4 .benefit_item img {
    display: block;
}
.benefits_list4 .text_block {
    padding: 25px 30px;
}
.benefits_list4 .text_block h4 {
    margin: 0 0 15px;
    padding: 0 0 0 20px;
    border-left: 4px solid #e43315;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
/* benefits 5 */
.benefits_list5 {
    background: url(../images/bg_light541ff.jpg);
    overflow: hidden;
}
.benefits_list5.dark {
    background: #222;
}
.benefits_list5 .benefit_item {
    float: left;
    margin: 0 2px 2px 0;
    padding: 29px 15px 0 25px;
    width: 239px;
    height: 239px;
    -webkit-box-shadow: 0 0 0 1px #ebebeb;
    -moz-box-shadow: 0 0 0 1px #ebebeb;
    box-shadow: 0 0 0 1px #ebebeb;
}
.benefits_list5 .benefit_item:nth-child(even) {
    margin: 0 0 2px;
}
.benefits_list5 .benefit_item:nth-last-child(2),
.benefits_list5 .benefit_item:last-child {
    margin-bottom: 0;
}
.benefits_list5.dark .benefit_item {
    -webkit-box-shadow: 0 0 0 1px #4b4b4b;
    -moz-box-shadow: 0 0 0 1px #4b4b4b;
    box-shadow: 0 0 0 1px #4b4b4b;
    color: #fff;
}
.benefits_list5 .benefit_item img {
    display: block;
}
.benefits_list5 .benefit_item .separator {
    margin: 20px 0 14px;
}
.benefits_list5 .benefit_item h4 {
    font-weight: 700;
    text-transform: uppercase;
}
/* benefits 6 */
.benefits_list6 {
    padding: 20px 0;
    background: #ebebeb;
    overflow: hidden;
}
.benefits_list6 .benefit_item {
    margin: 0 0 20px;
    background: #fff url(../images/bg_light541ff.jpg);
    -webkit-box-shadow: 0 0 20px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 20px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 20px rgba(2, 2, 2, 0.1);
}
.benefits_list6 .benefit_item:last-child {
    margin: 0;
}
.benefits_list6 .benefit_item .text_block {
    float: left;
    padding: 16px 25px 0 25px;
    width: 280px;
}
.benefits_list6 .benefit_item h4 {
    font-weight: 700;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
.benefits_list6 .benefit_item .image_block {
    float: left;
    width: 200px;
    position: relative;
}
.benefits_list6 .benefit_item img {
    display: block;
}
.benefits_list6 .benefit_item .number {
    width: 30px;
    height: 36px;
    background: #e43315;
    font-weight: 700;
    font-size: 26px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 20px;
    left: -15px;
}
.benefits_list6 .benefit_item .number:before,
.benefits_list6 .benefit_item .number:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
}
.benefits_list6 .benefit_item .number:before {
    border-top: 36px solid rgba(255,255,255,0);
    border-right: 10px solid #e43315;
    left: -10px;
}
.benefits_list6 .benefit_item .number:after {
    border-bottom: 36px solid rgba(255,255,255,0);
    border-left: 10px solid #e43315;
    right: -10px;
}
/* benefits 7 */
.benefits_list7 .benefit_item {
    background: #f5ca16;
}
.benefits_list7 .benefit_item:nth-child(odd) {
    background: #222;
    color: #fff;
}
.benefits_list7 .benefit_item img {
    display: block;
    float: left;
    width: 240px;
}
.benefits_list7 .benefit_item:nth-child(even) img {
    float: right;
}
.benefits_list7 .benefit_item .text_block {
    float: left;
    padding: 20px 20px 0;
    width: 240px;
}
.benefits_list7 .benefit_item h4 {
    margin: 0 0 15px;
    padding: 0 0 0 10px;
    border-left: 4px solid #e43315;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
/* characteristics */
.characteristics_section {
    padding: 30px 0 0;
}

.characteristics__list li {
    padding: 15px 30px 15px 52px;
    text-align: right;
    position: relative;
}
.characteristics__list li:nth-child(odd) {
    background: #f4f4f4;
}
.characteristics__list li:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid #e43315;
    background: #e43315;
    -webkit-box-shadow: 0 0 0 2px #fff inset;
    -moz-box-shadow: 0 0 0 2px #fff inset;
    box-shadow: 0 0 0 2px #fff inset;
    position: absolute;
    top: 20px;
    left: 30px;
}
.characteristics__list li:nth-child(odd):before {
    -webkit-box-shadow: 0 0 0 2px #f4f4f4 inset;
    -moz-box-shadow: 0 0 0 2px #f4f4f4 inset;
    box-shadow: 0 0 0 2px #f4f4f4 inset;
}
.characteristics__list li b {
    float: left;
}
/* comparison */
.comparison_section {
    padding: 30px 0 0;
}

.comparison_block .images_block {
    margin: 0 0 15px;
}
.comparison_block .images_block img {
    display: block;
    float: left;
    width: 240px;
}
.comparison_block .titles_block h4 {
    float: left;
    padding: 20px;
    width: 240px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-align: center;
}
.comparison_block .titles_block h4:first-child {
    background: #222;
    color: #fff;
}
.comparison_block .titles_block h4:last-child {
    background: #f5ca16;
}
.comparison_block .row {
    display: table;
    width: 100%;
}
.comparison_block .row:nth-child(odd) {
    background: #f4f4f4;
}
.comparison_block .row .column {
    display: table-cell;
    vertical-align: top;
    padding: 10px 10px 10px 32px;
    width: 50%;
    position: relative;
}
.comparison_block .row .column:first-child {
    border-right: 1px solid #fff;
}
.comparison_block .row .column:last-child {
    border-left: 1px solid #fff;
}
.comparison_block .row .column:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid #000;
    background: #000;
    -webkit-box-shadow: 0 0 0 2px #fff inset;
    -moz-box-shadow: 0 0 0 2px #fff inset;
    box-shadow: 0 0 0 2px #fff inset;
    position: absolute;
    top: 15px;
    left: 10px;
}
.comparison_block .row .column:last-child:before {
    border: 1px solid #e43315;
    background: #e43315;
}
.comparison_block .row:nth-child(odd) .column:before {
    -webkit-box-shadow: 0 0 0 2px #f4f4f4 inset;
    -moz-box-shadow: 0 0 0 2px #f4f4f4 inset;
    box-shadow: 0 0 0 2px #f4f4f4 inset;
}
/* vote */
.vote_section {
    padding: 30px;
}
.vote_section .vote_block {
    padding: 40px;
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
}
.vote_section .questions_list {
    margin: 0 0 22px;
}
.vote_section .question_item {
    margin: 0 0 20px;
    height: 50px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background: #f0f0f0;
    -webkit-box-shadow: 0 0 0 1px #dedede inset;
    -moz-box-shadow: 0 0 0 1px #dedede inset;
    box-shadow: 0 0 0 1px #dedede inset;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.vote_section .question_item:last-child {
    margin: 0;
}
.vote_section .question_item .line {
    display: none;
    width: 0%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
}
.vote_section .questions_list.active .question_item .line {
    display: block;
}
.vote_section .question_item:nth-child(1) .line {
    background: #7ac700;
}
.vote_section .question_item:nth-child(2) .line {
    background: #e43315;
}
.vote_section .question_item:nth-child(3) .line {
    background: #f5ca16;
}
.vote_section .question_item .question_text {
    float: left;
    padding: 0 0 0 20px;
    line-height: 50px;
    position: relative;
}
.vote_section .question_item .question_text:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    content: '';
    margin: -2px 10px 0 -5px;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
}
.vote_section .questions_list.active .question_item .question_text:before {
    display: none;
}
.vote_section .question_item:nth-child(1) .question_text:before {
    background: #7ac700;
}
.vote_section .question_item:nth-child(2) .question_text:before {
    background: #e43315;
}
.vote_section .question_item:nth-child(3) .question_text:before {
    background: #f5ca16;
}
.vote_section .question_item .percents {
    display: none;
    float: right;
    padding: 0 20px 0 0;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    position: relative;
}
.vote_section .questions_list.active .question_item .percents {
    display: block;
}
.vote_section .voice_count {
    text-align: center;
}
.vote_section .voice_count b {
    margin: 0 0 0 5px;
    padding: 3px 5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #7ac700;
    color: #fff;
}
/* opinion 1 */
.opinion1_section {
    padding: 30px;
    position: relative;
}
.opinion1_section:before {
    display: block;
    content: '';
    border-top: 115px solid #f5ca16;
    border-left: 115px solid rgba(255,255,255,0);
    position: absolute;
    top: 0;
    right: 0;
}
.opinion1_section h2.title {
    margin: 0 60px 30px 0;
}
.opinion1_section .author_block {
    margin: 0 0 20px;
    padding: 0 65px 0 0;
    background: url(https://promag.online/uscatorfructe/images/quote2_icon70793.png) right 48px no-repeat;
}
.opinion1_section .author_block img {
    display: block;
    float: left;
    width: 120px;
    position: relative;
    z-index: 10;
}
.opinion1_section .author_block .author_info {
    float: left;
    margin: 34px 0 0 -20px;
    width: 255px;
    font-size: 0;
    line-height: 0;
    letter-spacing: -1px;
}
.opinion1_section .author_block .name {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px 0 35px;
    background: #f5ca16;
    font-weight: 700;
    font-size: 16px;
    line-height: 34px;
    letter-spacing: normal;
    position: relative;
}
.opinion1_section .author_block .name:after {
    display: block;
    content: '';
    border-top: 34px solid #f5ca16;
    border-right: 20px solid rgba(255,255,255,0);
    position: absolute;
    top: 0;
    right: -20px;
}
.opinion1_section .author_block .text {
    display: inline-block;
    vertical-align: top;
    padding: 0 10px 2px 35px;
    background: #222;
    font-size: 15px;
    line-height: 27px;
    color: #fff;
    position: relative;
}
.opinion1_section .author_block .text:after {
    display: block;
    content: '';
    border-top: 29px solid #222;
    border-right: 16px solid rgba(255,255,255,0);
    position: absolute;
    top: 0;
    right: -16px;
}
/* opinion 2 */
.opinion2_section {
    padding: 30px;
    background-color: #f0eef6;
    background-image: -webkit-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: -moz-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: -o-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: linear-gradient(107deg, #eaf2ff 0%, #f0eef6 100%);
}

.opinion2_section h2.title {
    padding: 0;
    margin: 0 0 30px;
}

.opinion2_section .opinion_block {
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
}
.opinion2_section .author_block {
    position: relative;
}
.opinion2_section img {
    display: block;
}
.opinion2_section .text_block {
    padding: 20px 30px;
}
.opinion2_section .author_info {
    margin: 0 0 15px;
    padding: 0 50px 0 20px;
    border-left: 4px solid #a267ed;
    background: url(../images/quote1_icon1e9b1.png) right center no-repeat;
}
.opinion2_section .author_info .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
.opinion2_section .author_info .text {
    font-size: 14px;
    line-height: 22px;
}
.opinion2_section .text_block p {
    margin: 0 0 15px;
}
.opinion2_section .text_block p:last-child {
    margin: 0;
}
/* reviews 1 */
.reviews1_section {
    padding: 30px;
    position: relative;
}
.reviews1_section:before {
    display: block;
    content: '';
    border-top: 115px solid #f5ca16;
    border-left: 115px solid rgba(255,255,255,0);
    position: absolute;
    top: 0;
    right: 0;
}
.reviews1_section h2.title {
    margin: 0 60px 30px 0;
}
.reviews1_section .review_item {
    margin: 0 0 30px;
    padding: 25px;
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
}
.reviews1_section .review_item:last-child {
    margin: 0;
}
.reviews1_section .review_item h4 {
    margin: 0 0 15px -25px;
    padding: 0 0 0 21px;
    border-left: 4px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
}
.reviews1_section .review_item p {
    margin: 0 0 25px;
}
.reviews1_section .author_block {
    padding: 0 50px 0 0;
    background: url(../images/quote1_icon1e9b1.png) right center no-repeat;
}
.reviews1_section .author_block img {
    display: block;
    float: left;
    width: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.reviews1_section .author_block .author_info {
    float: left;
    margin: 6px 0 0 20px;
    width: 240px;
}
.reviews1_section .author_block .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
/* reviews 2 */
.reviews2_section {
    padding: 30px;
}
.reviews2_section .reviews_list {
    background: #fff;
    -webkit-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    -moz-box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
    box-shadow: 0 0 27px rgba(2, 2, 2, 0.1);
}
.reviews2_section .review_item {
    padding: 30px;
}
.reviews2_section .review_item .photo {
    margin: 0 0 25px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.reviews2_section .review_item p {
    margin: 0 0 25px;
}
.reviews2_section .author_block {
    padding: 0 50px 0 0;
    background: url(../images/quote1_icon1e9b1.png) right center no-repeat;
}
.reviews2_section .author_block .author_info {
    margin: 6px 0 0;
    width: 230px;
}
.reviews2_section .author_block .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.reviews2_section .owl-prev,
.reviews2_section .owl-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 135px;
    font-size: 30px !important;
    padding: 10px 20px 15px 20px !important;
}

.reviews2_section .owl-prev .bx,
.reviews2_section .owl-next .bx {
    font-size: 20px;
    color: #fff;
}

.reviews2_section .owl-prev, .reviews2_section .owl-next {
    background-color: #f5ca16;
    padding: 10px;
}

.reviews2_section .owl-dots .owl-dot:last-child {
    display: none;
}

.reviews2_section .owl-prev {
    /*background-position: left center;*/
    left: -30px;
}
.reviews2_section .owl-next {
    /*background-position: right center;*/
    right: -30px;
}
/* reviews 3 */
.reviews3_section {
    padding: 30px;
}
.reviews3_section h2.title {
    padding: 0 50px 0 0;
    background: url(../images/quote1_icon1e9b1.png) right 7px no-repeat;
}
.reviews3_section .review_item {
    margin: 0 0 30px;
}
.reviews3_section .review_item:last-child {
    margin: 0;
}
.reviews3_section .author_block {
    margin: 0 0 20px;
}
.reviews3_section .author_block img {
    display: block;
    float: left;
    width: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.reviews3_section .author_block .author_info {
    float: left;
    margin: 6px 0 0 20px;
    width: 264px;
}
.reviews3_section .author_block .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.reviews3_section .author_block .info {
    margin: 12px 0 0;
    float: right;
    text-align: right;
}
.reviews3_section .author_block .rating {
    margin: 0 0 6px;
    width: 76px;
    height: 12px;
    background: url(https://promag.online/uscatorfructe/images/reviews3__stars2dd04.png) center no-repeat;
}
.reviews3_section .review_item p {
    margin: 0 0 20px;
}
.reviews3_section .images_block img {
    display: block;
    float: left;
    margin: 0 10px 0 0;
    width: 133px;
}
.reviews3_section .images_block img:last-child {
    margin: 0;
}
/* reviews 4 */
.reviews4_section {
    padding: 30px;
    background: #f5ca16 url(https://promag.online/uscatorfructe/images/reviews4_bg64b37.png) right top no-repeat;
}
.reviews4_section h2.title {
    margin: 0 140px 30px 0;
}
.reviews4_section .reviews_list {
    background: #fff;
}
.reviews4_section .review_item {
    padding: 0 0 25px;
}
.reviews4_section .author_block {
    margin: 30px 30px 20px;
    padding: 0 50px 0 0;
    background: url(../images/quote1_icon1e9b1.png) right center no-repeat;
}
.reviews4_section .author_block img {
    display: block;
    float: left;
    width: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.reviews4_section .author_block .author_info {
    float: left;
    margin: 6px 0 0 20px;
    width: 230px;
}
.reviews4_section .author_block .name {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.reviews4_section .review_item p {
    margin: 0 30px;
}
.reviews4_section .owl-prev,
.reviews4_section .owl-next {
    width: 40px;
    height: 36px;
    background: url(https://promag.online/uscatorfructe/images/reviews4__arrows4cf95.png) no-repeat;
    position: absolute;
    top: 132px;
}
.reviews4_section .owl-prev {
    background-position: left center;
    left: 0;
}
.reviews4_section .owl-next {
    background-position: right center;
    right: 0;
}
/* order info */
.order_info {
    background: url(../images/bg_light541ff.jpg);
    overflow: hidden;
}
.order_info .info_item {
    float: left;
    margin: 0 2px 2px 0;
    padding: 25px 15px 0 25px;
    width: 239px;
    height: 239px;
    -webkit-box-shadow: 0 0 0 1px #ebebeb;
    -moz-box-shadow: 0 0 0 1px #ebebeb;
    box-shadow: 0 0 0 1px #ebebeb;
}
.order_info .info_item:nth-child(even) {
    margin: 0 0 2px;
}
.order_info .info_item:nth-last-child(2) {
    margin-bottom: 0;
}
.order_info .info_item:last-child {
    margin-bottom: 0;
    padding: 0;
}
.order_info .info_item .icon {
    display: block;
    height: 39px;
}
.order_info .info_item .separator {
    margin: 20px 0 14px;
}
.order_info .info_item h4 {
    text-transform: uppercase;
}
.order_info .info_item .product_image {
    display: block;
}
/* order steps 1 */
.order_steps1 {
    padding: 20px 0;
    background: #ebebeb;
    position: relative;
}
.order_steps1:before,
.order_steps1:after {
    display: block;
    content: '';
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
}
.order_steps1:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(rgba(2,2,2,0.1)));
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    background-image: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    background-image: -o-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    top: 0;
}
.order_steps1:after {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255,255,255,0)), to(rgba(2,2,2,0.1)));
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    background-image: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(2,2,2,0.1) 100%);
    bottom: 0;
}
.order_steps1 .step_item {
    display: table;
    width: 100%;
    height: 110px;
    background: #fff url(../images/bg_light541ff.jpg);
    position: relative;
}
.order_steps1 .step_item:before {
    display: block;
    content: '';
    width: 100%;
    height: 25px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255,255,255,0)), to(rgba(2,2,2,0.05)));
    background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.05) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.05) 100%);
    background-image: -o-linear-gradient(bottom, rgba(255,255,255,0) 0%, rgba(2,2,2,0.05) 100%);
    background-image: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(2,2,2,0.05) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.order_steps1 .step_item .step_wrapper {
    display: table-cell;
    vertical-align: middle;
    padding: 0 300px 0 30px;
    position: relative;
}
.order_steps1 .step_item:nth-child(even) .step_wrapper {
    padding: 0 25px 0 300px;
}
.order_steps1 .step_item:nth-child(1) .step_wrapper {
    background: url(https://promag.online/uscatorfructe/images/order_steps1__step1_imagebe53b.png) right center no-repeat;
}
.order_steps1 .step_item:nth-child(2) .step_wrapper {
    background: url(https://promag.online/uscatorfructe/images/order_steps1__step2_image4500c.png) left center no-repeat;
}
.order_steps1 .step_item:nth-child(3) .step_wrapper {
    background: url(https://promag.online/uscatorfructe/images/order_steps1__step3_image6b5d3.png) right center no-repeat;
}
.order_steps1 .step_item:nth-child(4) .step_wrapper {
    background: url(https://promag.online/uscatorfructe/images/order_steps1__step4_image5d4c6.png) left center no-repeat;
}
.order_steps1 .step_item h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
}
.order_steps1 .step_item p {
    line-height: 20px;
}
/* order steps 2 */
.order_steps_section {
    padding: 0;
}

.order_steps2 {
    border-top: 2px solid #ebebeb;
    background: url(../images/bg_light541ff.jpg);
    overflow: hidden;
}
.order_steps2 .step_item {
    float: left;
    margin: 0 2px 2px 0;
    padding: 0 30px 0 30px;
    width: 239px;
    height: 239px;
    -webkit-box-shadow: 0 0 0 1px #ebebeb;
    -moz-box-shadow: 0 0 0 1px #ebebeb;
    box-shadow: 0 0 0 1px #ebebeb;
}

.order_steps2 .step_item .step_img {
    position: relative;
    background-color: #a267ed;
    padding: 15px 5px;
    margin: 20px 20px;
    max-width: 40px;
}

.order_steps2 .step_item .step_img .step_img_before {
    display: block;
    content: '';
    border-left: 20px solid rgba(255,255,255,0);
    border-bottom: 64px solid #a267ed;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
}

.order_steps2 .step_item .step_img .step_img_after {
    display: block;
    content: '';
    border-right: 20px solid rgba(255,255,255,0);
    border-top: 64px solid #a267ed;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -20px;
}

.order_steps2 .step_item .step_img .bx{
    color: #fff;
    font-size: 32px;
}

.order_steps2 .step_item:nth-child(even) {
    margin: 0 0 2px;
}
.order_steps2 .step_item:nth-last-child(2),
.order_steps2 .step_item:last-child {
    margin-bottom: 0;
}
.order_steps2.dark .step_item {
    background: #222 center no-repeat;
    -webkit-box-shadow: 0 0 0 1px #4b4b4b;
    -moz-box-shadow: 0 0 0 1px #4b4b4b;
    box-shadow: 0 0 0 1px #4b4b4b;
    color: #fff;
}
.order_steps2.dark .step_item:nth-child(1) {
    background-image: url(https://promag.online/uscatorfructe/images/order_steps2__step1_bg700d0.jpg);
}
.order_steps2.dark .step_item:nth-child(2) {
    background-image: url(https://promag.online/uscatorfructe/images/order_steps2__step2_bgee9fc.jpg);
}
.order_steps2.dark .step_item:nth-child(3) {
    background-image: url(https://promag.online/uscatorfructe/images/order_steps2__step3_bgfc93c.jpg);
}
.order_steps2.dark .step_item:nth-child(4) {
    background-image: url(https://promag.online/uscatorfructe/images/order_steps2__step4_bgac731.jpg);
}
.order_steps2 .step_item img {
    display: block;
    margin-bottom: 20px;
}
.order_steps2 .step_item .separator {
    margin: 20px 0 14px;
}
.order_steps2 .step_item h4 {
    font-weight: 700;
    text-transform: uppercase;
}
.problems_section {
    padding: 30px 0 0;
    background-color: #f0eef6;
    background-image: -webkit-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: -moz-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: -o-linear-gradient(343deg, #eaf2ff 0%, #f0eef6 100%);
    background-image: linear-gradient(107deg, #eaf2ff 0%, #f0eef6 100%);
}

.use_steps_section {
    padding: 30px 0 0;
}
.use_steps_section h2.title {
    padding: 0 20px 0 30px;
}
/* footer */
.footer_section {
    padding: 25px 0;
    background: #2c2c2c;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #e9e9e9;
}
.footer_section img {
    display: block;
    margin: 0 auto 10px auto;
}
.footer_section a {
    color: #e9e9e9;
}
body {
			  margin: 0;
			  
			}
			
			.topnav {
			  overflow: hidden;
			  background-color: #333;
			  
			}
			.topnav a {
			  float: left;
			  display: block;
			  color: #f2f2f2;
			  text-align: center;
			  padding: 14px 16px;
			  text-decoration: none;
			  font-size: 16px;
			}
			
			.topnav a:hover {
			  background-color: #ddd;
			  color: black;
			}
			
			.topnav a.active {
			  background-color: #04AA6D;
			  color: white;
			}
			
			
			.topnav .icon {
			  display: none;
			}
			
			@media screen and (max-width: 600px) {
			  .topnav a:not(:first-child) {display: none;}
			  .topnav a.icon {
				float: right;
				display: block;
			  }
			}
			
			@media screen and (max-width: 600px) {
			  .topnav.responsive {position: relative;}
			  .topnav.responsive .icon {
				position: absolute;
				right: 0;
				top: 0;
			  }
			  .topnav.responsive a {
				float: none;
				display: block;
				text-align: left;
			  }
			}
			#cookieConsent {
				background-color: rgba(20,20,20,0.8);
				min-height: 26px;
				font-size: 14px;
				color: #ccc;
				line-height: 26px;
				padding: 8px 0 8px 30px;
				font-family: "Trebuchet MS",Helvetica,sans-serif;
				position: fixed;
				bottom: 0;
				left: 0;
				right: 0;
				display: none;
				z-index: 9999;
			}
			#cookieConsent a {
				color: #4B8EE7;
				text-decoration: none;
			}
			#closeCookieConsent {
				float: right;
				display: inline-block;
				cursor: pointer;
				height: 20px;
				width: 20px;
				margin: -15px 0 0 0;
				font-weight: bold;
			}
			#closeCookieConsent:hover {
				color: #FFF;
			}
			#cookieConsent a.cookieConsentOK {
				background-color: #F1D600;
				color: #000;
				display: inline-block;
				border-radius: 5px;
				padding: 0 20px;
				cursor: pointer;
				float: right;
				margin: 0 60px 0 10px;
			}
			#cookieConsent a.cookieConsentOK:hover {
				background-color: #E0C91F;
			}