@charset "UTF-8";
/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenirnext/avenir-next-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenirnext/avenir-next-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenirnext/avenir-next-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenirnext/avenir-next-demi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenirnext/avenir-next-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenirnext/avenir-next-heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}


/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */

:root {
	--main-font: 'AvenirNext', sans-serif;;
	--main-color: #39B849;
	--main-gradient: linear-gradient(90deg, #2EB48E 0%, #489CDB 100%);
	--main-gradient-reverse: linear-gradient(90deg, #39B849 0, #DAFFAD 100%);
	--dark-1: #363B3F;
	--dark-2: #454545;
	--blue: #499CDE;
	--light-blue: #d8eeff;
	--additional-green: #CBDDD1;
	--green: #31B297;
	--orange: #FF9F1C;
	--light-orange: #FFE9CA;
	--light-yellow: #F7F5EF;
	--mint: #E8F9FA;
	--gray-1: #F6F7FD;
	--grey-1: #FAFAFA;
	--grey-2: #EBEBEB;
	--grey-3: #D6D6D6;
	--grey-4: #A2A2A2;
	--grey-5: #E5E5E5;
	--grey-6: #717784;
	--grey-7: #F0EFEF;
	--grey-8: #f2f4f6;
	--text-grey-1: #a4acb6;
	--white: #FFFFFF;
	--link: #6794E8;
	--bg-section: #F6F7F8;
	--bg-section-2: #E1E6EC;
	--lightgreen: rgba(46,200,141,15%);
	--lightblue: rgba(89,144,232,15%);
	--block-shadow-1: 0 0 8px rgba(53, 53, 55, 0.08);
	--block-shadow-hover: 0 0 1px 1px rgba(46, 200, 141, 1);
}

/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */
*, :after, :before { -webkit-box-sizing: border-box; box-sizing: border-box; }

html,body { padding: 0; margin: 0; width: 100%; height: 100%; min-height: 100vh; }

body {
	position: relative;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	color: var(--dark-1);
	background-color: var(--white);
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}
main {
	display: flex;
    flex-direction: column;
	width: 100%;
	overflow-x: initial;
}
p { 
	color: var(--dark-1);
	margin: 0 0 25px; 
	font-weight: 400;
	line-height: 1.3;
}
a {
	color: var(--main-color);
	text-decoration: none;
	outline: none;
	cursor: pointer;
}
a,button {
	-webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; 
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
img {
	display: block;
  	border-style: none;
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}
b, strong {
	font-weight: bold;
	font-weight: 700;
}
button {
	font-family: var(--main-font);
	outline: none;
	border: 0;
	padding: 0;
	line-height: 1.3;
	background: transparent;
	cursor: pointer;
}
button:focus { 
	outline: none; 
}
fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}
input {
	border: 0;
	outline: none;
}
.small, small {
	font-size: 80%;
}
.no-scroll {
	overflow: hidden;
}
.hide {
	display: none;
}
.w-100 {
	width: 100%!important;
}
/* Selection */
::-moz-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--main-color);
}
::selection {
	color: var(--white);
	text-shadow: none;
	background: var(--main-color);
}
::-moz-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--main-color);
}
::-webkit-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--main-color);
}
/* Table */
table {
	width: 100%;
	border-collapse: collapse;
}
table th,td {
	padding: 16px;
	text-align: left;
	border: none;
}
/* Lists */
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}
.list-inline > li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}
/* Section */
section {
	position: relative;
	padding: 50px 0;
}
@media (max-width: 767px) {
	section {
		padding: 40px 0;
	}
}
/* Container */
.container {
	width: 100%;
	max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
}
.container-fluid {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
}
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.justify-content-space-between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
/* Font weights */ 
.fw-300 { font-weight: 600!important; }
.fw-400 { font-weight: 600!important; }
.fw-500 { font-weight: 600!important; }
.fw-600 { font-weight: 600!important; }
/* Flex Classes */ 
.align-center { -webkit-box-align: center!important; -ms-flex-align: center!important; align-items: center!important; }
.justify-content-center { -webkit-justify-content: center!important; -ms-justify-content: center!important; justify-content: center!important; }
/* Margins */ 
.mb-0 { margin-bottom: 0!important }
.mt-0 { margin-top: 0!important }
/* Paddings */
.pb-0 { padding-bottom: 0!important }
.pt-0 { padding-top: 0!important }
.pt-20 { padding-top: 20px }
.pt-40 { padding-top: 40px }
.pt-40 { padding-top: 50px }
/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	color: var(--dark-1);
	font-weight: 400;
	margin: 0 0 25px 0;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span,
.h1 span, .h2 span, .h3 span, .h4 span, .h5 span, .h6 span {
	font-weight: 500;
}
/* Alignment */
.text-left { text-align: left!important }
.text-center { text-align: center!important }
.text-right { text-aright: center!important }
/* Block Shadow */
.block-shadow-1 {
	box-shadow: var(--block-shadow-1);
}
.bg-section-grey,
.bg-style-1 {
	background: var(--bg-section)!important;
}
.bg-none { background: none }
.bg-brand { background: var(--main-color) }
/* Arrows */
.arrow-circle {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--grey-2);
	border-radius: 50px;
	-webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
}
.arrow {
 	display: inline-block;
    -webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
}
.right {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
}
.left {
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.up {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
.down {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
	position: relative;
	background: var(--main-gradient);
	padding: 12px 20px;
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	min-height: 50px;
	border-radius: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
/* Btn Solid */
.btn-solid {
	background: var(--main-gradient);
	color: var(--white);
}
.btn:hover,
.btn-solid:hover {
	opacity: .9;
	
}
.btn-lg {
	padding: 18px 15px;
    font-size: 16px;
    font-weight: 500;
    max-height: 54px;
}
/* Btn Outline */
.btn-outline {
	color: var(--blue);
	border: 1px solid var(--blue);
	background: transparent;
}
.btn-outline:hover {
	background: var(--blue);
	color: var(--white);
	border-color: var(--blue);
}
/* Btn With Image */
.btn > img {
	width: 20px;
	margin-left: 6px;
}

/* Btn Link All */
.btn-link-all {
	display: flex;
	align-items: center;
	gap: 6px;
	color: var(--orange);
	font-weight: 400;
	margin-bottom: 5px;
}
.btn-link-all .arrow {
	padding: 3px;
}
.btn-link-all:hover {
	color: var(--orange);
	opacity: 1;
}
.btn-link-all:hover .arrow {
	border-color: var(--orange);
}
@media (max-width: 1200px) {
	.btn {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	.btn {
		font-size: 15px;
		padding: 15px;
	}
	.btn-link-all {
		gap: 6px;
	}
}

.link-style-1 {
	position: relative;
   	font-weight: 400;
   	padding: 6px 0;
   	color: var(--main-color);
   	-webkit-transition: -webkit-transform .2s ease;
   	transition: -webkit-transform .2s ease;
   	-o-transition: transform .2s ease;
   	transition: transform .2s ease;
   	transition: transform .2s ease, -webkit-transform .2s ease;
}
.link-style-1:before {
	content: "";
	position: absolute;
	-webkit-transition: -webkit-transform .2s ease;
	transition: -webkit-transform .2s ease;
	-o-transition: transform .2s ease;
	transition: transform .2s ease;
	transition: transform .2s ease, -webkit-transform .2s ease;
}
.link-style-1:before {
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--main-color);
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	    transform: scaleX(0);
}
.link-style-1:hover,
.link-style-1.active {
	color: var(--main-color);
}
.link-style-1.active {
	font-weight: 500;
}
.link-style-1:hover:before,
.link-style-1.active:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
/* Section Title */
.titles {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
.section-title {
	position: relative;
	font-size: 32px;
	font-weight: 600;
}
.section-title-sm {
	font-size: 24px;
}
.section-title-lg {
	font-size: 36px;
}
.section-title span {
	position: relative;
	font-weight: 500;
}
.section-subtitle {
	display: block;
	color: var(--blue);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
    margin: 0 auto 6px;
}
/*.section-title:before {
	content: "";
	position: absolute;
	width: 50px;
	height: 3px;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--orange);
}*/
.section-title.centered {
	margin: 0 auto 50px;
}
@media (max-width: 1200px) {
	.section-title {
		font-size: 26px;
	}
}
@media (max-width: 992px) {
	.section-title {
		font-size: 24px;
	}
}
@media (max-width: 767px) {
	.section-title {
		font-size: 22px;
	}
	.section-title-sm {
		font-size: 18px;
		text-align: center;
	}
}
/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
	padding: 14px 0;
}
.header.bg-grey {
	background: var(--bg-section);
}
.header.bg-lightgreen {
	background: var(--lightgreen);
}
.header.bg-lightblue {
	background: var(--lightblue);
}
.header.border-rb-0 {
	border-radius: 12px 12px 0 0;
}
.header .header-inner {
	padding: 6px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 16px;
}
.header.header-order .header-inner {
	justify-content: center;
}
.header .header-logo a {
	font-size: 20px;
	font-weight: 500;
	color: var(--dark-1);
}
.header .header-logo a img {
	height: 20px;
}
.header .header-logo a span {
	color: var(--main-color);
}
.header .header-menu {
	margin-right: auto;
	padding-left: 30px;
	margin-left: 30px;
	border-left: 1px solid var(--additional-green);
}
.header .header-nav {
	margin-right: 50px;
}
.header .header-nav ul li {
	display: inline-block;
	padding: 4px 12px;
}
.header .header-nav ul li.active a {
	color: var(--blue);
}
/*.header .header-nav ul li.active a:before {
	-webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}*/
.header .header-nav ul li a {
	position: relative;
	padding: 6px 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--dark-1);
}
.header .header-nav ul li a:hover {
	color: var(--main-color);
}
.header .header-button .btn {
	font-size: 14px;
	font-weight: 500;
	border-radius: 16px;
	min-height: auto;
	transition: all .2s;
}
.header .header-button .btn:hover {
	background: var(--blue);
}
@media (max-width: 1200px) {
	.header .header-nav ul li a,
	.header .header-button .btn {
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.header.header-main .header-button .btn {
		display: none;
	}
	.header .header-logo a {
		font-size: 16px;
	}
	.header .header-logo a img {
		height: 20px;
	}
}
/* ------------------------------------------------------------- *
 * Header - Burger Menu
/* ------------------------------------------------------------- */
.header .header-burger {
    position: relative;
 	background-color: transparent;
 	border: none;
 	cursor: pointer;
 	display: none;
 	padding: 0;
 	z-index: 10;
 	margin-left: 15px;
}
.header .header-burger .line {
	fill: none;
	stroke: #262626;
	stroke-width: 6;
	-webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header .header-burger .line1 {
  	stroke-dasharray: 60 207;
  	stroke-width: 5;
}
.header .header-burger .line2 {
	stroke-dasharray: 60 60;
	stroke-width: 5;
}
.header .header-burger .line3 {
  	stroke-dasharray: 60 207;
  	stroke-width: 5;
}
.header .header-burger.opened .line1 {
  	stroke-dasharray: 90 207;
  	stroke-dashoffset: -134;
  	stroke-width: 5;
}
.header .header-burger.opened .line2 {
  	stroke-dasharray: 1 60;
  	stroke-dashoffset: -30;
  	stroke-width: 5;
}
.header .header-burger.opened .line3 {
  	stroke-dasharray: 90 207;
  	stroke-dashoffset: -134;
  	stroke-width: 5;
}
.header .header-burger.opened .line {
/*	stroke: var(--grey-4);*/
}
.header .header-burger span {
	display: none;
	position: absolute;
	top: 100%;
	margin-top: -3px;
	font-size: 9px;
	font-weight: 400;
	color: var(--grey-4);
}
.header .header-burger.opened span {
	display: block;
}
@media (max-width: 992px) {
	.header .header-menu {
		display: none;
	}
	.header .header-button {
		margin-left: auto;
	}
	.header .header-burger {
		margin-left: 12px;
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 767px) {
	.header .header-button .btn {
        font-size: 12px;
        padding: 11px;
    }
}
@media (max-width: 450px) {
	
}
@media (max-width: 425px) {
	
}
@media (max-width: 350px) {
	
}
/* ------------------------------------------------------------- *
 * Mobile Menu
/* ------------------------------------------------------------- */
.sidebar-background {
/*    display: none;*/
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 990;
    width: 100%;
    height: 200%;
    background: rgb(80 95 122 / 80%);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}
.sidebar-background.active {
/*    display: block;*/
	opacity: 1;
	visibility: visible;
    z-index: 990;
}
.sidebar {
    position: fixed;
    width: 320px;
    top: 0;
    right: -100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    overflow-y: auto;
}
.sidebar-active {
    top: 0;
    right: 0;
    height: 100%;
    min-height: 100vh;
    background: var(--light-blue);
    z-index: 999;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    padding-bottom: 40px;
}
.sidebar-wrap {
    overflow-x: hidden;
    padding: 18px 20px;
    height: 100%;
}
.sidebar-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
/*    padding-right: 40px;*/
    background: none;
	height: 30px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sidebar-header .sidebar-logo {
	width: 85px;
}
.sidebar-header .header-burger {
	margin-left: auto;
}
.sidebar .sidebar-divider {
	display: block;
	width: 100%;
	height: 1px;
	background: rgb(172,172,177);
	background: -o-radial-gradient(circle, rgb(230 226 226) 0%, rgb(230 226 226 / 0%) 100%);
	background: radial-gradient(circle, rgb(230 226 226) 0%, rgb(230 226 226 / 0%) 100%);
	margin: 20px 0;
}
.sidebar .header-lang {
	display: block;
	margin: 0;
	padding: 0;
}
.sidebar .header-dropdown .header-dropdown-toggle {
	padding: 0;
}
.sidebar .header-lang .list {
	top: calc(100% + 6px);
}
.sidebar .sidebar-list-heading {
	font-size: 12px;
	font-weight: 400;
	padding-bottom: 12px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--blue);
}
.sidebar-list {
	min-height: calc(100% - 180px);
}
.sidebar-list li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.sidebar-list li a {
	position: relative;
	font-size: 15px;
	font-weight: 400;
	color: var(--dark-2);
	padding: 8px 12px 8px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.sidebar-list li a span {
	position: relative;
}
.sidebar-list li a .badge {
	right: -15px;
}
.sidebar-list li:last-child a {
	margin-bottom: 0;
}
.sidebar-list li .icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* Sidebar Menu Nav */
.sidebar-menu li {
	margin-bottom: 7px;
}
.sidebar-menu li:last-child {
	margin-bottom: 0;
}
.sidebar-menu li a {
	width: 100%;
	-webkit-transition: all .2s ease-in;
	-o-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.sidebar-menu li a:hover,
.sidebar-menu li a.active {
	background: var(--color-mint-1);
	-webkit-box-shadow: 0 0 0 1px var(--grey-shade-6);
    box-shadow: 0 0 0 1px var(--grey-shade-6);
    border-radius: 9px;
    padding: 8px 12px;
    margin-left: -12px;
    width: calc(100% + 12px);
}

/* Sidebar Support */
.sidebar-support li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sidebar-support li .icon-holder {
	background: var(--grey-shade-2);
	border-radius: 50%;
	padding: 5px;
	margin-right: 10px;
}
.sidebar-support li .icon-holder .icon {
	margin: 0;
	width: 12px;
    height: 12px;
}
.sidebar-support .sidebar-support-phone a {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	line-height: 1;
}
.sidebar-support .sidebar-support-phone a span {
	font-size: 10px;
	color: var(--main-green);
	line-height: 1;
	padding-top: 2px;
}
@media screen and (max-width: 767px) {
	.sidebar-header .btn-cabinet {
		margin-top: 14px;
		margin-left: auto;
        margin-right: 12px;
	}
}
@media screen and (max-width: 350px) {
    .sidebar {
        width: 90%
    }
}
/* Sidebar Bottom */
.sidebar-bottom {
	padding-top: 40px;
}
.sidebar-bottom .btn {
	height: 50px;
	font-size: 14px!important;
}

/* ------------------------------------------------------------- *
 * Section Intro
/* ------------------------------------------------------------- */
.section-intro {
	padding-top: 35px;
	background-color: var(--bg-color-1);
}
.section-intro .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.section-intro .intro-banner {
	width: calc(62% - 30px);
	border-radius: 25px;
	max-height: 664.95px;
}
.section-intro .intro-banner-inner {
	height: 100%;
	border-radius: 25px;
	/*background-image: url('../images/banners/banner-1.webp');
	background-size: cover;
    background-position: center;*/
}
.section-intro .intro-banner img {
	border-radius: 25px;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1200px) {
	.section-intro .intro-banner {
		width: calc(58% - 30px);
	}
}
@media (max-width: 992px) {
	.section-intro .intro-banner {
		width: 100%;
		height: 280px;
		margin-bottom: 15px;
	}
}
@media (max-width: 767px) {
	.section-intro .intro-banner {
		height: 180px;
	}
	.section-intro .intro-banner,
	.section-intro .intro-banner-inner {
		border-radius: 25px;
		background-position: 10% 24%;
	}
}
@media (max-width: 600px) {
	.section-intro .intro-banner {
		height: 120px;
	}
}
/* ------------------------------------------------------------- *
 * Home Intro
/* ------------------------------------------------------------- */
.home-intro {
	position: relative;
	padding: 30px 0 40px;
	margin-top: -6px;
	border-radius: 0 0 12px 12px;
	background: var(--white);
    background-repeat: no-repeat;
}
.home-intro .shape {
	position: absolute;
	z-index: -1;
	width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.home-intro .intro-title {
	position: relative;
	width: 100%;
	font-size: 44px;
	font-weight: 600;
	color: var(--dark-1);
	margin: 0 auto 24px;
}
.home-intro .intro-title span {
	font-weight: 500;
}
.home-intro .intro-subtitle {
	font-size: 22px;
}
.home-intro .intro-label {
	display: inline-flex;
	align-items: center;
	gap: 15px;
	font-size: 14px;
	padding: 15px 20px;
	border-radius: 18px;
	background: var(--mint);
}
.home-intro .intro-label img {
	width: auto;
    height: 20px;
}
.home-intro .intro-label img:nth-child(2) {
	height: 14px;
}
/*.home-intro .intro-title:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: var(--main-color);
}*/
.home-intro .row {
	align-items: center;
	gap: 10px;
}
.home-intro .row .col:nth-child(2) {
	flex-basis: calc((100% / 3) - 10px);
	flex-grow: 1;
}
.home-intro .row .col {
	flex-basis: auto;
}
.home-intro .row .col:nth-child(3) {
	min-width: 400px;
}
.home-intro .intro-banner {
	max-width: 315px;
	margin: 0 auto;
}
/* Calculator */
.home-intro .calc-form {
	width: 100%;
}
.calculator {
	position: relative;
	width: 100%;
	height: auto;
	background: var(--mint);
	padding: 40px 25px;
	border-radius: 16px;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}
.calculator .calc-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 12px;
}
.calculator .calc-title .text{
	font-size: 16px;
	font-weight: 500;
	color: var(--dark-1);
}
.calculator .calc-output {
	font-size: 16px;
	font-weight: 400;
}
.calculator .calc-range-labels {
	margin-top: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.calculator .calc-range-labels .calc-label,
.calculator .calc-range-labels .calc-label span {
	font-size: 12px;
	font-weight: 400;
	color: var(--grey-3);
}
.calculator .calc-button .btn {
	width: 100%;
}
.calculator .calc-info {
	padding: 20px;
	border: 1px solid rgba(46,200,141,25%);
	border-radius: 16px;
}
.calculator ul.calc-details {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 18px;
}
.calculator ul.calc-details li {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.calculator ul.calc-details li span {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-grey-1);
}
.calculator ul.calc-details li span:last-child {
	font-weight: 500;
	color: var(--dark-1);
}
.calculator .calc-attention-text {
	font-size: 10px;
	font-weight: 400;
	color: var(--text-grey-1);
	text-align: center;
	margin-top: -8px;
}
.calculator .calc-logo {
	position: absolute;
	top: -30px;
	right: 20px;
	width: 60px;
	height: 60px;
}
@media (max-width: 1200px) {
	.home-intro .row .col:first-child {
		flex-basis: calc((100% / 3) - 70px);
	}
	.home-intro .row .col:last-child {
		flex-basis: calc((100% / 3) - 50px);
	}
	.home-intro .intro-title {
		font-size: 28px;
	}
	.home-intro .intro-banner {
		max-width: 215px;
	}
	.calculator .calc-logo {
		top: -23px;
		width: 46px;
		height: 46px;
	}
}
@media (max-width: 992px) {
	.home-intro .row .col:nth-child(1) {
		flex-basis: calc((100% / 2) - 70px);
	}
	.home-intro .row .col:nth-child(2) {
		flex-basis: calc((100% / 2) - 10px);
	}
	.calc-form,
	.calculator {
		width: 100%;
		max-width: 100%;
	}
	.calculator {
		padding: 30px 25px;
	}
	.calculator .calc-title {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	.home-intro {
		padding-top: 10px;
	}
	.home-intro .row .col {
		flex-basis: 100%!important;
	}
	.home-intro .intro-title {
		font-size: 26px;
		margin-bottom: 8px;
		text-align: center;
	}
	.home-intro .intro-subtitle {
		text-align: center;
		font-size: 16px;
	}
	.home-intro .intro-label {
		margin-bottom: 14px;
	}
	.home-intro .intro-subtitle br {
		display: none;
	}
	.home-intro .calc-form {
		margin-top: -100px;
	}
	.calculator .calc-logo {
		display: none;
	}
	.home-intro .calculator {
        padding: 28px 15px
	}
	.home-intro .calculator .calc-title {
		font-size: 14px;
		margin-bottom: 16px;
	}
	.home-intro .calculator .calc-range-labels {
		margin-top: 6px;
	}
	.home-intro .intro-banner {
		padding-bottom: 88px;
		max-width: 200px;
	}
	.home-intro .row .col:nth-child(1) {
		order: 2;
	}
	.home-intro .row .col:nth-child(2) {
		order: 1;
	}
	.home-intro .row .col:nth-child(3) {
		order: 3;
		min-width: 100%;
	}
	.home-intro .intro-label {
		gap: 6px;
		font-size: 12px;
		padding: 12px;
		width: 100%;
		text-align: center;
        justify-content: center;
	}
	.home-intro .intro-label img {
		height: 16px;
	}
	.home-intro .intro-label img:nth-child(2) {
		height: 12px;
	}
}
/* ------------------------------------------------------------- *
 * Range Sliders
/* ------------------------------------------------------------- */
.calculator .irs--round{
    height: 20px;
}
.calculator .irs--round .irs-line{
    height: 2px;
    top: 8px;
    width: 100%;
    border-radius: 0;
    background: var(--grey-5);
}
.calculator .irs--round .irs-single{
    display: none;
}
.calculator .irs--round .irs-bar{
    height: 2px;
    background: transparent;
    top: 8px;
    border-radius: 0;
}
.calculator .irs--round .irs-bar:after {
	content: "";
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: var(--blue);
    z-index: 5;
    width: 100%;
}
.calculator .irs--round .irs-handle{
	cursor: pointer;
    background: var(--blue)!important;
    border: none;
    top: -9px;
    width: 36px;
    height: 36px;
    z-index: 20;
    box-shadow: none;
    border: none;
}
.calculator .irs--round .irs-handle:hover {
	background: var(--dark-1);
}
.calculator .irs--round .irs-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 50px;
    height: 50px;
    z-index: 999;
}
.calculator .irs--round .irs-handle:after {
	content: "";
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 24px;
    height: 24px;
    background-image: url('../images/icons/icon-handle.svg');;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 99;
}
@media (max-width: 767px) {
	/*.calculator .irs--round .irs-bar,
	.calculator .irs--round .irs-line {
		height: 15px;
	}
	.calculator .irs--round .irs-handle {
		top: -6.5px;
		width: 28px;
		height: 28px;
	}*/
}
/* ------------------------------------------------------------- *
 * Home Services
/* ------------------------------------------------------------- */
.home-services {
	padding-top: 0;
}
.home-services .row {
	gap: 20px;
}
.home-services .services-item {
	flex-basis: calc((100% / 2) - 20px);
	flex-grow: 1;
	padding: 30px;
	background: #F7F5EF;
	background-image: url('../images/banners/home-services-bg-02.png');
	background-size: 100%;
	background-position: center;
	border-radius: 20px;
	transition: background-size 0.4s ease, background-position 0.4s ease;
}
.home-services .services-inner {
	max-width: 350px;
}
.home-services .services-icon {
	width: 62px;
}
.home-services .services-title {
	font-size: 36px;
	font-weight: 400;
	line-height: 120%;
	color: var(--dark-1);
	margin: 24px 0 12px 0;
}
.home-services .services-title span {
	font-weight: 500;
}
.home-services p {
	font-size: 16px;
	font-weight: 400;
	margin: 0 0 24px 0;
}
.home-services .services-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	color: var(--dark-1);
}
.home-services .services-btn img {
	width: 24px;
}
.home-services .services-item.one {
	background: var(--main-color);
	background-image: url('../images/banners/home-services-bg-01.png');
	background-size: 100%;
	background-position: center;

}
.home-services .services-item.one .services-title,
.home-services .services-item.one .services-btn,
.home-services .services-item.one p {
	color: var(--white);
}
.home-services .services-item:hover {
	background-size: 105%;
	background-position: center;
}
@media (max-width: 1200px) {
	.home-services .services-title {
		font-size: 24px;
	}
	.home-services p {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.home-services {
		padding-top: 20px;
	}
	.home-services .services-item,
	.home-services .services-item.one,
	.home-services .services-item.two,
	.home-services .services-item:hover {
		flex-basis: 100%;
		background-size: 75%;
	    background-position: center right;
	    background-repeat: no-repeat;
	}
}
@media (max-width: 767px) {
	.home-services .services-item {
		padding: 30px 20px;
	}
	.home-services .services-item,
	.home-services .services-item.one,
	.home-services .services-item.two,
	.home-services .services-item:hover {
		background-size: 60%;
	    background-position: top right;
	}
	.home-services .services-title {
		font-size: 20px;
	}
	.home-services .services-icon {
		width: 50px;
	}
}
/* ------------------------------------------------------------- *
 * Inputs
/* ------------------------------------------------------------- */
.input-holder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.input-holder > input {
	border: 1px solid var(--grey-5);
	border-radius: 5px;
	width: 100%;
	font-size: 16px;
	padding: 15px 12px;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
.input-holder > input:focus,
.input-holder > input:valid,
.input-holder > input:invalid {
	outline: none;
}
.input-holder > input:focus {
	border-color: var(--main-color);
	background: var(--white)!important;
}
.input-holder > input:focus + .input-label {
	color: var(--main-color)!important;
}
.input-holder > input:valid {
	color: var(--dark-1);
}
input::placeholder {
	color: var(--grey-4);
}
input::placeholder::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: var(--grey-4)
}
input::placeholder::-moz-placeholder { /* Firefox 19+ */
	color: var(--grey-4)
}
input::placeholder:-ms-input-placeholder { /* IE 10+ */
	color: var(--grey-4)
}
.input-holder input.input-simple:focus,
.input-holder input.input-simple:valid,
.input-holder input.input-simple:invalid {
	padding-top: 12px;
	padding-bottom: 12px;
}

/* ------------------------------------------------------------- *
 * Home Offers
/* ------------------------------------------------------------- */
.home-offers .title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 60px;
}
.home-offers .title-wrap h4 {
	margin: 0 auto;
	padding-left: 145px;
}
@media (max-width: 767px) {
	.home-offers .title-wrap {
		flex-wrap: wrap;
		gap: 18px;
	}
	.home-offers .title-wrap h4 {
		padding: 0;
		margin: 0;
	}
	.home-offers .title-wrap {
		margin-bottom: 24px;
	}
	.home-offers .section-title {
/*		max-width: 200px;*/
	}
	.home-offers .title-wrap .btn-link-all {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * Home Offers Card
/* ------------------------------------------------------------- */
.home-offers-cards {
	padding: 120px 0;
	background: var(--gray-1);
	background-image: url('../images/banners/home-cards-bg.svg');
	background-size: cover;
}
@media (max-width: 767px) {
	.home-offers-cards {
		padding: 60px 0;
		background-image: none;
	}
}
/* ------------------------------------------------------------- *
 * Home Top Mfo Offers
/* ------------------------------------------------------------- */
.top-offers-mfo {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}
.top-offers-mfo .offer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	flex-grow: 1;
	background: var(--gray-1);
	border: 1px solid var(--blue);
	border-radius: 20px;
	padding: 20px;
	width: calc(25% - 15px);
}
.top-offers-mfo .offer:hover {
	cursor: pointer;
/*	box-shadow: var(--block-shadow-hover);*/
}
/*.top-offers-mfo .offer:first-child,
.top-offers-mfo .offer:last-child {
	transform: scale(.9);
}*/
.top-offers-mfo .offer-top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-offers-mfo .offer-top .offer-logo {
	height: 75px;
}
.top-offers-mfo .offer-top .offer-logo img {
	height: 100%;
}
.top-offers-mfo .offer-top .offer-rating {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-end;
	gap: -2px;
}
.top-offers-mfo .offer-top .offer-rating .offer-name,
.top-offers-mfo .offer-top .offer-rating .offer-score-rate {
	font-size: 13px;
	color: var(--grey-6);
	text-align: right;
}
.top-offers-mfo .offer-top .offer-rating .offer-score-rate {
	margin-top: 2.5px;
}
.top-offers-mfo .offer-top .offer-score {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-end;
}
.top-offers-mfo .offer-top .offer-stars {
	display: flex;
	margin-right: 4px;
}
.top-offers-mfo .offer-top .offer-stars i {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url('../images/icons/icon-star.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.top-offers-mfo .offer-info {
	margin-top: 12px;
	padding: 20px 0 30px 0;

}
.top-offers-mfo .offer-info ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.top-offers-mfo .offer-info ul li {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}
.top-offers-mfo .offer-info ul li .small {
	position: relative;
	font-size: 16px;
	font-weight: 100;
	color: var(--dark-1);
	background: var(--gray-1);
	z-index: 2;
}
.top-offers-mfo .offer-info ul li .big {
	position: relative;
	font-size: 22px;
	font-weight: 500;
	color: var(--dark-1);
	background: var(--gray-1);
	z-index: 2;
}
.top-offers-mfo .offer-info ul li .horizontal-line {
	position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    z-index: 0;
    border-bottom: 1px dotted var(--additional-green);
}
@media (max-width: 1300px) {
	.top-offers-mfo .offer-top .offer-rating .offer-name,
	.top-offers-mfo .offer-top .offer-rating .offer-score-rate {
		font-size: 12px;
	}
}
@media (max-width: 1200px) {
	.top-offers-mfo .offer-top {
		flex-direction: column;
	}
	.top-offers-mfo .offer-top .offer-logo {
		height: 75px;
		margin-bottom: 6px;
	}
	.top-offers-mfo .offer-top .offer-rating {
		gap: 3px;
	}
	.top-offers-mfo .offer-top .offer-rating,
	.top-offers-mfo .offer-top .offer-score {
		justify-content: center;
	}
	.top-offers-mfo .offer-top .offer-rating .offer-name,
	.top-offers-mfo .offer-top .offer-rating .offer-score-rate {
		text-align: center;
	}
	.top-offers-mfo .offer-info ul li .big {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.top-offers-mfo .offer {
		padding: 10px 15px 15px 15px;
	}
	.top-offers-mfo .offer-info {
		padding: 20px 0;
	}
	.top-offers-mfo .offer-info ul {
		flex-wrap: wrap;
		gap: 10px;
	}
	.top-offers-mfo .offer-info ul li {
		margin: 0 auto;
		text-align: center;
		flex-basis: 100%;
	}
	.top-offers-mfo .offer-info ul li .small {
		font-size: 12px;
	}
	.top-offers-mfo .offer-button .btn {
		padding: 12px;
		font-size: 14px;
		font-weight: 500;
	}
}
@media (max-width: 767px) {
	.top-offers-mfo .offer {
		width: calc(50% - 7px);
	}
	.top-offers-mfo .offer-top .offer-logo {
		height: 80px;
		margin-bottom: 0;
	}
	.top-offers-mfo .offer-top .offer-rating .offer-name span {
		display: block;
	}
	.top-offers-mfo .offer-info {
		padding: 20px 0;
	}
	.top-offers-mfo .offer-info ul li .small {
		font-size: 16px;
	}
	.top-offers-mfo .offer-info ul li .big {
		font-size: 18px;
	}
}
/* ------------------------------------------------------------- *
 * Home Top Cards Offers
/* ------------------------------------------------------------- */
.top-offers-cards {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 20px;
}
.top-offers-cards .offer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	flex-grow: 1;
	background: var(--white);
	border: 1px solid var(--blue);
	border-radius: 20px;
	padding: 20px;
}
.top-offers-cards .offer:hover {
	cursor: pointer;
/*	box-shadow: var(--block-shadow-hover);*/
}
.top-offers-cards .offer-top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top-offers-cards .offer-top .offer-logo {
	height: 70px;
}
.top-offers-cards .offer-top .offer-logo img {
	height: 100%;
	border-radius: 8px;
}
.top-offers-cards .offer-top .offer-rating {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-end;
	gap: 2px;
}
.top-offers-cards .offer-name {
	color: var(--dark-1);
	font-weight: 400;
	max-width: 170px;
}
.top-offers-cards .offer-name span {
	font-weight: 500;
}
.top-offers-cards .offer-top .offer-rating .offer-name,
.top-offers-cards .offer-top .offer-rating .offer-score-rate {
	font-size: 13px;
	text-align: right;
	color: var(--grey-6);
}
.top-offers-cards .offer-top .offer-rating .offer-name span {
	display: block;
	max-width: 130px;
    font-size: 12px;
}
.top-offers-cards .offer-top .offer-score {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: flex-end;
}
.top-offers-cards .offer-top .offer-stars {
	display: flex;
	margin-right: 4px;
}
.top-offers-cards .offer-top .offer-stars i {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url('../images/icons/icon-star.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.top-offers-cards .offer-info {
	margin-top: 20px;
	padding: 20px 0 30px 0;
	border-top: 1px solid var(--grey-5);
}
.top-offers-cards .offer-info ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.top-offers-cards .offer-info ul li {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
}
.top-offers-cards .offer-info ul li .small {
	position: relative;
	font-size: 16px;
	font-weight: 100;
	color: var(--dark-1);
	background: var(--white);
	z-index: 2;
}
.top-offers-cards .offer-info ul li .big {
	position: relative;
	font-size: 22px;
	font-weight: 500;
	color: var(--dark-1);
	background: var(--white);
	z-index: 2;
}
.top-offers-cards .offer-info ul li .horizontal-line {
	position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    z-index: 0;
    border-bottom: 1px dotted var(--additional-green);

}
@media (max-width: 1200px) {
	.top-offers-cards .offer-top {
		gap: 16px;
	}
	.top-offers-cards .offer-top .offer-logo {
		height: 55px;
	}
	.top-offers-cards .offer-info ul {
		gap: 10px;
	}
	.top-offers-cards .offer-info ul li {
		/*justify-content: center;
	    flex-direction: column;
	    text-align: center;*/
	    gap: 4px;
	}
	.top-offers-cards .offer-info ul li .small {
		font-size: 14px;
	}
	.top-offers-cards .offer-info ul li .big {
		font-size: 17px;
	}
	.top-offers-cards .offer-top .offer-rating .offer-name,
	.top-offers-cards .offer-top .offer-rating .offer-score-rate { 
		font-size: 12px;
	}
	.top-offers-cards .offer-top .offer-rating .offer-name span {
		font-size: 11px;
	}
}
@media (max-width: 992px) {
	.top-offers-cards {
		flex-wrap: wrap;
	}
	.top-offers-cards .offer {
		margin-top: 15px;
	}
	.top-offers-cards .offer-top {
		flex-wrap: wrap;
        justify-content: center;
	}
	.top-offers-cards .offer-top .offer-logo {
        height: 60px;
        width: auto;
        margin-top: -40px;
    }
    .top-offers-cards .offer-top .offer-logo img {
    	width: auto;
    }
	.top-offers-cards .offer-top .offer-rating .offer-name,
	.top-offers-cards .offer-top .offer-rating .offer-score-rate {
		text-align: center;
	}
	.top-offers-cards .offer-top .offer-score {
		justify-content: center;
	}
	.top-offers-cards .offer-info ul {
		flex-wrap: wrap;
		gap: 10px;
	}
	.top-offers-cards .offer-info ul li {
		margin: 0 auto;
		text-align: center;
		flex-basis: 100%;
	}
	.top-offers-cards .offer-info ul li .small br {
		display: none;
	}
	.top-offers-cards .offer-button .btn {
		padding: 12px;
		font-size: 13px;
	}
}
@media (max-width: 767px) {
	.top-offers-cards .offer {
		width: calc(50% - 7px);
		margin-top: 25px;
	}
	.top-offers-cards .offer-info {
		padding: 20px 0;
	}
	.top-offers-cards .offer-top .offer-rating .offer-name span {
		display: block;
	}
}
/* ------------------------------------------------------------- *
 * Home Calculator
/* ------------------------------------------------------------- */
.home-calculator {
	background: var(--bg-section-2);
}
.home-calculator .section-title {
	color: var(--dark-1);
	margin-bottom: 40px;
}
.home-calculator-form {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex-basis: 100%;
	gap: 25px;
}
.home-calculator-form .inputs-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.home-calculator-form .input-holder {
	flex-basis: calc((100% / 2) - 5px);
	flex-grow: 1;
}
.home-calculator-form input {
	width: 100%;
	padding: 16px 26px 16px 16px;
	height: 52px;
	background: var(--white);
	border-radius: 8px;
	color: var(--dark-1);
}
.home-calculator-form .input-holder span {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}
.home-calculator-form input,
.home-calculator-form .select-selected {
	height: 52px;
}
.calculator-info-text {
	font-size: 12px;
	font-weight: 400;
	color: #A4ACB5;
	max-width: 700px;
	margin: 16px 0 0 0;
}

.calculator-output {
	border-radius: 12px;
	padding: 40px;
	width: 100%;
	background: var(--white);
}
.calculator-output ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6px;
}
.calculator-output ul li {
	flex-grow: 1;
	flex-basis: calc((100% / 4) - 30px);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.calculator-output ul li .small {
	font-size: 15px;
	font-weight: 400;
	color: var(--text-grey-1);
}
.calculator-output ul li .big {
	font-size: 20px;
	font-weight: 500;
	color: var(--dark-1);
}

.calculator-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}
.calculator-progress {
	width: calc(100% / 2);
}
.calculator-button {
	width: calc((100% / 2) - 75px);
}
.calculator-button .btn {
	width: 100%;
	height: 54px;
}
.progress-inner {
	display: flex;
	flex-direction: row;
	gap: 4px;
}
.progress-inner .progress-summ {
	height: 3px;
	width: 100%;
	background: var(--dark-1);
	border-radius: 20px;
}
.progress-inner .progress-overpay {
	height: 3px;
	width: 0%;
	background: var(--grey-5);
	border-radius: 20px;
}
.progress-labels {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 12px;
}
.progress-label {
	position: relative;
	padding-left: 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--dark-1);
}
.progress-label.overpay span {
	color: var(--grey-4);
}
.progress-label:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	border-radius: 100px;
	background: var(--dark-1);
}
.progress-label.overpay:before {
	background: var(--grey-5);
}
@media (max-width: 992px) {
	.calculator-output {
		padding: 25px 20px;
	}
	.calculator-output ul li {
		gap: 8px;
	}
	.calculator-output ul li .small {
		font-size: 13px;
	}
	.calculator-output ul li .big {
		font-size: 18px;
	}
	.calculator-output .calculator-button {
		width: calc((100% / 2) - 85px);
	}
	.calculator-output .calculator-button .btn {
		height: 50px;
		font-size: 14px;
	}
	.progress-label {
		font-size: 14px;
		padding-left: 18px;
	}
	.progress-label:before {
		width: 10px;
		height: 10px;
	}
}
@media (max-width: 767px) {
	.home-calculator {
		padding-left: 6px;
    	padding-right: 6px;
	}
	.home-calculator .section-title {
		margin-bottom: 24px;
	}
	.home-calculator-form {
		gap: 16px;
	}
	.home-calculator-form .inputs-wrap {
		flex-wrap: wrap;
	}
	.home-calculator-form .input-holder {
		flex-basis: 100%;
	}
	.home-calculator-form .calculator-output {
		padding: 20px 16px;
	}
	.home-calculator-form .calculator-output ul {
		gap: 14px;
	}
	.home-calculator-form .calculator-output ul li {
		flex-basis: calc((100% / 2) - 15px);
		gap: 6px;
	}
	.home-calculator-form .calculator-output ul li .small {
		font-size: 12px;
	}
	.home-calculator-form .calculator-output ul li .big {
		font-size: 16px;
	}
	.home-calculator-form .calculator-bottom {
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 22px;
	}
	.home-calculator-form .calculator-progress,
	.home-calculator-form  .calculator-output .calculator-button {
		width: 100%;
	}
	.home-calculator-form .progress-label {
		font-size: 12px;
		padding-left: 16px;
	}
	.home-calculator-form .progress-label:before {
		width: 8px;
		height: 8px;
	}
}
/* ------------------------------------------------------------- *
 * Home News
/* ------------------------------------------------------------- */
.home-news {
	padding-top: 75px;
	padding-bottom: 0;
}
.home-news .title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 60px;
}
.home-news .title-wrap h4 {
	margin: 0 auto;
	padding-left: 145px;
}
.news {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 14px 0;
}
.news .news-post {
	display: flex;
	flex-direction: column;
	width: calc(25% - 7px);
	padding: 16px;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
}
.news .news-post:hover {
	box-shadow: var(--block-shadow-hover);
}
.news .news-post .news-image {
/*	max-height: 140px;*/
}
.news .news-post .news-image img {
	border-radius: 20px 20px 0 0;
}
.news .news-post .news-content {
    display: flex;
    flex-direction: column;
	height: 100%;
	padding: 14px 0;
	background: #fff;
}
.news .news-post .news-content .news-top {
	width: 100%;
	padding-bottom: 15px;
}
.news .news-post .news-content .news-category {
	display: inline-flex;
	font-size: 12px;
	font-weight: 400;
	padding: 3px 8px;
	background: var(--bg-section);
	border-radius: 40px;
	color: var(--dark-1);
}
.news .news-post .news-content .news-date {
	font-size: 12px;
	color: var(--grey-6);
}
.news .news-post .news-content .news-likes {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	color: var(--grey-6);
	gap: 4px;
}
.news .news-post .news-content .news-likes i {
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url('../images/icons/icon-heart.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.news .news-post .news-bottom {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.news .news-post .news-bottom-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.news .news-post .news-content .news-title {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	padding-bottom: 15px;
	color: var(--dark-1);
}
@media (max-width: 767px) {
	.news .news-post {
		width: 100%;
	}
	.home-news .title-wrap {
		margin-bottom: 24px;
	}
	.home-news .title-wrap h4 {
        padding: 0;
        margin: 0;
    }
	.home-news .title-wrap .btn-link-all {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * News All
/* ------------------------------------------------------------- */
.news-all {
	background: var(--bg-section);
	padding-bottom: 100px;
}
.news-all .row {
	justify-content: space-between;
	gap: 24px;
}
.news-all .news {
	flex-basis: calc((100% - 275px) - 30px);
	flex-grow: 1;
}
.news-all .aside {
	flex-basis: 275px;
}

.news-all .news .news-post {
	width: auto;
	flex-basis: calc((100% / 2) - 7px);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.news .news-post .news-image {
	overflow: hidden;
	border-radius: 16px;
}
.news .news-post .news-image img {
	border-radius: 16px;
	object-fit: cover;
	-webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
}
.news .news-post .news-content {
	height: auto;
}
.news-all .news .news-post:hover .news-image img {
	transform: scale(1.05);
}
.news-all .news-post .news-content .news-title {
	font-size: 16px;
}

.aside .widget {
	padding: 20px;
}
.aside .widget.widget-banner {
	background: var(--main-color);
	border-radius: 12px;
}
.aside .widget.widget-banner .image {
	margin-bottom: 20px;
}
.aside .widget.widget-banner .title {
	font-size: 20px;
	font-weight: 600;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 12px;
}
.aside .widget.widget-banner .subtitle {
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	margin-bottom: 20px;
}
.aside .widget.widget-banner .btn {
	background: transparent;
	border: 1px solid var(--white);
	color: var(--white);
}
@media (max-width: 992px) {
	.news-all .news {
	    flex-basis: calc((100% - 225px) - 15px);
	}
	.news-all .aside {
		flex-basis: 225px;
	}
	.news-all .news .news-post {
		flex-basis: 100%;
	}
}
@media (max-width: 767px) {
	.news-all .news {
	    flex-basis: 100%;
	    margin-bottom: 75px;
	}
	.news-all .aside {
		flex-basis: 100%;
	}
	.aside .widget.widget-banner .image {
		max-width: 235px;
		margin: 0 auto 20px;
	}
	.aside .widget.widget-banner .title br {
		font-size: 18px;
		display: none;
	}
	.aside .widget.widget-banner .subtitle {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * News Details
/* ------------------------------------------------------------- */
.news-details {}
.news-details-inner {
	border-radius: 16px;
	padding: 40px 30px;
	background: var(--white);
}
.news-details .row {
	gap: 30px;
	flex-direction: row;
}
.news-details .row .col-3 {
	flex-basis: calc(25% - 15px);
}
.news-details .row .col-9 {
	flex-basis: calc(75% - 15px);
}
.news-details-inner .news-image {
	margin-bottom: 26px;
	border-radius: 12px;
	overflow: hidden;
}
.news-details-inner h1 {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 16px;
}
.news-details-inner h2,
.news-details-inner h3 {
	font-size: 22px;
	font-weight: 500;
}
.news-details-inner h4,
.news-details-inner h5 {
	font-size: 20px;
	font-weight: 500;
}
.news-details-inner p {
	font-weight: 400;
	line-height: 1.4;
}
.news-details-inner p:last-child {
	margin-bottom: 0;
}
.news-details-inner a,
.news-details-inner p a,
.news-details-inner li a {
	color: var(--link);
	text-decoration: underline;
}
.news-details-inner ol,
.news-details-inner ul {
	padding-left: 30px;
	margin-bottom: 25px;
}
.news-details-inner ol li,
.news-details-inner ul li {
	margin-bottom: 8px;
	font-weight: 400;
	list-style: disc;
}
.news-details-inner ol li:last-child,
.news-details-inner ul li:last-child {
	margin-bottom: 0;
}
.news-details-inner strong {
	font-weight: 500;
}
.news-details-inner .news-labels {
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.news-details-inner .news-labels .news-date,
.news-details-inner .news-labels .news-category {
	font-size: 14px;
	color: var(--text-grey-1);
}
@media (max-width: 992px) {
	.news-details-inner h1 {
		font-size: 26px;
	}
	.news-details-inner h2, .news-details-inner h3 {
		font-size: 20px;
	}
	.news-details-inner h1,
	.news-details-inner h2,
	.news-details-inner h3,
	.news-details-inner h4,
	.news-details-inner h5,
	.news-details-inner p,
	.news-details-inner ul,
	.news-details-inner ol {
		margin-bottom: 20px;
	}
	.news-details-inner .news-labels .news-date,
	.news-details-inner .news-labels .news-category {
		font-size: 12px;
	}
	.news-details-inner a,
	.news-details-inner p,
	.news-details-inner li {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	.news-details {
		padding-top: 20px;
	}
	.news-details-inner {
		padding: 24px 16px 32px 16px;
	}
	.news-details .row .col {
		flex-basis: 100%;
	}
	.news-details-inner h1 {
		font-size: 22px;
	}
	.news-details-inner h2, .news-details-inner h3 {
		font-size: 18px;
	}
}
/* ------------------------------------------------------------- *
 * Breadcrumb
/* ------------------------------------------------------------- */
ul.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0;
	margin: 0;
}
ul.breadcrumb li {
	font-size: 12px;
	list-style: none;
	margin: 0;
}
ul.breadcrumb li a {
	color: var(--grey-6);
	text-decoration: none;
	font-weight: 400;
}
ul.breadcrumb li.active a {
	font-weight: 400;
}
ul.breadcrumb li a:hover,
ul.breadcrumb li.active a {
	color: var(--dark-1);
}
ul.breadcrumb li:after {
	content: "/";
    margin: 0 6px;
    color: var(--grey-6);
}
ul.breadcrumb li:last-child:after {
	display: none;
}
@media (max-width: 767px) {
	ul.breadcrumb li {
		margin-bottom: 3px;
	}
}
/* ------------------------------------------------------------- *
 * Home News
/* ------------------------------------------------------------- */
.home-features .row {
	justify-content: space-between;
	gap: 70px;
}
.home-features .row .col {
	flex-grow: 1;
	flex-basis: calc((100% / 2) - 70px);
}
.home-features .text {
	font-weight: 400;
	line-height: 1.4;
	color: var(--text-grey-1);
	margin: 0;
}
.home-features .digits-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.home-features .digits-wrap .digit {
	padding: 30px 20px;
	flex-basis: calc((100% / 2) - 10px);
	flex-grow: 1;
	background: var(--bg-section);
	text-align: center;
	border-radius: 12px;
}
.home-features .digits-wrap .digit .big {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 4px;
}
.home-features .digits-wrap .digit .small {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-grey-1);
}
@media (max-width: 992px) {
	.home-features .text {
		font-size: 14px;
	}
	.home-features .row {
		gap: 30px;
	}
	.home-features .row .col {
		flex-basis: 100%;
	}
	.home-features .digits-wrap .digit .small {
		font-size: 12px;
	}
	.home-features .digits-wrap .digit .big {
		font-size: 24px;
	}
}
@media (max-width: 767px) {
	.home-features .digits-wrap .digit .big {
		font-size: 22px;
	}
}
/* ------------------------------------------------------------- *
 * SEO Links
/* ------------------------------------------------------------- */
.home-seo-links {
/*	padding-top: 0;*/
}
.home-seo-links .seo-links-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px;
}
.home-seo-links .seo-links-wrap .seo-links-item {
	width: calc(25% - 14px);
}
.home-seo-links .seo-links-wrap .seo-links-title {
	font-size: 16px;
	margin-bottom: 20px;
}
.home-seo-links .seo-links-wrap .seo-links-item ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.home-seo-links .seo-links-wrap .seo-links-item ul li a {
	font-size: 14px;
	font-weight: 400;
	color: var(--dark-1);
}

.app-widget {
	background: var(--bg-section);
	border-radius: 16px;
}
.app-widget-top {
	position: relative;
	padding: 20px;
	background: var(--bg-section);
	border-radius: 16px;
}
.app-widget-top .text {
	max-width: calc(100% - 140px);
}
.app-widget-top .text .widget-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--dark-1);
	margin-bottom: 8px;
}
.app-widget-top .text .widget-subtitle {
	font-size: 12px;
	color: var(--grey-4);
}
.app-widget-top img {
	width: 130px;
	position: absolute;
	bottom: 0;
	right: 15px;
}

.app-widget-bottom {;
	background: var(--main-color);
	padding: 20px;
	border-radius: 16px;
}
.app-widget-bottom .widget-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 3px;
}
.app-widget-bottom .widget-subtitle {
	font-size: 12px;
	color: var(--white);
	opacity: .75;
}
@media (max-width: 1300px) {
	.app-widget-bottom {
		padding: 20px 15px;
	}
}
@media (max-width: 1200px) {
	.app-widget-top .text {
		max-width: calc(100% - 100px);
	}
	.app-widget-top .text .widget-title {
		font-size: 15px;
	}
	.app-widget-top img {
		width: 100px;
	}
}
@media (max-width: 767px) {
	.home-seo-links .seo-links-wrap {
		gap: 25px;
	}
	.home-seo-links .seo-links-wrap .seo-links-item {
		width: 100%;
	}
	.app-widget {
		margin-top: 30px;
	}
}
/* ------------------------------------------------------------- *
 * Market Buttons
/* ------------------------------------------------------------- */
.market-buttons {
	display: flex;
	width: 100%;
	justify-content: space-between;
	gap: 6px;
	margin-top: 14px;
}
.market-btn {
	flex-basis: calc((100% / 2) - 6px);
    padding: 6px 7px;
    border-radius: 6px;
    -webkit-transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
    background-color: #fff;
    text-decoration: none;
}
.market-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--dark-1);
}
.market-btn img {
	width: 20px;
	margin-right: 6px;
}
.market-btn .text .subtitle {
	display: block;
    margin-bottom: -0.25rem;
    color: #fff;
    font-size: 10px;
    font-weight: 400;
}
.market-btn .text .title {
	display: block;
    color: #fff;
    font-size: 13px;
}
.market-btn:hover {
    opacity: .9;
}

.market-btn-light {
    border-color: rgba(255, 255, 255, 0.14);
    background-color: rgba(0, 0, 0, 0);
}
.market-btn-light .market-button-title {
    color: #fff;
}
.market-btn-light .market-button-subtitle {
    color: rgba(255, 255, 255, 0.6);
}
.market-btn-light:hover {
    background-color: rgba(255, 255, 255, 0.06);
}
@media (max-width: 1300px) {
	.market-btn .text .subtitle {
		font-size: 11px;
		font-weight: 400;
	} 
	.market-btn .text .title {
		font-size: 13px;
	}
}
@media (max-width: 1200px) {
	.market-buttons {
		flex-wrap: wrap;
	}
	.market-btn {
		flex-basis: 100%;
		justify-content: center;
	}
	.market-btn .text .subtitle {
		font-size: 11px;
		font-weight: 400;
	} 
	.market-btn .text .title {
		font-size: 13px;
	}

}
/* ------------------------------------------------------------- *
 * Page Header
/* ------------------------------------------------------------- */
.page-header {
	padding-top: 25px;
	padding-bottom: 0;
}
.page-header .row {
	flex-direction: column;
}
.page-header .title {
/*	max-width: 500px;*/
	display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.page-header .title img {
	width: 350px;
}
.page-header .title .subtitle {
	display: inline-flex;
	font-size: 16px;
    font-weight: 400;
    background: var(--blue);
    color: var(--white);
    border-radius: 8px;
    padding: 6px 16px;
    margin-top: 15px;
}
.page-header .title h1,
.page-header .title h4 {
	font-size: 26px;
	font-weight: 500;
	margin: 30px 0 12px 0;
	color: var(--dark-1);
}
.page-header .title h1 span,
.page-header .title h4 span {
	font-weight: 500;
}
.page-header .title p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
/*	color: var(--grey-6);*/
	color: var(--dark-1);
	margin: 0;
}
.page-header.lg-padding-bottom {
	padding-bottom: 120px;
}
.page-header.bg-lightgreen {
	background: var(--lightgreen);
}
.page-header.bg-lightblue {
	background: var(--lightblue);
}
.page-header.bg-style-1 h1,
.page-header.bg-style-1 h4,
.page-header.bg-style-1 p,
.page-header.bg-lightgreen h1,
.page-header.bg-lightgreen h4,
.page-header.bg-lightgreen p,
.page-header.bg-lightblue h1,
.page-header.bg-lightblue h4,
.page-header.bg-lightblue p {
	color: var(--dark-1);
}
@media (max-width: 1200px) {
	.page-header .title h1, .page-header .title h4 {
		font-size: 34px;
	}
	.page-header .title .subtitle {
		font-size: 12px;
		line-height: 1.4;
	}
	.page-header .title img {
		width: 320px;
	}
}
@media (max-width: 767px) {
	.page-header.lg-padding-bottom {
		padding-bottom: 105px;
	}
	.page-header .row {
		justify-content: center;
	}
	.page-header .breadcrumb {
		margin: 0 auto 25px;
	}
	.page-header .title {
		text-align: center;
		flex-wrap: wrap;
	}
	.page-header .title h1, 
	.page-header .title h4 {
		font-size: 24px;
		margin-top: 0;
	}
	.page-header .title h4 {
		font-size: 22px;
	}
	.page-header .title p {
		font-size: 14px;
	}
	.page-header .title img {
		margin: 0 auto;
	}
}
/* ------------------------------------------------------------- *
 * Filters / Sorting / View
/* ------------------------------------------------------------- */
.filters-wrap {
	margin: 30px 0;
	background-color: var(--mint);
	padding: 32px 24px;
	border-radius: 16px;
}
.filters-form {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	gap: 10px;
}
.filters-form .filter-item {
	position: relative;
	flex: 1;
}
.filters-form input {
	width: 100%;
	padding: 16px 26px 16px 16px;
	height: 52px;
	font-weight: 400;
	background: var(--white);
	border: 1px solid #cae8ff;
	border-radius: 16px;
	color: var(--dark-1);
}
.filters-form span {
	position: absolute;
	color: var(--grey-3);
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.filters-form .btn-results {
	width: 200px;
	padding: 16px;
	font-size: 16px;
	font-weight: 500;
}

.filters-form input,
.filters-form .select-selected,
.filters-form .btn-results {
	height: 52px;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}
.custom-select select {
    display: none;
}
.custom-select label {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--mint);
    color: var(--green);
    padding: 3px 6px;
    border-radius: 8px;
    left: 16px;
    font-size: 14px;
    font-weight: 400;
}
.select-selected {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
	padding: 16px 16px 16px 90px;
	background: var(--white);
	border: 1px solid #cae8ff;
    border-radius: 16px;
	color: var(--dark-1);
    cursor: pointer;
}
.select-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    border: solid var(--dark-2);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: translateY(-50%) rotate(45deg);
}
.select-items {
    position: absolute;
    background-color: var(--white);
    border: 1px solid var(--grey-5);
    border-radius: 4px;
    width: 100%;
    z-index: 99;
    max-height: 275px;
    overflow-y: auto;
    margin-top: 1px;
}
.select-items div {
	font-weight: 400;
    padding: 12px 16px;
    cursor: pointer;
}
.select-items div:hover {
    background-color: #f1f1f1;
}
.select-hide {
    display: none;
}

/* Sorting */
.sort-view-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 30px;
}
.sort-item .select {
	position: relative;
	display: flex;
	align-items: center;
	gap: 6px;
}
.sort-item .select p {
	font-size: 14px;
	font-weight: 400;
	color: var(--dark-1);
	opacity: .5;
	margin: 0;
}
.sort-item .select select {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.sort-item .select select > div {
	margin-bottom: -3px;
}
.sort-item .select select::-ms-expand {
  	display: none;
}
.sort-item .select select:hover,
.sort-item .select select:focus {}
.sort-item .select select:disabled {
  	opacity: 0.5;
  	pointer-events: none;
}
.sort-item .select .icon {
  	/*position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	left: 0;*/
  	width: 20px;
  	height: 20px;
}
.view-buttons {
	display: flex;
	flex-direction: row;
	gap: 5px;
    padding: 4px;
}
.view-buttons .btn-view {
	font-size: 14px;
	color: var(--dark-1);
	padding: 6px 2px;
	border-radius: 9px;
	background: transparent;
	min-height: auto;
}
.view-buttons .btn-view img {
	margin-right: 5px;
}
.view-buttons .btn-view.active {
	background: var(--main-gradient);
	color: var(--dark-1);
}

@media (max-width: 1200px) {
	.filters-form .btn-results,
	.filters-form input {
		font-size: 15px;
	}
	.select-selected {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	.filters-form {
		flex-wrap: wrap;
	}
	.filters-form .filter-item {
		flex-basis: 100%;
	}
	.filters-form .btn-results {
		width: 100%;
	}
	.sort-item .select p {
		font-size: 12px;
	}
}
@media (max-width: 500px) {
	.filters-wrap {
		padding: 24px 15px;
	}
	.view-buttons .btn-view,
	.sort-item .select select {
		font-size: 12px;
	}
	.view-buttons .btn-view img {
		width: 16px;
	}
	.filters-form span {
		font-size: 14px;
	}
	.select-items div {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * Credit Offers
/* ------------------------------------------------------------- */
.credits-offers {
	background: var(--mint);
	padding-top: 30px;
}
.banks-offers {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.banks-offers .offer {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 24px;
	gap: 40px;
	border-radius: 16px;
	background: var(--white);
	border: 1px solid var(--blue);
}
.banks-offers .offer .offer-logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
/*	padding-top: 5px;*/
}
.banks-offers .offer .offer-details {
	display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 16px;
}
.banks-offers .offer .offer-image {
	width: 165px;
	padding: 0 8px;
}
.banks-offers .offer .offer-rating {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.banks-offers .offer .offer-name {
	font-size: 15px;
	font-weight: 500;
	color: var(--dark-1);
}
.banks-offers .offer .offer-score {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 4px;
}
.banks-offers .offer .offer-score .offer-stars {
	display: flex;
	margin-top: -3px;
}
.banks-offers .offer .offer-score .offer-stars i {
	display: inline-block;
	width: 13px;
	height: 13px;
	background-image: url('../images/icons/icon-star.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.banks-offers .offer .offer-score-rate {
	font-size: 13px;
	color: var(--text-grey-1)
}
.banks-offers .offer .offer-license {
	font-size: 10px;
	font-weight: 400;
	color: var(--dark-1);
	min-width: 158px;
	opacity: .5;
}
.banks-offers .offer .offer-info-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-basis: 100%;
}
.banks-offers .offer .offer-info {
	display: flex;
	flex-grow: 1;
    margin-right: 40px;
}
.banks-offers .offer .offer-info ul {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	gap: 40px;
	max-width: 600px;
}
.banks-offers .offer .offer-info ul li {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-basis: calc((100% / 4) - 16px);
	gap: 4px;
}
.banks-offers .offer .offer-info ul li .small {
	font-size: 14px;
	font-weight: 400;
	color: var(--dark-1);
	opacity: .5;
}
.banks-offers .offer .offer-info ul li .big {
	font-size: 20px;
	font-weight: 600;
	color: var(--dark-1);
}
.banks-offers .offer .btn-go-url {
	padding: 12px 30px;
	font-size: 15px;
}
.banks-offers .offer .offer-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}
.banks-offers .offer-buttons .offer-links {
	display: none;
}
.banks-offers .offer .btn-offer-details a {
	display: flex;
	position: relative;
	font-size: 14px;
	width: 43.5px;
	height: 43.5px;
    color: var(--grey-4);
    border: 1px solid var(--grey-5);
    border-radius: 8px;
}
.banks-offers .offer .btn-offer-details a img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
}
.banks-offers .offer .btn-offer-details a span {
	display: none;
}
.banks-offers .offer .btn-offer-details a:hover {
	border-color: var(--main-color);
}
.banks-offers .offer .btn-offer-details a:hover img {
	-webkit-transform: translate(-50%,-50%) scale(1.1);
	transform: translate(-50%,-50%) scale(1.1);
}

.banks-offers .offer .offer-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
}
.banks-offers .offer .offer-keywords {
	margin-right: auto;
    margin-left: 30px;
}
.banks-offers .offer .offer-keywords ul {
	display: flex;
	flex-direction: row;
	gap: 6px;
}
.banks-offers .offer .offer-keywords ul li {
    font-size: 12px;
    font-weight: 400;
    border-radius: 4px;
    padding: 8px 14px;
    color: var(--green);
    background: var(--light-blue);
}

.banks-offers .offer .offer-links ul {
	display: flex;
	flex-direction: row;
	gap: 14px;
}
.banks-offers .offer .offer-links ul li a {
	font-size: 12px;
	font-weight: 400;
	color: var(--blue);
}
.banks-offers .offer .offer-links ul li a:before {
	background: var(--blue);
}
.banks-offers .offer .offer-links ul li a:hover {
	opacity: 1;
}
.banks-offers .banks-others {
	font-size: 28px;
	font-weight: 400;
	text-align: center;
	width: 100%;
	margin: 15px 0;
}
.banks-offers .offer-hot {
/*	border: 1px solid var(--main-color);*/
}
.banks-offers .offer-hot-label {
	position: absolute;
	top: -9px;
	left: 30px;
	font-size: 10px;
	font-weight: 400;
	color: var(--white);
	background: var(--main-color);
	border-radius: 100px;
	padding: 3px 9px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 4px;
}
.banks-offers .offer-hot-label:before {
	content: url('../images/icons/icon-heart-label.svg');
	width: 11px;
	height: 11px;
	display: inline-flex;
}
/* Tile View */
.banks-offers.tile-view {
	justify-content: space-between;
	flex-wrap: wrap;
	gap: initial;
	row-gap: 30px;
}
.banks-offers.tile-view .offer {
	flex-direction: column;
    padding: 15px 20px;
    gap: 14px;
    width: calc(25% - 8px);
}
.banks-offers.tile-view .offer .offer-image {
	width: 100%;
	max-width: 200px;
}
.banks-offers.tile-view .offer .offer-score {
	flex-wrap: wrap;
	gap: 2px;
}
.banks-offers.tile-view .offer .offer-name,
.banks-offers.tile-view .offer .offer-score-rate,
.banks-offers.tile-view .offer .offer-license {
	font-size: 12px;
}

.banks-offers.tile-view .offer .offer-bottom,
.banks-offers.tile-view .offer .offer-keywords ul {
	flex-wrap: wrap;
	justify-content: center;
}
.banks-offers.tile-view .offer .offer-keywords {
	display: none;
}
.banks-offers.tile-view .offer .offer-bottom {
	margin-top: 0;
}
.banks-offers.tile-view .offer .offer-keywords ul {
	gap: 6px;
}
.banks-offers.tile-view .offer-keywords ul li {
	font-size: 9px;
	opacity: .5;
}
.banks-offers.tile-view .offer .offer-license {
	min-width: auto;
}
.banks-offers.tile-view .offer .offer-info-wrap {
	flex-wrap: wrap;
	order: 2;
}

.banks-offers.tile-view .offer .offer-info {
	margin-right: 0;
	padding: 15px 0;
	min-width: fit-content;
}
.banks-offers.tile-view .offer .offer-info ul {
	flex-wrap: wrap;
	gap: 6px;
}
.banks-offers.tile-view .offer .offer-info ul li {
	position: relative;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	flex-basis: 100%;
    flex-grow: 1;
}
.banks-offers.tile-view .offer .offer-info ul li .small {
	font-size: 16px;
	color: rgb(22 22 22);
	opacity: 1;
}
.banks-offers.tile-view .offer .offer-info ul li .big {
	font-size: 16px;
}
.banks-offers.tile-view .offer .offer-info ul li .small,
.banks-offers.tile-view .offer .offer-info ul li .big {
	position: relative;
	color: var(--dark-1);
    z-index: 2;
}
.banks-offers.tile-view .offer .offer-info ul li .horizontal-line {
	position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    z-index: 0;
    border-bottom: 1px dotted var(--additional-green);
}

.banks-offers.tile-view .offer .offer-buttons {
	width: 100%;
	gap: 9px;
	order: 4;
	flex-wrap: wrap;
	margin-top: 12px;
}
.banks-offers.tile-view .offer .btn-offer-details a {
	width: 42px;
	height: 42px;
}
.banks-offers.tile-view .offer .btn-go-url {
	padding: 12px 6px;
	font-size: 14px;
/*	flex-basis: calc((100% - 42px) - 12px);*/
	flex-basis: 100%;
}
/* Tile View Offer Links */
.banks-offers.tile-view .offer .offer-links {
	margin-bottom: 12px;
	flex-basis: 100%;
}
.banks-offers.tile-view .offer .offer-links ul {
	flex-wrap: wrap;
	gap: 6px;
}
.banks-offers.tile-view .offer .offer-links ul li {
	flex-basis: 100%;
	display: inline-flex;
	justify-content: center;
}
.banks-offers.tile-view .offer .offer-links ul li a {
	padding: 0;
	font-size: 12px;
	color: #1851f7;
	text-decoration: underline;
    text-decoration-thickness: from-font;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
}
.banks-offers.tile-view .offer-bottom .offer-links {
	display: none;
}
.banks-offers.tile-view .offer-buttons .offer-links {
	display: flex;
}
.banks-offers.tile-view .offer-hot-label {
	left: 50%;
    width: max-content;
    transform: translateX(-50%);
}
@media (max-width: 1200px) {
	.banks-offers .offer {
		gap: 0 30px;
		align-items: flex-start;
	}
	.banks-offers .offer .offer-logo {
		flex-direction: column;
	    justify-content: flex-start;
	    align-items: flex-start;
	    flex-grow: 1;
	}
	.banks-offers .offer .offer-info {
		margin: 0;
		flex-grow: 0;
		max-width: 350px;
		min-width: auto;
		min-width: fit-content;
	}
	.banks-offers .offer .offer-buttons {
		flex-grow: 0;
	}
	.banks-offers .offer .offer-info ul {
		flex-wrap: wrap;
		gap: 16px;
	}
	.banks-offers .offer .offer-info ul li {
		flex-basis: calc((100% / 2) - 20px);
		flex-grow: 1;
	}
	.banks-offers .offer .offer-links {
		max-width: 243px;
	}
	.banks-offers .offer .offer-links ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 2px;
	}
	.banks-offers .offer .offer-links ul li {
		text-align: center;
	}
	.banks-offers .offer .offer-license {
		min-width: 110px;
	}
	.banks-offers.tile-view .offer {
		align-items: center;
		gap: 0 16px;
	}
	.banks-offers.tile-view .offer .offer-image {
		max-width: 130px;
		margin: 0 auto;
	}
	.banks-offers.tile-view .offer .offer-rating {
		margin: 0 auto;
	}
	.banks-offers.tile-view .offer .offer-name, 
	.banks-offers.tile-view .offer .offer-score-rate, 
	.banks-offers.tile-view .offer .offer-license {
		text-align: center;
	}
	.banks-offers.tile-view .offer .offer-name {
		font-size: 12px;
	}
	.banks-offers.tile-view .offer .offer-name span {
		display: block;
	}
	.banks-offers.tile-view .offer .offer-score {
    	justify-content: center;
	}
	.banks-offers.tile-view .offer .offer-license {
		display: flex;
    	flex-basis: 100%;
    	justify-content: center;
	}
	.banks-offers.tile-view .offer .btn-offer-details a {
		width: 42px;
		height: 42px;
	}
	.banks-offers.tile-view .offer .btn-go-url {
		font-size: 14px;
		height: 42px;
		padding: 12px 6px;
	}
}
@media (max-width: 992px) {
	.banks-offers .offer .offer-image {
		width: 150px;
	}
	.banks-offers .offer .offer-info-wrap {
		flex-wrap: wrap;
	}
	.banks-offers .offer .offer-buttons {
		margin-top: 20px;
		flex-basis: 100%;
		flex-grow: 1;
	}
	.banks-offers .offer .offer-bottom {
		gap: 16px;
		margin-top: 20px;
	}
	.banks-offers .offer .offer-links ul {
		gap: 1px;
	}
	.banks-offers .offer .offer-links ul li a {
		font-size: 12px;
	}
	.banks-offers .offer .offer-keywords ul {
		align-items: center;
	}
	.banks-offers .offer .offer-keywords ul li {
		text-align: center;
	}
	.banks-offers .offer .offer-license {
        min-width: auto;
    }

	.banks-offers.tile-view .offer {
		align-items: center;
		width: auto;
		flex-basis: calc((100% / 2) - 10px);
	}
	.banks-offers.tile-view .offer .offer-image {
		margin: 0;
	}
	.banks-offers.tile-view .offer .offer-rating {
		margin: 0 0 0 auto;
	}
	.banks-offers.tile-view .offer .offer-name,
	.banks-offers.tile-view .offer .offer-score-rate,
	.banks-offers.tile-view .offer .offer-license {
		text-align: right;
	}
	.banks-offers.tile-view .offer .offer-name {
		font-size: 14px;
	}
	.banks-offers.tile-view .offer .offer-name span {
		display: inline-block;
	}
	.banks-offers.tile-view .offer .offer-logo {
		flex-direction: row;
		align-items: center;
	}
	.banks-offers.tile-view .offer .offer-info {
		max-width: 100%;
        flex-basis: 100%;
        padding: 20px 0;
	}
	.banks-offers.tile-view .offer .offer-buttons {
        order: 4;
        flex-wrap: wrap;
    }
    .banks-offers.tile-view .offer .btn-go-url {
	    padding: 12px 30px;
	    font-size: 15px;
	    font-weight: 700;
/*	    flex-basis: calc((100% - 42px) - 12px);*/
	}
	.banks-offers.tile-view .offer .offer-buttons {
		gap: 12px;
	}
	.banks-offers.tile-view .offer-keywords ul li {
		font-size: 11px;
	}
	.banks-offers.tile-view .offer-buttons .offer-links {
		margin: 8px auto 0;
	}
	.banks-offers.tile-view .offer .offer-links ul li a {
		font-size: 12px;
	}
}
@media (max-width: 767px) {
	.banks-offers .offer {
		align-items: center;
		flex-wrap: wrap;
	}
	.banks-offers .offer .offer-image {
		width: 130px;
	}
	.banks-offers .offer .offer-logo {
		flex-grow: 0;
        margin: 0 auto 20px;
	}
	.banks-offers .offer .offer-rating {
		gap: 2px;
	}
	.banks-offers .offer .offer-score {
		flex-wrap: wrap;
		gap: 2px;
	}
	.banks-offers .offer .offer-license {
		flex-basis: 100%;
		font-size: 12px;
		display: none;
	}
	.banks-offers .offer .offer-keywords {
		display: none;
	}
	.banks-offers .offer .offer-keywords ul,
	.banks-offers .offer .offer-bottom {
		flex-wrap: wrap;
		justify-content: center;
	}
	.banks-offers .offer .offer-info ul li .big {
		font-size: 18px;
	}

	.banks-offers.tile-view .offer {
		padding: 15px;
		flex-basis: calc((100% / 2) - 7px);
	}
	.banks-offers.tile-view .offer .offer-logo {
		gap: 12px;
		flex-basis: auto;
	}
	.banks-offers.tile-view .offer .offer-name,
	.banks-offers.tile-view .offer .offer-score-rate,
	.banks-offers.tile-view .offer .offer-license {
		text-align: center;
	}
	.banks-offers.tile-view .offer .offer-score,
	.banks-offers.tile-view .offer .offer-license {
		justify-content: center;
	}
	.banks-offers.tile-view .offer .offer-name {
		font-size: 12px;
	}
	.banks-offers.tile-view .offer .offer-keywords {
		display: none;
	}
	.banks-offers.tile-view .offer .offer-info ul li .small {
		font-size: 11px;
		flex-grow: 1;
		text-align: left;
	}
	.banks-offers.tile-view .offer .offer-info ul li .small span {
		display: none;
	}
	.banks-offers.tile-view .offer .offer-info ul li .big {
		font-size: 12px;
		flex-grow: 1;
		text-align: right;
	}
	.banks-offers.tile-view .offer .btn-offer-details {
		width: 100%;
	}
	.banks-offers.tile-view .offer .btn-offer-details a {
		width: 100%;
		justify-content: center;
		align-items: center;
		padding: 2px 12px;
		height: auto;
		border: 0;
		border-radius: 0;
	}
	.banks-offers.tile-view .offer .btn-offer-details a img {
		position: relative;
		transform: initial;
		top: initial;
		left: initial;
		width: 18px;
		height: 18px;
		margin-right: 6px;
	}
	.banks-offers.tile-view .offer .btn-offer-details a span {
		font-size: 12px;
		display: inline-flex;
	}
	.banks-offers.tile-view .offer .offer-buttons {
		margin-top: 0;
	}
	.banks-offers.tile-view .offer .btn-go-url {
		font-size: 12px;
		padding: 12px;
		flex-basis: 100%;
	}
	.banks-offers .banks-others {
	    font-size: 20px;
	}
}
@media (max-width: 600px) {
	.banks-offers.tile-view .offer .offer-logo {
		flex-direction: column;
	}
	.banks-offers.tile-view .offer .offer-rating {
		margin: 0 auto;
	}
}
@media (max-width: 500px) {
	.banks-offers .offer {
		padding: 20px;
	}
	.banks-offers .offer .offer-logo {
		flex-direction: row;
		gap: 20px;
		margin-bottom: 0;
	}
	.banks-offers .offer .offer-name,
	.banks-offers .offer .offer-score-rate {
		font-size: 12px;
	}
	.banks-offers .offer .offer-license {
		font-size: 11px;
	}
	.banks-offers .offer .offer-image {
		width: 175px;
	}
	.banks-offers .offer .offer-score {
		justify-content: center;
	}
	.banks-offers .offer .offer-logo {
		align-items: center;
	}
	.banks-offers .offer .offer-logo,
	.banks-offers .offer .offer-info {
		flex-basis: 100%;
		justify-content: center;
        flex-direction: column;
        text-align: center;
	}
	.banks-offers .offer .offer-info {
		padding: 20px 0;
		margin: 0 auto;
	}
	.banks-offers .offer .offer-info ul li {
		text-align: center;
	}
	.banks-offers .offer .offer-buttons {
		order: 4;
		flex-wrap: wrap;
	}
	.banks-offers .offer .offer-keywords ul li {
		font-size: 11px;
		opacity: .5;
	}
	.banks-offers .offer .offer-bottom {
		margin: 0;
	}
	.banks-offers .offer-bottom .offer-links {
		display: none;
	}
	.banks-offers .offer-buttons .offer-links {
		display: flex;
		margin: 0 auto;
	}
	.banks-offers .offer .btn-offer-details a {
		width: 42px;
		height: 42px;
	}
	.banks-offers .offer .btn-go-url {
/*		flex-basis: calc((100% - 42px) - 12px);*/
		height: 46px;
	}
	.banks-offers .offer-hot-label {
		left: 50%;
	    width: max-content;
	    transform: translateX(-50%);
	}

	.banks-offers.tile-view {
		row-gap: 15px;
	}
	.banks-offers.tile-view .offer {
		padding: 20px 8px 15px 8px;
	}
	.banks-offers.tile-view .offer .offer-details {
		gap: 0;
	}
	.banks-offers.tile-view .offer .offer-license {
		font-size: 9px;
	}
	.banks-offers.tile-view .offer .offer-image {
		max-width: 150px;
	}
	.banks-offers.tile-view .offer .offer-buttons {
		gap: 20px;
	}
	.banks-offers.tile-view .offer .offer-links ul {
		gap: 5px;
	}
	.banks-offers.tile-view .offer .offer-links ul li {
		flex-basis: 100%;
	}
	.banks-offers.tile-view .offer .offer-links ul li a {
		font-size: 9.5px;
		text-decoration: underline;
	}
	.banks-offers.tile-view .offer-buttons .offer-links {
		order: 1;
		margin-top: 0;
		justify-content: center;
	}
	.banks-offers.tile-view .offer .btn-offer-details {
		order: 2;
	}
	.banks-offers.tile-view .offer .btn-offer-details a img {
		width: 15px;
		height: 15px;
	}
	.banks-offers.tile-view .offer .btn-go-url {
		order: 3;
		font-size: 12px;
		font-weight: 500;
		min-height: auto;
        height: 46px;
	}
	.banks-offers.tile-view .offer .btn-go-url img {
		display: none;
	}
}
/* ------------------------------------------------------------- *
 * Cards Offers
/* ------------------------------------------------------------- */
.cards-offers {
	background: var(--bg-section);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding-bottom: 75px;
}
.cards-offers .offer {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 30px;
	border-radius: 20px;
	background: var(--white);
}
.cards-offers .offer .offer-logo {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
/*	padding-top: 5px;*/
}
.cards-offers .offer .offer-image {
	width: 120px;
	border-radius: 12px;
	overflow: hidden;
}
.cards-offers .offer .offer-rating {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.cards-offers .offer .offer-name {
	font-size: 15px;
	font-weight: 500;
	color: var(--dark-1);
}
.cards-offers .offer .offer-score {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 4px;
}
.cards-offers .offer .offer-score .offer-stars {
	display: flex;
	margin-top: -3px;
}
.cards-offers .offer .offer-score .offer-stars i {
	display: inline-block;
	width: 13px;
	height: 13px;
	background-image: url('../images/icons/icon-star.svg');
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center center;
}
.cards-offers .offer .offer-score-rate {
	font-size: 13px;
	color: var(--text-grey-1)
}
.cards-offers .offer .offer-license {
	font-size: 13px;
	color: var(--text-grey-1)
}
.cards-offers .offer .offer-info {
	margin-left: auto;
    margin-right: 40px;
/*    padding: 7px 0;*/
    max-width: 285px;
}
.cards-offers .offer .offer-info ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.cards-offers .offer .offer-info ul li {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex-basis: calc((100% / 2) - 15px);
}
.cards-offers .offer .offer-info ul li .small {
	font-size: 13px;
	color: var(--text-grey-1)
}
.cards-offers .offer .offer-info ul li .big {
	font-size: 15px;
	font-weight: 600;
	color: var(--dark-1);
}
.cards-offers .offer .btn-go-url {
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 500;
}
.cards-offers .offer .offer-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}
.cards-offers .offer-buttons .offer-links {
	display: none;
}
.cards-offers .offer .btn-offer-details a {
	display: flex;
	position: relative;
	font-size: 14px;
	width: 43.5px;
	height: 43.5px;
    color: var(--grey-4);
    border: 1px solid var(--grey-5);
    border-radius: 8px;
}
.cards-offers .offer .btn-offer-details a img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: .2s linear;
	-o-transition: .2s linear;
	transition: .2s linear;
}
.cards-offers .offer .btn-offer-details a span {
	display: none;
}
.cards-offers .offer .btn-offer-details a:hover {
	border-color: var(--main-color);
}
.cards-offers .offer .btn-offer-details a:hover img {
	-webkit-transform: translate(-50%,-50%) scale(1.1);
	transform: translate(-50%,-50%) scale(1.1);
}

.cards-offers .offer .offer-bottom {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 15px;
}
.cards-offers .offer .offer-keywords ul {
	display: flex;
	flex-direction: row;
	gap: 6px;
}
.cards-offers .offer .offer-keywords ul li {
	font-size: 12px;
	font-weight: 400;
	border-radius: 10px;
	padding: 6px 10px;
	color: var(--dark-1);
    background: var(--grey-8);
	opacity: .7;
}

.cards-offers .offer .offer-links ul {
	display: flex;
	flex-direction: row;
	gap: 14px;
}
.cards-offers .offer .offer-links ul li a {
	font-size: 13px;
	color: var(--link);
}
.cards-offers .offer .offer-links ul li a:before {
	background: var(--link);
}
/* Tile View */
.cards-offers.tile-view {
	justify-content: space-between;
	flex-wrap: wrap;
	gap: initial;
	row-gap: 30px;
}
.cards-offers.tile-view .offer {
    padding: 15px 20px;
    width: calc(25% - 15px);
}
.cards-offers.tile-view .offer .offer-image {
	width: 100%;
	max-width: 120px;
}
.cards-offers.tile-view .offer .offer-score {
	flex-wrap: wrap;
	gap: 2px;
}
.cards-offers.tile-view .offer .offer-name,
.cards-offers.tile-view .offer .offer-score-rate,
.cards-offers.tile-view .offer .offer-license {
	font-size: 11px;
}

.cards-offers.tile-view .offer .offer-bottom,
.cards-offers.tile-view .offer .offer-keywords ul {
	flex-wrap: wrap;
	justify-content: center;
}
.cards-offers.tile-view .offer .offer-bottom {
	margin-top: 0;
}
.cards-offers.tile-view .offer .offer-keywords ul {
	gap: 6px;
}
.cards-offers.tile-view .offer-keywords ul li {
	font-size: 9px;
	opacity: .5;
}

.cards-offers.tile-view .offer .offer-info {
	margin-right: 0;
	padding: 15px 0;
	min-width: fit-content;
}
.cards-offers.tile-view .offer .offer-info ul {
	flex-wrap: wrap;
	gap: 8px;
}
.cards-offers.tile-view .offer .offer-info ul li {
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	flex-basis: 100%;
    flex-grow: 1;
}
.cards-offers.tile-view .offer .offer-info ul li .big {
	font-size: 14px;
}

.cards-offers.tile-view .offer .offer-buttons {
	width: 100%;
	gap: 6px;
	order: 4;
	flex-wrap: wrap;
	margin-top: 16px;
}
.cards-offers.tile-view .offer .btn-offer-details a {
	width: 42px;
	height: 42px;
}
.cards-offers.tile-view .offer .btn-go-url {
	padding: 12px 6px;
	font-size: 14px;
/*	flex-basis: calc((100% - 42px) - 12px);*/
	flex-basis: 100%;
}
/* Tile View Offer Links */
.cards-offers.tile-view .offer .offer-links {
	margin-top: 6px;
	flex-basis: 100%;
}
.cards-offers.tile-view .offer .offer-links ul {
	flex-wrap: wrap;
	gap: 6px;
}
.cards-offers.tile-view .offer .offer-links ul li {
	flex-basis: 100%;
	display: inline-flex;
	justify-content: center;
}
.cards-offers.tile-view .offer .offer-links ul li a {
	padding: 0;
	font-size: 11px;
}
.cards-offers.tile-view .offer-bottom .offer-links {
	display: none;
}
.cards-offers.tile-view .offer-buttons .offer-links {
	display: flex;
}
@media (max-width: 1200px) {
	.cards-offers .offer {
		gap: 0 16px;
	}
	.cards-offers .offer .offer-logo {
		flex-direction: column;
	    justify-content: flex-start;
	    align-items: flex-start;
	    flex-grow: 1;
	}
	.cards-offers .offer .offer-info {
		margin: 0;
		flex-grow: 0;
		max-width: 350px;
		min-width: auto;
		min-width: fit-content;
	}
	.cards-offers .offer .offer-buttons {
		flex-grow: 0;
	}
	.cards-offers .offer .offer-info ul {
		flex-wrap: wrap;
		gap: 16px;
	}
	.cards-offers .offer .offer-info ul li {
		flex-basis: calc((100% / 2) - 20px);
		flex-grow: 1;
	}
	.cards-offers .offer .offer-links {
		max-width: 243px;
	}
	.cards-offers .offer .offer-links ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 2px;
	}
	.cards-offers .offer .offer-links ul li {
		text-align: center;
	}

	.cards-offers.tile-view .offer .offer-image {
		max-width: 130px;
		margin: 0 auto;
	}
	.cards-offers.tile-view .offer .offer-rating {
		margin: 0 auto;
	}
	.cards-offers.tile-view .offer .offer-name, 
	.cards-offers.tile-view .offer .offer-score-rate, 
	.cards-offers.tile-view .offer .offer-license {
		text-align: center;
	}
	.cards-offers.tile-view .offer .offer-name {
		font-size: 12px;
	}
	.cards-offers.tile-view .offer .offer-name span {
		display: block;
	}
	.cards-offers.tile-view .offer .offer-score {
    	justify-content: center;
	}
	.cards-offers.tile-view .offer .offer-license {
		display: flex;
    	flex-basis: 100%;
    	justify-content: center;
	}
	.cards-offers.tile-view .offer .btn-offer-details a {
		width: 42px;
		height: 42px;
	}
	.cards-offers.tile-view .offer .btn-go-url {
		font-size: 14px;
		height: 42px;
		padding: 12px 6px;
	}
}
@media (max-width: 992px) {
	.cards-offers .offer {
		align-items: center;
	}
	.cards-offers .offer .offer-image {
		width: 150px;
	}
	.cards-offers .offer .offer-buttons {
		margin-top: 20px;
		flex-basis: 100%;
		flex-grow: 1;
	}
	.cards-offers .offer .offer-bottom {
		gap: 16px;
		margin-top: 20px;
	}
	.cards-offers .offer .offer-links ul {
		gap: 1px;
	}
	.cards-offers .offer .offer-links ul li a {
		font-size: 12px;
	}
	.cards-offers .offer .offer-keywords ul li {
		text-align: center;
	}

	.cards-offers.tile-view .offer {
		width: auto;
		flex-basis: calc((100% / 2) - 10px);
	}
	.cards-offers.tile-view .offer .offer-image {
		margin: 0;
	}
	.cards-offers.tile-view .offer .offer-rating {
		margin: 0 0 0 auto;
	}
	.cards-offers.tile-view .offer .offer-name,
	.cards-offers.tile-view .offer .offer-score-rate,
	.cards-offers.tile-view .offer .offer-license {
		text-align: right;
	}
	.cards-offers.tile-view .offer .offer-name {
		font-size: 14px;
	}
	.cards-offers.tile-view .offer .offer-name span {
		display: inline-block;
	}
	.cards-offers.tile-view .offer .offer-logo {
		flex-direction: row;
		align-items: center;
	}
	.cards-offers.tile-view .offer .offer-score,
	.cards-offers.tile-view .offer .offer-license {
		justify-content: flex-end;
	}
	.cards-offers.tile-view .offer .offer-info {
		max-width: 100%;
        flex-basis: 100%;
        padding: 20px 0;
	}
	.cards-offers.tile-view .offer .offer-buttons {
        order: 4;
        flex-wrap: wrap;
    }
    .cards-offers.tile-view .offer .btn-go-url {
	    padding: 12px 30px;
	    font-size: 15px;
	    font-weight: 700;
/*	    flex-basis: calc((100% - 42px) - 12px);*/
	}
	.cards-offers.tile-view .offer .offer-buttons {
		gap: 12px;
	}
	.cards-offers.tile-view .offer-keywords ul li {
		font-size: 11px;
	}
	.cards-offers.tile-view .offer-buttons .offer-links {
		margin: 8px auto 0;
	}
	.cards-offers.tile-view .offer .offer-links ul li a {
		font-size: 12px;
	}
}
@media (max-width: 767px) {
	.cards-offers .offer {
		align-items: center;
	}
	.cards-offers .offer .offer-image {
		width: 130px;
	}
	.cards-offers .offer .offer-logo,
	.cards-offers .offer .offer-info {
		flex-basis: calc((100% / 2) - 10px);
		flex-grow: 1;
	}
	.cards-offers .offer .offer-rating {
		gap: 2px;
	}
	.cards-offers .offer .offer-score {
		flex-wrap: wrap;
		gap: 2px;
	}
	.cards-offers .offer .offer-license {
		flex-basis: 100%;
		font-size: 12px;
	}
	.cards-offers .offer .offer-keywords ul,
	.cards-offers .offer .offer-bottom {
		flex-wrap: wrap;
		justify-content: center;
	}

	.cards-offers.tile-view .offer {
		padding: 15px;
		flex-basis: calc((100% / 2) - 7px);
	}
	.cards-offers.tile-view .offer .offer-logo {
		gap: 12px;
	}
	.cards-offers.tile-view .offer .offer-name,
	.cards-offers.tile-view .offer .offer-score-rate,
	.cards-offers.tile-view .offer .offer-license {
		text-align: center;
	}
	.cards-offers.tile-view .offer .offer-score,
	.cards-offers.tile-view .offer .offer-license {
		justify-content: center;
	}
	.cards-offers.tile-view .offer .offer-name {
		font-size: 12px;
	}
	.cards-offers.tile-view .offer .offer-keywords {
		display: none;
	}
	.cards-offers.tile-view .offer .offer-info ul li .small {
		font-size: 11px;
		flex-grow: 1;
		text-align: left;
	}
	.cards-offers.tile-view .offer .offer-info ul li .small span {
		display: none;
	}
	.cards-offers.tile-view .offer .offer-info ul li .big {
		font-size: 12px;
		flex-grow: 1;
		text-align: right;
	}
	.cards-offers.tile-view .offer .btn-offer-details {
		width: 100%;
	}
	.cards-offers.tile-view .offer .btn-offer-details a {
		width: 100%;
		justify-content: center;
		align-items: center;
		padding: 2px 12px;
		height: auto;
		border: 0;
		border-radius: 0;
	}
	.cards-offers.tile-view .offer .btn-offer-details a img {
		position: relative;
		transform: initial;
		top: initial;
		left: initial;
		width: 18px;
		height: 18px;
		margin-right: 6px;
	}
	.cards-offers.tile-view .offer .btn-offer-details a span {
		font-size: 12px;
		display: inline-flex;
	}
	.cards-offers.tile-view .offer .offer-buttons {
		margin-top: 0;
	}
	.cards-offers.tile-view .offer .btn-go-url {
		font-size: 12px;
		padding: 12px;
		flex-basis: 100%;
	}
}
@media (max-width: 600px) {
	.cards-offers.tile-view .offer .offer-logo {
		flex-direction: column;
	}
	.cards-offers.tile-view .offer .offer-rating {
		margin: 0 auto;
	}
}
@media (max-width: 500px) {
	.cards-offers .offer {
		padding: 20px;
	}
	.cards-offers .offer .offer-logo {
		flex-direction: row;
		gap: 20px;
	}
	.cards-offers .offer .offer-name,
	.cards-offers .offer .offer-score-rate {
		font-size: 12px;
	}
	.cards-offers .offer .offer-license {
		font-size: 11px;
	}
	.cards-offers .offer .offer-image {
		width: 145px;
	}
	.cards-offers .offer .offer-logo {
		align-items: center;
	}
	.cards-offers .offer .offer-logo,
	.cards-offers .offer .offer-info {
		flex-basis: 100%;
	}
	.cards-offers .offer .offer-info {
		padding: 20px 0;
	}
	.cards-offers .offer .offer-info ul li {
		text-align: center;
	}
	.cards-offers .offer .offer-buttons {
		order: 4;
		flex-wrap: wrap;
	}
	.cards-offers .offer .offer-keywords ul li {
		font-size: 11px;
		opacity: .5;
	}
	.cards-offers .offer .offer-bottom {
		margin: 0;
	}
	.cards-offers .offer-bottom .offer-links {
		display: none;
	}
	.cards-offers .offer-buttons .offer-links {
		display: flex;
		margin: 0 auto;
	}
	.cards-offers .offer .btn-offer-details a {
		width: 42px;
		height: 42px;
	}
	.cards-offers .offer .btn-go-url {
/*		flex-basis: calc((100% - 42px) - 12px);*/
		height: 42px;
	}

	.cards-offers.tile-view {
		row-gap: 15px;
	}
	.cards-offers.tile-view .offer {
		padding: 20px 8px 15px 8px;
	}
	.cards-offers.tile-view .offer .offer-buttons {
		gap: 10px;
	}
	.cards-offers.tile-view .offer .offer-links ul {
		gap: 5px;
	}
	.cards-offers.tile-view .offer .offer-links ul li {
		flex-basis: calc((100% / 2) - 5px);
	}
	.cards-offers.tile-view .offer .offer-links ul li a {
		font-size: 9.5px;
		text-decoration: underline;
	}
	.cards-offers.tile-view .offer-buttons .offer-links {
		order: 1;
		margin-top: 0;
	}
	.cards-offers.tile-view .offer .btn-offer-details {
		order: 2;
	}
	.cards-offers.tile-view .offer .btn-offer-details a img {
		width: 15px;
		height: 15px;
	}
	.cards-offers.tile-view .offer .btn-go-url {
		order: 3;
		font-size: 12.6;
	}
}
/* ------------------------------------------------------------- *
 * Home SEO Text
/* ------------------------------------------------------------- */
.home-seo-text {
	padding: 75px 0;
}
.home-seo-text .seo-text h1 {
	font-size: 26px;
	font-weight: 600;
}
.home-seo-text .seo-text h2 {
	font-size: 22px;
	font-weight: 400;
}
.home-seo-text .seo-text h1 span,
.home-seo-text .seo-text h2 span {
	font-weight: 600;
}
.home-seo-text .seo-text strong {
	font-weight: 600;
}
.home-seo-text .seo-text p,
.home-seo-text .seo-text ol li {
	font-weight: 400;
}
.home-seo-text .seo-text ol li {
	padding: 3px 0;
}
.home-seo-text .seo-text ul {
	padding-inline-start: 40px;
	margin: 1em 0;
}
.home-seo-text .seo-text ul li {
	list-style-type: disc;
	padding: 3px 0;
}
.home-seo-text .seo-text ul li::marker {
	color: var(--green);
}
@media (max-width: 1200px) {
	.home-seo-text .seo-text h1 {
		font-size: 24px;
	}
	.home-seo-text .seo-text h2 {
		font-size: 20px;
	}
}
@media (max-width: 992px) {
	.home-seo-text .seo-text h1,
	.landing .seo-text h1 {
		font-size: 22px;
	}
	.home-seo-text .seo-text h2,
	.landing .seo-text h2 {
		font-size: 18px;
	}
	.home-seo-text .seo-text ol,
	.landing .seo-text ol {
		padding-left: 26px;
	}
	.home-seo-text .seo-text p,
	.home-seo-text .seo-text ol li,
	.landing .seo-text p,
	.landing .seo-text ol li {
		font-size: 14px;
	}
	.home-seo-text .seo-text ol li,
	.landing .seo-text ol li {
		margin-bottom: 6px;
	}
	.home-seo-text .seo-text ol li:last-child,
	.landing .seo-text ol li:last-child {
		margin-bottom: 0;
	}
	.home-seo-text .seo-text h1,
	.home-seo-text .seo-text h2,
	.home-seo-text .seo-text ol,
	.home-seo-text .seo-text p,
	.landing .seo-text h1,
	.landing .seo-text h2,
	.landing .seo-text ol,
	.landing .seo-text p {
		margin-bottom: 22px;
	}
}
@media (max-width: 767px) {
	.home-seo-text .seo-text h1,
	.landing .seo-text h1 {
		font-size: 20px;
	}
	.home-seo-text .seo-text h2,
	.landing .seo-text h2 {
		font-size: 18px;
	}
	.home-seo-text .seo-text ol,
	.home-seo-text .seo-text ul,
	.landing .seo-text ol,
	.landing .seo-text ul {
		padding-left: 22px;
	}
	.home-seo-text .seo-text p:last-child,
	.landing .seo-text p:last-child {
		margin-bottom: 0;
	}
}
/* ------------------------------------------------------------- *
 * Bottom Content
/* ------------------------------------------------------------- */
.bottom-content .col {
	display: flex;
    flex-direction: column;
	flex-basis: 100%;
}
/* ------------------------------------------------------------- *
 * Section FAQ
/* ------------------------------------------------------------- */
.section-faq .section-title {
	margin: 0 auto 40px
}
/* ------------------------------------------------------------- *
 * Accordion
/* ------------------------------------------------------------- */
.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    padding: 20px 16px;
    border-top: 1px solid var(--additional-green);
    transition: all .2s ease-in;
}
.accordion-item:last-child {
	border-bottom: 1px solid var(--additional-green);
}
.accordion-header {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.accordion-header .accordion-title {
    width: 70%;
    color: var(--dark-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
    transition: all .2s ease-in;
}
.accordion-header .accordion-title span {
/*    font-weight: 600;*/
}
.accordion-header .arrow-accord {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    background: var(--dark-1);
    transition: all .2s;
}
.accordion-header .arrow-accord svg {
    width: 20px;
    height: 20px;
    transition: all .2s;
}
.accordion-item.active .arrow-accord {
	background: var(--light-blue);
}
.accordion-item.active .arrow-accord svg {
    transform: rotate(90deg);
}
.accordion-item.active .arrow-accord svg path {
	stroke: var(--dark-1);
}

.accordion-content {
    display: none;
    padding: 16px 0 0 0;
    max-width: 94%;
}
.accordion-content p {
    color: var(--dark-1);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    opacity: 1;
    margin-top: 0;
    margin-bottom: 14px;
    transition: all .2s ease-in;
}
.accordion-content p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.bottom-content .col {
		width: 100%;
	}
	.accordion-header .accordion-title {
		width: calc(100% - 65px);
		font-size: 14px;
		font-weight: 500;
	}
	.accordion-header .arrow-accord {
		width: 20px;
		height: 20px;
	}
	.accordion-header .arrow-accord span {
		width: 14px;
	}

}
/* ------------------------------------------------------------- *
 * Section SEO Text
/* ------------------------------------------------------------- */
.section-seo-text {
	background: var(--bg-section);
}
.section-seo-text .seo-text h1 {
	font-size: 28px;
	font-weight: 500;
}
.section-seo-text .seo-text h2,
.section-seo-text .seo-text h3 {
	font-size: 22px;
	font-weight: 500;
}
.section-seo-text .seo-text strong {
	font-weight: 500;
}
.section-seo-text .seo-text p,
.section-seo-text .seo-text ol li {
	font-weight: 400;
}
.section-seo-text .seo-text p {
	font-weight: 400;
	line-height: 1.4;
}
.section-seo-text .seo-text p:last-child {
	margin-bottom: 0;
}
.section-seo-text .seo-text a,
.section-seo-text .seo-text p a,
.section-seo-text .seo-text li a {
	color: var(--link);
	text-decoration: underline;
}
.section-seo-text .seo-text ol,
.section-seo-text .seo-text ul {
	padding-left: 30px;
	margin-bottom: 25px;
}
.section-seo-text .seo-text ol li,
.section-seo-text .seo-text ul li {
	margin-bottom: 12px;
	font-weight: 400;
	list-style: disc;
}
.section-seo-text li.rating-list::marker {
	color: var(--link);
}
.section-seo-text .seo-text ol li:last-child,
.section-seo-text .seo-text ul li:last-child {
	margin-bottom: 0;
}
@media (max-width: 1200px) {
	.section-seo-text .seo-text h1 {
		font-size: 24px;
	}
	.section-seo-text .seo-text h2,
	.section-seo-text .seo-text h3 {
		font-size: 20px;
	}
}
@media (max-width: 992px) {
	.section-seo-text .seo-text h1 {
		font-size: 22px;
	}
	.section-seo-text .seo-text h2,
	.section-seo-text .seo-text h3 {
		font-size: 18px;
	}
	.section-seo-text .seo-text ol {
		padding-left: 26px;
	}
	.section-seo-text .seo-text p,
	.section-seo-text .seo-text ol li,
	.section-seo-text .seo-text ul li {
		font-size: 14px;
	}
	.section-seo-text .seo-text ol li,
	.section-seo-text .seo-text ul li {
		margin-bottom: 6px;
	}
	.section-seo-text .seo-text h1,
	.section-seo-text .seo-text h2,
	.section-seo-text .seo-text ol,
	.section-seo-text .seo-text p {
		margin-bottom: 22px;
	}
}
@media (max-width: 992px) {
	.section-seo-text .seo-text h1 {
		font-size: 20px;
	}
	.section-seo-text .seo-text h2 {
		font-size: 18px;
	}
	.section-seo-text .seo-text p:last-child {
		margin-bottom: 0;
	}
}
/* ------------------------------------------------------------- *
 * Section Table Top Offers
/* ------------------------------------------------------------- */
.table-top-offers {
	display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-weight: 400;
}
.table-top-offers thead,
.table-top-offers tbody,
.table-top-offers tr {
	display: flex;
	flex-basis: 100%;
}
.table-top-offers tbody {
	flex-direction: column;
}
.table-top-offers tbody {
	flex
}
.table-top-offers th,
.table-top-offers td {
	padding: 24px 16px;
	flex-basis: calc(100% / 6);
	flex-grow: 1;
}
.table-top-offers th {
	font-size: 14px;
	font-weight: 500;
}
.table-top-offers tr {
	background: var(--white);
	border-radius: 12px;
	margin: 3px 0;
}
.table-top-offers tr td {
	vertical-align: baseline;
}
.table-top-offers tr td a {
	font-weight: 500;
}
.table-top-offers tr td span {
	color: var(--text-grey-1);
}
.table-top-offers tr td img {
	width: 24px;
}
.table-top-offers th.centered,
.table-top-offers td.centered {
	text-align: center;
}
.table-top-offers td.centered img {
	margin: 0 auto;
}
/* ------------------------------------------------------------- *
 * Order / User Form
/* ------------------------------------------------------------- */
.section-order .container {
	position: relative;
}
.section-order .content {
	position: relative;
	max-width: 460px;
	margin: 0 auto;
	background-color: var(--mint);
	background-size: cover;
	background-blend-mode: multiply;
	padding: 30px;
	border-radius: 12px;
}
.section-order .content h4 {
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	margin-bottom: 8px;
	text-align: center;
}
.section-order .content h4 span {
	font-weight: 500;
}
.section-order .content p {
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	margin-top: 12px;
}

.section-order form {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.section-order .input-holder {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	height: 66px;
	flex-direction: row;
}
.section-order .input-holder .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: var(--white);
	border-radius: 6px;
}
.section-order .input-holder input {
	width: 100%;
    height: 52px;
    font-size: 15px;
    font-weight: 500;
    padding: 0 16px;
    background: var(--white);
    border: 1px solid var(--grey-5);
    border-radius: 16px;
    color: var(--dark-1);
}
.section-order .input-holder input:focus {
	border-color: var(--green);
	outline: none;
}
.section-order .input-holder input:valid {

}
.section-order .input-holder input::placeholder {
	color: var(--dark-2);
	font-weight: 500;
}
.section-order .input-holder input::placeholder::-webkit-input-placeholder {
	color: var(--dark-2);
	font-weight: 500;
}
.section-order .input-holder input::placeholder::-moz-placeholder {
	color: var(--dark-2);
	font-weight: 500;
}
.section-order .input-holder input::placeholder:-ms-input-placeholder {
	color: var(--dark-2);
	font-weight: 500;
}
.section-order form .error-message {
	width: 100%;
    font-size: 14px;
    padding: 6px 0 0 16px;
    color: red;
    display: none;
}
.section-order .user-form .btn {
	width: 100%;
	height: 52px;
	margin-top: 12px;
}
@media (max-width: 992px) {
	.section-order .container:after {
		display: none;
	}
	.section-order .content {
		max-width: 100%;
	}
}
@media (max-width: 767px) {
	.section-order .content {
		padding: 30px 15px
	}
	.section-order .content h4 {
		font-size: 22px;
	}
	.section-order .content p {
		max-width: 250px;
    	margin: 12px auto 25px;
	}
}
/* ------------------------------------------------------------- *
 * CheckBox
/* ------------------------------------------------------------- */
.checkbox-group {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
.checkbox {
	display: block;
	position: relative;
	padding-left: 30px;
	margin: 15px 0 15px 0;
	cursor: pointer;
	font-size: 12px;
	line-height: 1.2;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}
.checkbox input {
  	position: absolute;
  	z-index: -1;
  	opacity: 0;
}
.checkbox a {
	color: var(--blue);
	font-weight: 500;
	text-decoration: underline;
}
.checkbox-indicator {
  	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  	height: 18px;
  	width: 18px;
  	border: 1px solid var(--grey-5);
  	border-radius: 4px;
}
.checkbox:hover input ~ .checkbox-indicator,
.checkbox input:focus ~ .checkbox-indicator {
  	background: transparent;
}
.checkbox input:checked ~ .checkbox-indicator {
  	background: var(--blue);
  	border-color: var(--blue);
}
.checkbox:hover input:not([disabled]):checked ~ .checkbox-indicator,
.checkbox input:checked:focus ~ .checkbox-indicator {
  	background: var(--blue);
}
.checkbox input:disabled ~ .checkbox-indicator {
  	background: var(--grey-3);
    border-color: var(--grey-5);
  	opacity: 1;
  	pointer-events: none;
}
.checkbox-indicator:after {
  	content: '';
  	position: absolute;
  	display: none;
}
.checkbox input:checked ~ .checkbox-indicator:after {
  	display: block;
}
.checkbox-control .checkbox-indicator:after {
  	left: 6px;
    top: 1.9px;
    width: 5px;
    height: 11px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.checkbox-control input:disabled ~ .checkbox-indicator:after {
  	border-color: #7b7b7b;
}

/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */
.footer {
	padding: 120px 0 40px 0;
	background: var(--dark-1);
}
.footer .row {
	gap: 30px;
	flex-direction: row;
}
.footer .row .col-5 {
	flex-basis: calc(40% - 15px);
}
.footer .row .col-7 {
	flex-basis: calc(60% - 15px);
}
.footer .footer-block {
	width: 100%;
}
.footer .footer-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .footer-logo .logo img {
	max-width: 100px;
}
.footer .footer-logo .footer-title {
	font-size: 14px;
	font-weight: 400;
	color: var(--grey-3);
	margin-top: 18px;
}

.footer-menu {
	display: flex;
	flex-direction: row;
	gap: 30px;
}
.footer-menu-item {
	flex-basis: calc((100% / 3) - 30px);
	flex-grow: 1;
}
.footer-menu-item .title {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 24px;
	color: var(--white);
}
.footer-menu-item ul {
	display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-menu-item ul li a {
	font-size: 16px;
	font-weight: 400;
	color: white;
	opacity: .5;
}

.footer .footer-links {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 30px 0;
}
.footer .footer-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.footer .footer-links ul li a,
.footer .footer-links a {
	font-size: 14px;
	color: var(--white);
}
.footer .footer-links ul li a:hover,
.footer-menu-item ul li a:hover {
	text-decoration: underline;
}

.footer .footer-bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	gap: 50px;
}
.footer .footer-bottom .footer-text {
	flex-basis: calc((100% / 2) - 50px);
	flex-grow: 1;
}
.footer .footer-bottom .footer-text {

}
.footer .footer-text p {
	font-size: 12px;
	color: var(--white);
	margin-bottom: 0;
	opacity: .5;
}
.footer .footer-text p:last-child {
	margin-bottom: 0;
}

.footer-viber .heading {
	font-size: 20px;
	color: var(--white);
	text-align: center;
	margin-bottom: 24px;
}
.footer-viber .heading span {
	font-weight: 500;
	color: var(--green);
}

.footer .footer-copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 16px;
	background: rgba(235,249,240,.05);
	border-radius: 20px;
	margin-top: 24px;
}
.footer .footer-copyright-text {
	position: relative;
	display: flex;
    justify-content: space-between;
    align-items: center;
	flex: 1;
	padding-left: 24px;
	margin-left: 24px;
}
.footer .footer-copyright-text:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 100%;
	background: #434744;
}
.footer .footer-copyright-text ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.footer .footer-copyright-text ul li a {
	color: var(--white);
	font-size: 14px;
	font-weight: 400;
	opacity: .5;
}
.footer .footer-copyright-text ul li a:hover {
	opacity: 1;
}
.footer .footer-copyright p {
	margin: 0;
	font-size: 12px;
	color: var(--grey-3);
}
.footer .footer-logo img {
    height: 20px;
}
@media (max-width: 1200px) {
	.footer .footer-top .footer-title {
		font-size: 18px;
	}
	.footer .footer-logo .footer-title br {
		display: none;
	}
	.footer-viber .heading {
		font-size: 16px;
	}
}
@media (max-width: 992px) {
	.footer-menu-item .title {
		font-size: 15px;
	}
	.footer-menu-item ul li a,
	.footer .footer-links a,
	.footer .footer-logo .footer-title {
		font-size: 13px;
	}
	.footer .footer-logo img {
		height: 20px;
	}
	.footer .footer-copyright-text ul {
		flex-wrap: nowrap;
	}
	.footer .footer-copyright-text ul li {
		line-height: 1;
	}
	.footer .footer-copyright-text ul li a {
		font-size: 12px;
	}
}
@media (max-width: 767px) {
	.footer {
		padding: 30px 0;
	}
	.footer .row {
		gap: 24px;
	}
	.footer .row .col-5,
	.footer .row .col-7 {
		flex-basis: 100%;
	}
	.footer .footer-menu {
		gap: 20px;
		flex-wrap: wrap;
	}
	.footer-menu-item {
		flex-basis: auto;
	}
	.footer-menu-item .title {
		font-size: 13px;
		margin-bottom: 16px;
	}
	.footer-menu-item ul {
		gap: 8px;
	}
	.footer-menu-item ul li a,
	.footer .footer-links a,
	.footer .footer-links ul li a,
	.footer .footer-logo .footer-title {
		font-size: 12px;
	}
	.footer .footer-links {
		align-items: flex-end;
	}
	.footer .footer-links ul {
		flex-wrap: wrap;
    	gap: 12px;
    	row-gap: 5px;
	}
	.footer .footer-text p {
		font-size: 10px;
	}
	.footer .footer-logo img {
		height: 20px;
	}
	.footer .footer-viber {
		margin-top: 20px;
	}
	.footer .footer-copyright {
		flex-direction: column;
	}
	.footer .footer-copyright-text,
	.footer .footer-copyright-text ul {
		flex-wrap: wrap;
	}
	.footer .footer-copyright-text {
		margin: 0;
		padding: 0;
		text-align: center;
		flex-direction: column;
	}
	.footer .footer-copyright-text:before {
		display: none;
	}
	.footer .footer-copyright-text ul {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin: 20px 0 25px 0;
	}
	.footer .footer-copyright p {
		font-size: 11px;
	}
}
/* ------------------------------------------------------------- *
 * Section Legal
/* ------------------------------------------------------------- */
.section-legal {
	background: var(--bg-section);
	padding-bottom: 75px;
}
.section-legal .container {
	max-width: 1000px;
	border-radius: 16px;
}
.section-legal .inner {
	border-radius: 16px;
	background: var(--white);
	padding: 32px 40px;
}
.section-legal h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 0;
}
.section-legal h5 {
    font-size: 20px;
    margin-top: 20px;
}
.section-legal h5,
.section-legal p,
.section-legal ul {
    margin-bottom: 18px;
}
.section-legal p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}
.section-legal p a {
	font-size: 15px;
    color: var(--link);
    text-decoration: underline;
}
.section-legal ul {
    padding-left: 12px;
}
.section-legal ul li {
    list-style: disc;
    padding: 5px 0;
    font-size: 15px;
    font-weight: 400;
}
.section-legal strong {
	font-weight: 500;
}
@media (max-width: 767px) {
	.section-legal .inner {
		padding: 32px 16px;
	}
	.section-legal h3 {
		font-size: 22px;
	}
	.section-legal h5 {
		font-size: 18px;
	}
	.section-legal p,
	.section-legal a,
	.section-legal ul li,
	.section-legal ol li {
		font-size: 14px;
	}

}
/* ------------------------------------------------------------- *
 * Landing Intro
/* ------------------------------------------------------------- */
.presentation__arrow {
    opacity: 0;
    width: 50vw;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: url('../images/lines/line-1.svg') no-repeat right center;
    background-size: contain;
    -webkit-animation: slide_presentation 10s ease infinite;
    animation: slide_presentation 10s ease infinite;
    z-index: 1
}

.presentation__arrow:nth-child(2n+2) {
    background-image: url('../images/lines/line-2.svg')
}

.presentation__arrow--2 {
    margin-left: -33vw;
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.presentation__arrow--3 {
    margin-left: -66vw;
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.presentation__arrow--4 {
    margin-left: -99vw;
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}
@-webkit-keyframes slide_presentation {
    0% {
        opacity: 0;
        transform: translateX(0)
    }

    33% {
        opacity: 1;
        transform: translateX(33%)
    }

    66% {
        opacity: 1;
        transform: translateX(66%)
    }

    to {
        opacity: 0;
        transform: translateX(100%)
    }
}

@keyframes slide_presentation {
    0% {
        opacity: 0;
        transform: translateX(0)
    }

    33% {
        opacity: 1;
        transform: translateX(33%)
    }

    66% {
        opacity: 1;
        transform: translateX(66%)
    }

    to {
        opacity: 0;
        transform: translateX(100%)
    }
}
@media (max-width: 767px) {
	.presentation__arrow {
		display: none;
	}
}
.landing .header,
.landing-intro .calculator,
.landing-intro .intro-text {
	position: relative;
	z-index: 10;
}
.landing-intro {
	margin-top: 6px;
	background: none;
}
.landing-intro-wrap {
	position: relative;
	overflow: hidden;
}
.landing-intro-wrap .header-button .btn {
	min-width: 100px;
}
.landing-intro-wrap .header-button .btn img {
	width: 20px;
}
.landing-intro .row {
	align-items: center;
}
.landing-intro .row .col {
	display: flex;
	flex-wrap: wrap;
	flex-basis: calc((100% / 2) - 10px);
	flex-grow: 1;
}
.landing-intro .col:last-child {
	max-width: 405px;
}
.landing-intro .intro-text {
	max-width: 420px;
}
.landing-intro .intro-text .title {
	font-size: 47px;
	color: var(--white);
}
.landing-intro .intro-text .subtitle {
	font-size: 16px;
	color: var(--white);
	margin: 0;
	opacity: .8;
}
.landing-intro .calculator {
	padding: 35px 20px;
}
.landing-intro .calculator .calc-title .text {
	font-weight: 400;
}
.landing-intro .calculator .calc-output span {
	font-size: 22px;
	font-weight: 600;
}
@media (max-width: 1200px) {
	.landing-intro .title {
		font-size: 42px;
	}
}
@media (max-width: 992px) {
	.home-intro .row {
		justify-content: center;
	}
}
@media (max-width: 767px) {
	.home-intro {
		background-size: 210%;
		background-position: 50% 25%;
	}
	.home-intro .row .col:first-child {
		text-align: center;
	}
	.landing-intro-wrap .header-button .btn {
		min-width: 90px;
		height: 38px;
	}
	.landing-intro .intro-text {
		text-align: center;
		margin: 0 auto;
	}
	.landing-intro .intro-text .title {
		font-size: 24px;
		margin-bottom: 12px;
	}
	.landing-intro .intro-text .subtitle {
		font-size: 12px;
		max-width: 320px;
		margin: 0 auto 20px;
	}
	.landing-intro .calculator {
		padding: 20px 14px;
	}
	.landing-intro .calculator .calc-info {
		padding: 14px;
	}
	.landing-intro .calculator .calc-title .text {
		font-size: 15px;
	}
	.landing-intro .calculator .calc-output span {
		font-size: 20px;
	}
	.landing-intro .calculator ul.calc-details li span {
		font-size: 12px;
	}
}
/* ------------------------------------------------------------- *
 * Landing Features
/* ------------------------------------------------------------- */
.landing-features {
	padding: 75px 0;
	background-color: var(--mint);
}
.landing-features .button-holder .btn {
	text-align: center;
	margin: 30px auto 0;
	min-width: 320px;
}
.features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.features .features-item {
	display: flex;
	flex-basis: calc((100% / 3) - 10px);
	background: var(--white);
	border: 1px solid var(--grey-2);
	border-radius: 16px;
	padding: 30px;
	height: 413px;
}
.features .features-item:nth-child(1) {
	background-image: url('../images/landing/f-1.png');
}
.features .features-item:nth-child(2) {
	align-items: flex-end;
	background-color: var(--mint);
	background-image: url('../images/landing/f-2.png');
}
.features .features-item:nth-child(3) {
	background-image: url('../images/landing/f-3.png');

}
.features .features-image {
	width: 100%;
}
.features .features-icon {
	width: 62px;
	margin-bottom: 24px;
}
.features .features-title {
	font-size: 22px;
	font-weight: 600;
	color: var(--dark-1);
	margin-bottom: 12px;
}
.features .features-title span {
	font-weight: 500;
}
.features .features-item p {
	font-weight: 400;
	color: var(--dark-1);
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.features .features-item {
		max-width: 350px;
	}
	.features .features-item .heading img {
		width: 60px;
		height: 60px;
	}
	.features .features-item .heading {
		font-size: 20px;
	}
	.features .features-item p {
		font-size: 14px;
	}
	.features .features-title {
		font-size: 26px;
	}
}
@media (max-width: 992px) {
	.features .features-title {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.landing-features {
		margin-top: 50px;
		background-image: none;
	}
	.features {
		gap: 24px;
	}
	.features .features-image {
		width: 87%;
		margin-left: auto;
	}
	.features .features-item {
		flex-basis: 100%;
		max-width: 100%;
	}
	
}
/* ------------------------------------------------------------- *
 * Landing Steps
/* ------------------------------------------------------------- */
.landing-steps .title .section-title {
	margin-bottom: 12px;
}
.landing-steps .title {
	margin-bottom: 40px;
}
.landing-steps .row {
	justify-content: space-between;
	gap: 20px;
}
.landing-steps .step {
	padding: 20px;
	background: var(--white);
	border-radius: 16px;
	border: 1px solid var(--grey-3);
	flex-basis: calc((100% / 3) - 20px);
}
.landing-steps .step .step-num {
	display: inline-flex;
	background: var(--mint);
	color: var(--green);
	border-radius: 6px;
	font-size: 14px;
	padding: 6px 8px;
	font-weight: 500;
}
.landing-steps .step .step-num.blue {
	background: var(--blue);
	color: var(--white);
}
.landing-steps .step .heading {
	font-size: 24px;
	font-weight: 500;
	padding: 32px 0 12px 0;
}
.landing-steps .step p {
	margin: 0;
}
/* ------------------------------------------------------------- *
 * Landing Review
/* ------------------------------------------------------------- */
.landing-reviews {
	background: #F7F7F7;
	padding: 60px 0;
}
.landing-reviews .row {
	justify-content: space-between;
}
.landing-reviews .title .section-title {
	margin-bottom: 12px;
}
.landing-reviews .title {
	margin-bottom: 40px;
}
.landing-reviews .review {
	display: flex;
    justify-content: space-between;
    flex-direction: column;
	background: var(--white);
	flex-basis: calc((100% / 3) - 16px);
	padding: 16px 20px;
	border: 1px solid var(--gray-2);
	border-radius: 6px;
}
.landing-reviews .review-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-bottom: 6px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(54, 59, 63, .2);
}
.landing-reviews .review-rating img {
	width: 100px;
}
.landing-reviews .review-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}
.landing-reviews .review-text {
	font-size: 14px;
	padding-bottom: 16px;
}
.landing-reviews .review-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.landing-reviews .review-info .user {
	display: flex;
	align-items: center;
	gap: 8px;
}
.landing-reviews .review-info .user img {
	width: 24px;
}
.landing-reviews .review-info .user span {
	font-size: 14px;
}
.landing-reviews .review-info .date {
	font-size: 12px;
	opacity: .4;
}
/* ------------------------------------------------------------- *
 * Landing Features
/* ------------------------------------------------------------- */
.landing-features .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.landing-features .features-block {
	width: calc((100% / 2) - 10px);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 30px 20px;
	border: 1px solid var(--gray-2);
	border-radius: 6px;
}
.landing-features .features-block .image {
	min-width: 110px;
}
.landing-features .features-block .text .heading {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 16px;
}
.landing-features .features-block .text p {
	font-size: 14px;
	margin: 0;
}
/* ------------------------------------------------------------- *
 * Landing CTA
/* ------------------------------------------------------------- */
.landing-cta {
	padding: 0;
	margin-bottom: 75px;
}
.landing-cta.home-cta {
	padding: 75px 0;
}
.landing-cta .cta-banner {
	position: relative;
	padding: 45px;
	background-color: var(--mint);
	background-image: url('../images/landing/cta-bg.png');
	background-size: cover;
	background-blend-mode: multiply;
	border-radius: 20px;
}
.landing-cta .cta-text {
	max-width: 470px;
}
.landing-cta .cta-title {
	font-size: 34px;
	font-weight: 600;
	color: var(--dark-1);
	margin-top: 16px;
	margin-bottom: 12px;
	line-height: 1.2;
}
.landing-cta .cta-title span {
	font-weight: 500;
}
.landing-cta .cta-text p {
	font-weight: 400;
	color: var(--dark-1);
}
.landing-cta .cta-image {
	position: absolute;
    width: 100%;
    max-width: 50%;
    height: 100%;
    right: 0;
    bottom: 0;
}
.landing-cta .cta-image .img-cards {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 430px;
}
.landing-cta .cta-image .img-star {
	position: absolute;
    top: 30px;
    left: 50px;
    width: 140px;
}
.landing-cta .btn {
	width: 100%;
}
@media (max-width: 1300px) {
	.landing-steps .step {
		font-size: 16px;
	}
	.landing-steps .step .heading {
		font-size: 20px;
	}
	.landing-steps .step p {
		font-size: 14px;
	}
}
@media (max-width: 1200px) {
	.landing-cta .cta-title {
		font-size: 32px;
	}
	.landing-cta .cta-image .img-star {
		top: 45px;
		width: 140px;
	}
}
@media (max-width: 992px) {
	.landing-cta .cta-image {
		max-width: 100%;
	}
	.landing-cta .cta-text {
		max-width: 450px;
	}
	.landing-cta .cta-image .img-cards {
	    top: 0;
	    bottom: unset;
	    right: -50px;
	    transform: rotate(-180deg);
	    width: 400px;
	}
	.landing-cta .cta-image .img-star {
        top: 120px;
        right: 50px;
        left: unset;
        width: 120px;
    }
    .landing-steps .step {
		flex-basis: calc((100% / 3) - 10px);
	}
	.landing-reviews .review {
		flex-basis: calc((100% / 3) - 10px);
	}
	.landing-reviews .review-title {
		font-size: 16px;
	}
	.landing-reviews .review-rating {
		font-size: 14px;
	}
	.landing-features .features-block {
		align-items: flex-start;
	}
}
@media (max-width: 767px) {
	.landing-steps .title,
	.landing-reviews .title {
		margin-bottom: 30px;
	}
	.landing-steps .title p,
	.landing-reviews .title p {
		margin-bottom: 0;
	}
	.landing-steps .step,
	.landing-reviews .review {
		flex-basis: 100%;
	}
	.landing-steps .step .heading {
		font-size: 18px;
	}
	.landing-cta .cta-banner {
		display: flex;
		background-image: url('../images/landing/cta-bg-sm.png');
        flex-direction: column-reverse;
        padding: 40px 20px;
        height: 350px;
        justify-content: flex-end;
        background-position: 50% bottom;
        background-size: cover;
        background-repeat: no-repeat;
        height: auto;
	}
	.landing-cta .cta-image,
	.landing-cta .cta-image .img-cards {
		position: relative;
		top: initial;
		bottom: initial;
	}
	.landing-cta .cta-image .img-cards {
		transform: rotate(-180deg) scaleX(-1);
	}
	.landing-cta .cta-image .img-star {
		position: relative;
    	margin-top: -100px;
    	margin-left: 70px;
    	top: unset;
    	left: unset;
    	right: unset;
        width: 100px;
    }
    .landing-cta .cta-title {
    	font-size: 24px;
    }
    .landing-cta .cta-text p {
    	font-size: 15px;
    }
    .landing-reviews .row {
		gap: 16px;
	}
}



.loader {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    margin-right: 6px;
}
.loader hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite;
}
.loader :first-child {
    background: #19a68c;
    animation-delay: -1.5s;
}
.loader :nth-child(2) {
    background: #f63d3a;
    animation-delay: -1s;
}
.loader :nth-child(3) {
    background: #fda543;
    animation-delay: -0.5s;
}
.loader :last-child {
    background: #193b48;
}
@keyframes spin{
  0%,100%{transform:translate(0)}
  25%{transform:translate(160%)}
  50%{transform:translate(160%, 160%)}
  75%{transform:translate(0, 160%)}
}
button[disabled] {
    background: #ccc;
    cursor: not-allowed;
}
 

.call-wrapper {
    display: none;
}
.call-wrapper .label {
    font-size: 14px;
    text-align: center;
    padding-bottom: 12px;
}
.call-wrapper .label b {
    font-weight: 600;
    color: var(--blue);
}
.call-progress {
		max-width: 320px;
   	margin: 20px auto 0;
}
.call-counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 66px;
    padding: 0 16px;
    background: var(--white);
    border: 1px solid var(--grey-5);
    border-radius: 16px 16px 0 0;
    color: var(--dark-1);
}
.call-counter .call-icon {}
.call-counter .call-icon img {
		width: 15px;
}
.call-timer {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
.call-bar {
    width: 100%;
    height: 3px;
    background: var(--grey-5);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.call-bar-line {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2EB48E 0%, #489CDB 100%);
    transition: width 1s linear;
    border-radius: 0;
}

.call-pulse i {
    color: #fff
}
.call-pulse {
    height: 30px;
    width: 30px;
    background-color: var(--green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}
.call-pulse::before {
    content: "";
    position: absolute;
    border: 1px solid var(--green);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    animation: pulse 1s linear infinite
}
.call-pulse::after {
    content: "";
    position: absolute;
    border: 1px solid var(--green);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    animation: pulse 1s linear infinite;
    animation-delay: 0.3s
}

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

    50% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.3);
        opacity: 0
    }
}