/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
 

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

:root {
	--main-font: 'Nunito', sans-serif;;
	--main-color: #5A8DEC;
	--dark-1: #373C4D;
	--dark-2: #454545;
	--grey-1: #FAFAFA;
	--grey-2: #EFEFEF;
	--grey-3: #BDBDBE;
	--grey-4: #A2A2A2;
	--grey-5: #E5E5E5;
	--grey-6: #717784;
	--grey-7: #F0EFEF;
	--white: #FFFFFF;
	--bg-section: #F2F4F8;
	--block-shadow-1: 0 0 8px rgba(53, 53, 55, 0.08);
	--block-shadow-hover: 0 0 1px 1px rgba(90, 141, 236, 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;
	line-height: 1.3;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: var(--dark-1);
	background-color: var(--grey-1);
	overflow-x: hidden;
	height: auto;
}
main {
	display: block;
	overflow-x: initial;
	height: 100%;
	width: 100%;
}
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);
}
/* 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: 60px 0;
}
@media (max-width: 767px) {
	section {
		padding: 50px 0;
	}
}
/* Container */
.container {
	width: 100%;
	max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}
.container-fluid {
	width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
/* 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: 600;
	margin: 0 0 25px 0;
}
/* 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-style-1 {
	background: var(--bg-section)!important;
}
/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
	background: var(--grey-2);
	padding: 12px 20px;
	color: var(--dark-1);
	font-size: 16px;
	font-weight: 500;
	border-radius: 8px;
	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-blue {
	background: var(--main-color);
	color: var(--white);
}
.btn-blue:hover {
	opacity: .9;
	
}
.btn-lg {
	padding: 18px 15px;
	font-size: 18px;
	font-weight: 600;
	max-height: 58px;
}

@media (max-width: 767px) {
	.btn {
		font-size: 15px;
		padding: 15px;
	}
}

.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 */
.section-title {
	font-size: 32px;
}
.section-title-sm {
	font-size: 24px;
	font-weight: 700;
}
.section-title-lg {
	font-size: 36px;
	font-weight: 700;
}
@media (max-width: 767px) {
	.section-title-sm {
		font-size: 18px;
		text-align: center;
	}
}
/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
	border-bottom: 1px solid #E8E9EB;
}
.header .header-inner {
	padding: 15px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .header-logo a {
	font-size: 20px;
	font-weight: 500;
	color: var(--dark-1);
}
.header .header-logo a img {
	height: 28px;
}
.header .header-logo a span {
	color: var(--main-color);
}
.header .header-menu {
	margin-left: auto;
}
.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(--main-color);
}
.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: 14px;
	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;
}
.header .header-button .btn:hover {
	background: var(--main-color);
	color: var(--white);
}
@media (max-width: 767px) {
	.header .header-logo a {
		font-size: 16px;
	}
	.header .header-logo a img {
		height: 22px;
	}
}
/* ------------------------------------------------------------- *
 * 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: #fff;
    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: 90px;
}
.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: 300;
	padding-bottom: 12px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--grey-4);
}
.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: 5px;
}
.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 {
	padding-top: 30px;
	background: var(--main-color);
}
.home-intro .intro-title {
	width: 100%;
	font-size: 34px;
	font-weight: 700;
	color: var(--white);
}
/* Intro Slider */
.intro-slider {
	width: calc(100% - 430px);
	max-height: 297px;
}
.intro-slide {
	position: relative;
	border-radius: 20px;
	display: block;
    height: 100%;
}
.intro-slide .banner {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(90deg, #F2F4F8 0%, #73A1F6 100%);
	border-radius: 20px;
}
.intro-slide .banner .text {
	position: relative;
	z-index: 1;
	max-width: 285px;
	margin-left: auto;
	margin-right: 8%
}
.intro-slide .banner .text .title {
	color: var(--white);
	font-size: 30px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 12px;
}
.intro-slide .banner .text p {
	color: var(--white);
	font-size: 16px;
	margin: 0;
}

.intro-slide .banner .image {
	position: relative;
	width: 100%;
}
.intro-slide .banner .image img.girl {
	position: sticky;
	width: 250px;
	margin: 0 auto;
	z-index: 3;
}
.intro-slide .banner .image img.uah-1 {
	position: absolute;
    width: 58px;
    top: 7px;
    right: 105px;
	max-width: none;
}
.intro-slide .banner .image img.uah-2 {
	position: absolute;
    width: 128px;
    left: 28px;
    bottom: 50px;
    z-index: 1;
	max-width: none;
}

.intro-slide .banner .image .circle {
	position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    overflow: hidden;
    /* background: linear-gradient(-53deg, #DBE5FA 0%, #A3C2FD 100%); */
    border-radius: 20px;
    width: 350px;
    height: 350px;
    border-image: linear-gradient(-53deg, #DBE5FA 0%, #A3C2FD 100%) 1;
    border-width: 60px;
    border-style: solid;
}
.intro-slide .banner .image .circle div {
	border-image: llinear-gradient(-53deg, #DBE5FA 0%, #A3C2FD 100%) 1;
	border-width: 50px;
	border-style: solid;
/*	background: linear-gradient(-53deg, #DBE5FA 0%, #A3C2FD 100%);*/
}

.intro-slide .banner:before {
	content: "";
	position: absolute;
    width: 110px;
    height: 215px;
    right: 0;
    bottom: 0;
	background-image: url('../images/banners/shape-1.svg');
	background-size: cover;
}
.intro-slide picture img {
	border-radius: 20px;
	height: 100%;
    object-fit: cover;
}
/* Calculator */
.calculator {
	width: 400px;
	max-width: 400px;
	background: var(--white);
	padding: 40px 25px;
	border-radius: 20px;
}
.calculator .calc-title {
	font-size: 17px;
	font-weight: 400;
	color: var(--dark-1);
	margin-bottom: 16px;
}
.calculator .calc-output {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 16px;
}
.calculator .calc-range-labels {
	margin-top: 5px;
	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 {
	margin-top: 30px;
}
.calculator .calc-button .btn {
	width: 100%;
}
@media (max-width: 1150px) {
	.intro-slide .banner .text .title {
		font-size: 24px;
	}
	.intro-slide .banner .image img.uah-1 {
		right: 55px;
	}
	.intro-slide .banner .image img.uah-2 {
		left: 15px;
	}
}
@media (max-width: 992px) {
	.home-intro .intro-title {
        font-size: 20px;
        max-width: 240px;
        margin: 0 auto 20px;
        text-align: center;
    }
	.intro-slider,
	.calc-form,
	.calculator {
		width: 100%;
		max-width: 100%;
	}
	.intro-slider {
		order: 3;
		margin-top: 12px;
	}
	.calculator {
		padding: 30px 25px;
	}
	.calculator .calc-output {
		font-size: 24px;
	}
	.calculator .calc-title {
		font-size: 15px;
	}
}
@media (max-width: 767px) {
	.intro-slide .banner .image img.girl {
		max-width: inherit;
		width: 150px;
	}
	.intro-slide .banner .text .title {
		font-size: 16px;
	}
	.intro-slide .banner .text p {
		font-size: 13px;
	}
	.intro-slide .banner .image .circle {
		width: 170px;
    	height: 170px;
    	top: 80px;
    	border-width: 20px;
	}
	.intro-slide .banner .image img.uah-1,
	.intro-slide .banner .image img.uah-2 {
		display: none;
	}
}
@media (max-width: 500px) {
	.home-intro .intro-title {
        font-size: 19px;
        max-width: 100%;
    }
}
/* ------------------------------------------------------------- *
 * Range Sliders
/* ------------------------------------------------------------- */
.irs--round{
    height: 20px !important;
}
.irs--round .irs-line{
    height: 8px !important;
    background: var(--grey-3); !important;
    border-radius: 2px !important;
    top: 0px !important;
}
.irs--round .irs-single{
    display: none !important;
}
.irs--round .irs-bar{
    height: 8px !important;
    background: var(--main-color) !important;
    top: 0px !important;
}
.irs--round .irs-bar--single{
    border-radius: 2px !important;
}
.irs--round .irs-handle{
    background: var(--white) !important;
    box-shadow: 0 0 9px rgb(60 60 60 / 30%) !important;
    border: none !important;
    top: -10px !important;
    width: 27px !important;
    height: 27px !important;
    z-index: 20;
}
.irs--round .irs-handle:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 17px;
    height: 17px;
    background: var(--main-color) !important;
    border-radius: 100%;
}
.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;
}

/* ------------------------------------------------------------- *
 * Home Services
/* ------------------------------------------------------------- */
.services-item {
	position: relative;
	padding: 35px;
	background: var(--white);
	width: calc(50% - 15px);
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
.services-item .services-image {
	width: 100px;
}
.services-item .services-title {
	font-size: 25px;
	margin-bottom: 8px;
}
.services-item .services-inner p {
	font-size: 16px;
	font-weight: 400;
	color: var(--grey-4);
	margin-bottom: 22px;
}
.home-services form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.home-services form .button-holder {
	margin-left: 10px;
}
.home-services .btn {
	padding: 15px 35px;
	display: inline-block;
}
@media (max-width: 1200px) {
	.services-item {
		padding: 30px 25px;
	}
	.services-item .services-image {
		width: 70px;
	}
	.home-services .btn {
	    padding: 15px 28px;
	}
	.services-item .services-title {
		font-size: 22px;
	}
	.services-item .services-inner p {
		font-size: 15px;
	}
}
@media (max-width: 992px) {
	.home-services .row {
		gap: 20px;
	}	
	.services-item {
		width: 100%;
	}
}
@media (max-width: 767px) {
	.services-item .input-holder {
		width: 100%;
		margin-bottom: 12px;
	}
	.services-item .services-title {
		font-size: 18px;
	}
	.services-item .services-inner p {
		font-size: 14px;
	}
	.home-services form .button-holder {
		margin: 0;
		width: 100%;
	}
	.home-services .btn {
		font-size: 16px;
        padding: 15px;
        max-height: 51px;
        width: 100%;
        text-align: center;
	}
	.home-services .services-item {
		padding: 30px 25px;
	}
	.home-services .services-item .services-image {
		position: absolute;
		top: 30px;
		right: 25px;
	}
	.home-services .services-item .services-text {
		width: calc(100% - 100px);
	}
}
/* ------------------------------------------------------------- *
 * 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-3)
}
input::placeholder::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: var(--grey-3)
}
input::placeholder::-moz-placeholder { /* Firefox 19+ */
	color: var(--grey-3)
}
input::placeholder:-ms-input-placeholder { /* IE 10+ */
	color: var(--grey-3)
}
.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 {
	background: var(--bg-section);
	box-shadow: inset 0 4px 15px rgba(53, 53, 55, .08);
}
.home-offers .title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 40px;
}
.home-offers .section-title {
	font-size: 32px;
}
@media (max-width: 767px) {
	.home-offers .section-title {
		font-size: 22px;
	}
	.home-offers .title-wrap .btn-link-all {
		font-size: 14px;
		padding: 3px 0;
	}
}
/* ------------------------------------------------------------- *
 * Home Top Mfo Offers
/* ------------------------------------------------------------- */
.top-offers-mfo {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px 0;
}
.top-offers-mfo .offer {
	width: calc(25% - 7px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	background: var(--white);
	border-radius: 20px;
	padding: 20px;
}
.top-offers-mfo .offer:hover {
	cursor: pointer;
	box-shadow: var(--block-shadow-hover);
}
.top-offers-mfo .offer-top {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.top-offers-mfo .offer-top .offer-logo {
	height: 55px;
}
.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: 20px;
	padding: 20px 0 30px 0;
	border-top: 1px solid var(--grey-5);
}
.top-offers-mfo .offer-info ul {
	display: flex;
	flex-direction: row;
	gap: 30px;
}
.top-offers-mfo .offer-info ul li {
	display: flex;
	flex-direction: column;
}
.top-offers-mfo .offer-info ul li .small {
	font-size: 14px;
	color: var(--grey-6);
	margin-bottom: 3px;
}
.top-offers-mfo .offer-info ul li .big {
	font-weight: 600;
	color: var(--dark-1);
}
@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: 65px;
		margin-bottom: 6px;
	}
	.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 {
		gap: 20px;
	}
	.top-offers-mfo .offer-info ul li .big {
		font-size: 14px;
	}
}
@media (max-width: 992px) {
	.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;
	}
}
@media (max-width: 767px) {
	.top-offers-mfo .offer {
		width: calc(50% - 7px);
	}
	.top-offers-mfo .offer-top .offer-rating .offer-name span {
		display: block;
	}
	.top-offers-mfo .offer-info {
		padding: 20px 0;
	}
}
/* ------------------------------------------------------------- *
 * Home Top Cards Offers
/* ------------------------------------------------------------- */
.top-offers-cards {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 14px 0;
}
.top-offers-cards .offer {
	width: calc(25% - 7px);
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	background: var(--white);
	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: 48px;
}
.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-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: 140px;
}
.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;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
}
.top-offers-cards .offer-info ul li {
	display: flex;
	flex-direction: column;
	flex-basis: calc((100% / 2) - 20px);
    flex-grow: 1;
}
.top-offers-cards .offer-info ul li .small {
	font-size: 12px;
	color: var(--grey-6);
	margin-bottom: 3px;
}
.top-offers-cards .offer-info ul li .big {
	font-weight: 600;
	color: var(--dark-1);
}
@media (max-width: 1200px) {
	.top-offers-cards .offer-top {
		gap: 16px;
	}
	.top-offers-cards .offer-top .offer-logo {
		height: 75px;
        width: auto;
	}
	.top-offers-cards .offer-top .offer-logo img {
		width: auto;
	}
	.top-offers-cards .offer-info ul li .big {
		font-size: 14px;
	}
	.top-offers-cards .offer-top .offer-rating .offer-name,
	.top-offers-cards .offer-top .offer-rating .offer-score-rate { 
		font-size: 12px;
	}
}
@media (max-width: 992px) {
	.top-offers-cards .offer-top {
		flex-wrap: wrap;
        justify-content: center;
	}
	.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-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;
	}
}
@media (max-width: 767px) {
	.top-offers-cards .offer {
		width: calc(50% - 7px);
	}
	.top-offers-cards .offer-info {
		padding: 20px 0;
	}
	.top-offers-cards .offer-top .offer-rating .offer-name span {
		display: block;
	}
	.top-offers-cards .offer-top .offer-score {
		justify-content: center;
	}
}
/* ------------------------------------------------------------- *
 * Home News
/* ------------------------------------------------------------- */
.home-news .title-wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 40px;
}
.home-news .section-title {
	font-size: 32px;
}
.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);
	background: var(--white);
	border-radius: 20px;
	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: 15px;
	background: #fff;
}
.news .news-post .news-content .news-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 15px;
}
.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);
}
.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-content .news-title {
	font-size: 14px;
	padding-bottom: 15px;
	color: var(--dark-1);
	font-weight: 500;
}
.news .news-post .news-content .news-category {
	font-size: 12px;
	color: var(--dark-1);
}
@media (max-width: 767px) {
	.news .news-post {
		width: 100%;
	}
}
/* ------------------------------------------------------------- *
 * News All
/* ------------------------------------------------------------- */
.news-all {
	padding-bottom: 100px;
}
.news-all .news {
	flex-basis: calc((100% - 275px) - 30px);
}
.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;
}
.news .news-post .news-image img {
	-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);
}

.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: 300;
	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 {

}
/* ------------------------------------------------------------- *
 * 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;
	}
}
/* ------------------------------------------------------------- *
 * Home SEO Text
/* ------------------------------------------------------------- */
.home-seo-text {
	background: var(--bg-section);
}
.home-seo-text .seo-text h1 {
	font-size: 28px;
}
.home-seo-text .seo-text h2 {
	font-size: 22px;
}
.home-seo-text .seo-text strong {
	font-weight: 600;
}
.home-seo-text .seo-text p,
.home-seo-text .seo-text ol li {
	font-weight: 300;
}
.home-seo-text ul {
	margin-bottom: 25px;
	padding-left: 22px;
}
.home-seo-text ul li {
	list-style: disc;
	margin-bottom: 6px;
}
.home-seo-text ul p,
.home-seo-text ul li:last-child {
	margin-bottom: 0;
}
@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;
	}
}
/* ------------------------------------------------------------- *
 * 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: 300;
}
.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: 300;
	} 
	.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: 300;
	} 
	.market-btn .text .title {
		font-size: 13px;
	}

}
/* ------------------------------------------------------------- *
 * Page Header
/* ------------------------------------------------------------- */
.page-header {
	background: var(--main-color);
	box-shadow: inset 0 4px 15px rgba(53, 53, 55, .08);
}
.page-header .title {
	max-width: 500px;
}
.page-header .title h4 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--white);
}
.page-header .title h4 span {
	text-decoration: underline;
}
.page-header .title p {
	font-size: 16px;
/*	color: var(--grey-6);*/
	color: var(--white);
	margin: 0;
}
.page-header.lg-padding-bottom {
	padding-bottom: 120px;
}
.page-header.bg-style-1 h4,
.page-header.bg-style-1 p {
	color: var(--dark-1);
}
@media (max-width: 767px) {
	.page-header.lg-padding-bottom {
		padding-bottom: 105px;
	}
	.page-header .title {
		text-align: center;
	}
	.page-header .title h4 {
		font-size: 22px;
	}
	.page-header .title p {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * Filters / Sorting / View
/* ------------------------------------------------------------- */
.filters-wrap {
	padding: 35px;
	border-radius: 20px;
	background: var(--white);
	margin-bottom: 40px;
	margin-top: -61px;
}
.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;
	background: var(--grey-7);
	border-radius: 8px;
	color: var(--dark-2);
}
.filters-form span {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
}

.filters-form .btn-results {
	width: 200px;
	padding: 16px;
	background: var(--main-color);
	color: var(--white);
	font-size: 16px;
}

.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: 8px;
	left: 16px;
	font-size: 12px;
	color: var(--dark-2);
	opacity: .5;
}
.select-selected {
    width: 100%;
    font-size: 16px;
	padding: 23px 16px 7px 16px;
	background: var(--grey-7);
	border-radius: 8px;
	color: var(--dark-2);
    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 {
    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: 40px;
}
.sort-item .select {
	position: relative;
	display: inline-block;
	width: 100%;
}
.sort-item .select select {
	display: inline-block;
	color: var(--dark-1);
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	padding-left: 25px;
	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;
}
.view-buttons .btn-view {
	font-size: 14px;
	padding: 8px 14px;
	border-radius: 8px;
	background: transparent;
}
.view-buttons .btn-view img {
	margin-right: 5px;
}
.view-buttons .btn-view.active {
	background: var(--grey-2);
}

@media (max-width: 1200px) {
	.filters-form .btn-results,
	.filters-form input {
		font-size: 15px;
	}
	.select-selected {
		font-size: 15px;
		padding: 25px 16px 8px 16px;
	}
}
@media (max-width: 767px) {
	.filters-form {
		flex-wrap: wrap;
	}
	.filters-form .filter-item {
		flex-basis: 100%;
	}
	.filters-form .btn-results {
		width: 100%;
	}
}
@media (max-width: 500px) {
	.filters-wrap {
		padding: 25px 20px;
	}
	.view-buttons .btn-view {
		padding: 6px 10px;
	}
	.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 {
	padding-top: 0;
}
.banks-offers {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.banks-offers .offer {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 30px;
	border-radius: 20px;
	background: var(--white);
}
.banks-offers .offer .offer-logo {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
/*	padding-top: 5px;*/
}
.banks-offers .offer .offer-image {
	width: 120px;
	padding: 0 8px;
	border: 1px solid #F3F3F3;
	border-radius: 8px;
}
.banks-offers .offer .offer-rating {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.banks-offers .offer .offer-name {
	font-size: 15px;
	font-weight: 600;
	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(--grey-6);
}
.banks-offers .offer .offer-license {
	font-size: 13px;
	color: var(--grey-6);
}
.banks-offers .offer .offer-info {
	margin-left: auto;
    margin-right: 40px;
    padding: 7px 0;
    min-width: 450px;
}
.banks-offers .offer .offer-info ul {
	display: flex;
	flex-direction: row;
	gap: 30px;
}
.banks-offers .offer .offer-info ul li {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.banks-offers .offer .offer-info ul li .small {
	font-size: 13px;
	color: var(--grey-6);
}
.banks-offers .offer .offer-info ul li .big {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark-1);
}
.banks-offers .offer .btn-go-url {
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 700;
}
.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 ul {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.banks-offers .offer .offer-keywords ul li {
	border-radius: 10px;
	padding: 6px 10px;
	color: var(--dark-1);
	font-size: 12px;
	background: var(--grey-2);
	opacity: .7;
}
.banks-offers .offer .offer-links ul {
	display: flex;
	flex-direction: row;
	gap: 14px;
}
.banks-offers .offer .offer-links ul li a {
	font-size: 13px;
}
.banks-offers .banks-others {
	font-size: 28px;
	text-align: center;
	width: 100%;
	margin: 15px 0;
}
.banks-offers .banks-others {
	font-size: 28px;
	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: -11px;
	left: 30px;
	font-size: 10px;
	font-weight: 400;
	color: var(--white);
/*	background: #f16e34;*/
	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: '';
    display: inline-block; 
    background-image: url(../images/icons/icon-fire.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}
/* Tile View */
.banks-offers.tile-view {
	justify-content: space-between;
	flex-wrap: wrap;
	gap: initial;
	row-gap: 30px;
}
.banks-offers.tile-view .offer {
    padding: 15px 20px;
    width: calc(25% - 15px);
}
.banks-offers.tile-view .offer .offer-image {
	width: 100%;
	max-width: 120px;
}
.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: 11px;
}

.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-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-info {
	margin-right: 0;
	padding: 15px 0;
	min-width: fit-content;
}
.banks-offers.tile-view .offer .offer-info ul {
	flex-wrap: wrap;
	gap: 8px;
}
.banks-offers.tile-view .offer .offer-info ul li {
	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 .big {
	font-size: 14px;
}

.banks-offers.tile-view .offer .offer-buttons {
	width: 100%;
	gap: 6px;
	order: 4;
	flex-wrap: wrap;
	margin-top: 16px;
}
.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-top: 6px;
	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: 11px;
}
.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 16px;
	}
	.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.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 {
		align-items: center;
	}
	.banks-offers .offer .offer-image {
		width: 150px;
	}
	.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 li {
		text-align: center;
	}

	.banks-offers.tile-view .offer {
		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-score,
	.banks-offers.tile-view .offer .offer-license {
		justify-content: flex-end;
	}
	.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;
	}
	.banks-offers .offer .offer-image {
		width: 130px;
	}
	.banks-offers .offer .offer-logo,
	.banks-offers .offer .offer-info {
		flex-basis: calc((100% / 2) - 10px);
		flex-grow: 1;
	}
	.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;
	}
	.banks-offers .offer .offer-keywords ul,
	.banks-offers .offer .offer-bottom {
		flex-wrap: wrap;
		justify-content: center;
	}

	.banks-offers.tile-view .offer {
		padding: 15px;
		flex-basis: calc((100% / 2) - 6px);
	}
	.banks-offers.tile-view .offer .offer-logo {
		gap: 12px;
	}
	.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;
	}
	.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: 145px;
	}
	.banks-offers .offer .offer-logo {
		align-items: center;
	}
	.banks-offers .offer .offer-logo,
	.banks-offers .offer .offer-info {
		flex-basis: 100%;
	}
	.banks-offers .offer .offer-info {
		padding: 20px 0;
	}
	.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: 42px;
	}
	.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-buttons {
		gap: 10px;
	}
	.banks-offers.tile-view .offer .offer-links ul {
		gap: 5px;
	}
	.banks-offers.tile-view .offer .offer-links ul li {
		flex-basis: calc((100% / 2) - 5px);
	}
	.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;
	}
	.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: 12.6;
	}
}
/* ------------------------------------------------------------- *
 * Cards Offers
/* ------------------------------------------------------------- */
.cards-offers {
	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: 600;
	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(--grey-6);
}
.cards-offers .offer .offer-license {
	font-size: 13px;
	color: var(--grey-6);
}
.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(--grey-6);
}
.cards-offers .offer .offer-info ul li .big {
	font-size: 15px;
	font-weight: 700;
	color: var(--dark-1);
}
.cards-offers .offer .btn-go-url {
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 700;
}
.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: 10px;
}
.cards-offers .offer .offer-keywords ul li {
	border-radius: 10px;
	padding: 6px 10px;
	color: var(--dark-1);
	font-size: 12px;
	background: var(--grey-2);
	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;
}
/* 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;
	}
}
/* ------------------------------------------------------------- *
 * Bottom Content
/* ------------------------------------------------------------- */
.bottom-content {
/*	padding-top: 0;*/
}
.bottom-content .col {
	width: 100%;
}
.bottom-content .col-9 {
	width: calc(70% - 25px);
}
.bottom-content .col-3 {
	width: calc(30% - 25px);
}
/* ------------------------------------------------------------- *
 * Accordion
/* ------------------------------------------------------------- */
.accordion {
    width: 100%;
    margin-bottom: 30px;
}

.accordion-item {
    padding: 12px 12px 12px 0;
    border-bottom: 1px solid var(--grey-2);
    transition: all .2s ease-in;
}
.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: 15px;
    padding: 5px 0;
    font-style: normal;
    font-weight: 400;
    line-height: 115%;
    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;
    transition: all .2s;
}
.accordion-header .arrow-accord span {
    width: 17px;
    height: 1px;
    background: var(--grey-3);
    transition: all .2s;
}
.accordion-header .arrow-accord span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(90deg);
}
.accordion-item.active .arrow-accord span:nth-child(2) {
    transform: translate(-50%,-50%) rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 10px 0;
}
.accordion-content p {
    color: var(--dark-1);
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
    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;
	}
	.accordion-header .arrow-accord {
		width: 20px;
		height: 20px;
	}
	.accordion-header .arrow-accord span {
		width: 14px;
	}

}
/* ------------------------------------------------------------- *
 * Landing / Intro
/* ------------------------------------------------------------- */
.landing section {
	padding: 75px 0;
}
.landing .footer {
	padding-top: 30px;
}
.landing .container {
	max-width: 1050px;
}
.landing-intro {
	background: var(--main-color);
}
.landing-intro .landing-inner {
	position: relative;
	overflow: hidden;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}
.landing-intro .content {
	position: relative;
    display: flex;
    flex-direction: row;
    flex-basis: calc(100% - 470px);
    justify-content: space-between;
    height: auto;
    gap: 12px;
    z-index: 10;
}
.landing-intro .content .text-wrap {
	display: flex;
	padding-top: 60px;
	padding-bottom: 30px;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
}
.landing-intro .content .text h4 {
	font-size: 34px;
	color: var(--white);
	font-weight: 700;
	margin-bottom: 14px;
}
.landing-intro .content .text p {
	color: var(--white);
}
.landing-intro .fake-approves {
	display: inline-flex;
    align-items: center;
	height: 52px;
	padding: 12px 16px;
	color: var(--dark-2);
	background: #F0F6FF;
	border-radius: 8px;
}
.landing-intro .fake-approves img {
	width: 30px;
	height: 30px;
	margin-right: 8px;
	display: inline-block;
	vertical-align: middle;
}
.landing-intro .fake-approves strong {
	margin-right: 6px;
}

.landing-intro .content .banner {
	position: relative;
	height: 100%;
	width: 228px;
	background: var(--white);
	border-radius: 20px;
}
.landing-intro .content .banner img.girl {
	position: absolute;
    width: 270px;
    right: 0;
    bottom: 0;
    z-index: 2;
	max-width: none;
}
.landing-intro .content .banner img.uah-1 {
	position: absolute;
    width: 58px;
    top: 7px;
    left: 25px;
	max-width: none;
}
.landing-intro .content .banner img.uah-2 {
	position: absolute;
    width: 128px;
    left: -28px;
    bottom: 50px;
    z-index: 1;
	max-width: none;
}

.landing-intro .form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 450px;
}
.landing-intro .form .form-text {
	font-size: 20px;
    font-weight: 500;
    color: var(--dark-2);
    margin-bottom: 20px;
}
.landing-intro .form .form-buttons,
.landing-intro .form .form-amount {
	width: 100%;
	background: var(--white);
	padding: 30px;
	border-radius: 20px;
}
.landing-intro .form form {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.landing-intro .form-amount form {

}
.landing-intro .form-buttons form button {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px;
	border: 1px solid var(--main-color);
	background: var(--main-color);
	color: var(--white);
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	flex-basis: calc((100% / 2) - 20px);
	flex-grow: 1;
	overflow: hidden;
}
.landing-intro .form-buttons form button span {
	position: relative;
	display: flex;
	width: 20px;
	height: 20px;
	border-radius: 100px;
	background: var(--white);
	transition: all .2s;
}
.landing-intro .form-buttons form button span span {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 100px;
	background: var(--white);
	transition: all .2s;
}
.landing-intro .form-buttons form button span.circle:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	background-image: url('../images/icons/icon-arrow-right-btn-blue.svg');
	background-size: contain;
}
.landing-intro .form-buttons form button:hover span.circle span {
	transform: scale(4.2);
}
.landing-intro .form-buttons form button:hover span.circle:after {
	width: 12px;
	height: 12px;
}


.landing-intro .form-amount form {
	gap: 12px;
}
.landing-intro .form-amount form input,
.landing-intro .form-amount form .input-holder {
	width: 100%;
}
.landing-intro .form-amount form input {
	padding: 14px 12px;
	height: 52px;
	background: var(--bg-section);
}
.landing-intro .form-amount form button {
	width: 100%;
	height: 52px;
}

@media (max-width: 1050px) {
	.landing-intro .content {
		flex-basis: 100%;
		gap: 30px;
	}
	.landing-intro .content .text-wrap,
	.landing-intro .content .banner {
		width: auto;
		flex-basis: calc((100% / 2 ) - 30px);
	}
	.landing-intro .content .banner img.girl {
		max-width: 178px;
	}
	.landing-intro .form {
		max-width: 100%;
	}
}
@media (max-width: 992px) {
	
}
@media (max-width: 767px) {
	.landing-intro {
		padding-top: 20px!important;
	}
	.landing-intro .content {
		gap: 20px;
	}
	.landing-intro .content .text h4 {
		font-size: 24px;
	}
	.landing-intro .content .text-wrap {
		padding-top: 30px;
		flex-grow: 1;
	}
	.landing-intro .content .banner {
		width: auto;
        flex-basis: 130px;
	}
	.landing-intro .content .banner img.girl {
		width: 145px;
	}
	.landing-intro .content .banner img.uah-1 {
		width: 38px;
	    top: 7px;
	    left: 5px;
	}
	.landing-intro .content .banner img.uah-2 {
		width: 78px;
	    left: -28px;
	    bottom: 40px;
	}
	.landing-intro .fake-approves {
		flex-wrap: wrap;
		font-size: 12px;
		width: fit-content;
		padding: 8px 12px;
		height: auto;
	}
	.landing-intro .fake-approves img {
		margin-right: 6px;
	}
	.landing-intro .fake-approves .text {
		display: flex;
		flex-direction: column;
		line-height: 1.15;
	}
	.landing-intro .content .text p {
		font-size: 14px;
	}
	.landing-intro .content .text p br {
		display: none;
	}
	.landing-intro .form .form-buttons, .landing-intro .form .form-amount {
		padding: 20px;
	}
	.landing-intro .form form {
		gap: 8px;
	}
	.landing-intro .form-buttons form button {
		padding: 15px 12px;
		font-size: 14px;
	}
	.landing-intro .form-buttons form button span {
		width: 16px;
		height: 16px;
	}
	.landing-intro .form-buttons form button span span {
		display: none;
	}
}
/* ------------------------------------------------------------- *
 * Landing / About
/* ------------------------------------------------------------- */
.landing-about .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.landing-about .content {
	flex-basis: calc(100% - 530px);
}
.landing-about .content .content-inner {
	max-width: 400px;
}
.landing-about .content .section-title {
	margin-bottom: 18px;
	line-height: 1.25;
}
.landing-about .content p {
	line-height: 1.4;
	color: var(--grey-4);
}
.landing-about .content .btn {
	margin-top: 25px;
}
.landing-about .banner {
	max-width: 500px;
}
@media (max-width: 1050px) {
	.landing-about .content .section-title br {
		display: none;
	}
	.landing-about .content,
	.landing-about .banner {
		flex-basis: calc((100% / 2 ) - 30px);
		max-width: 100%;
	}
	.landing-about .content .content-inner {
		max-width: 100%;
	}
}
@media (max-width: 767px) {
	.landing-about .row {
		gap: 35px;
	}
	.landing .section-title {
		font-size: 24px!important;
	}
	.landing-about .content,
	.landing-about .banner {
		flex-basis: 100%;
		max-width: 100%;
	}
	.landing-about .content .content-inner {
		text-align: center;
	}
	.landing-about .content .btn {
		margin: 25px auto 0;
	}
}
/* ------------------------------------------------------------- *
 * Landing / Steps
/* ------------------------------------------------------------- */
.landing-steps {
	background: var(--bg-section);
}
.landing-steps .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
.landing-steps .section-title {
	flex-basis: 100%;
}
.landing-steps .step-item {
	display: flex;
	flex-wrap: wrap;
	flex-basis: calc((100% / 3) - 15px);
	padding: 30px;
	background: var(--white);
	border-radius: 20px;
}
.landing-steps .step-item .image {
	border-radius: 20px;
	margin-bottom: 25px;
}
.landing-steps .step-item h5 {
	font-size: 18px;
	margin: 0 0 16px 0;
	color: var(--dark-2);
}
.landing-steps .step-item p {
	color: var(--grey-4);
	margin: 0;
}
@media (max-width: 1050px) {
	.landing-steps .step-item {
		padding: 20px;
	}
	.landing-steps .step-item h5 {
		font-size: 16px;
	}
	.landing-steps .step-item p {
		font-size: 14px;
	}
}
@media (max-width: 767px) {
	.landing-steps .step-item {
		flex-basis: 100%;
	}
}
/* ------------------------------------------------------------- *
 * Landing / Features
/* ------------------------------------------------------------- */
.landing-features {
	background: var(--bg-section);
}
.landing-features .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}
.landing-features .section-title {
	flex-basis: 100%;
}
.landing-features .features-item {
	display: flex;
	flex-wrap: wrap;
	flex-basis: calc((100% / 2) - 15px);
	max-width: 440px;
	gap: 25px;
}
.landing-features .features-item .banner {
	border-radius: 20px;
	overflow: hidden;
}
.landing-features .features-item h5 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: var(--dark-2);
}
.landing-features .features-item p {
	color: var(--grey-4);
	margin: 0;
}
.landing-features .features-item button {
	display: flex;
	align-items: center;
	font-weight: 500;
}
.landing-features .features-item button:hover {
	text-decoration: underline;
}
.landing-features .features-item button span {
	position: relative;
	width: 20px;
	height: 20px;
	border-radius: 100px;
	background: var(--main-color);
	transition: all .2s;
	margin-right: 8px;
}
.landing-features .features-item button span:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	background-image: url('../images/icons/icon-arrow-right-btn-white.svg');
	background-size: contain;
}
@media (max-width: 767px) {
	.landing-features .section-title {
		margin-bottom: 0;
	}
	.landing-features .row {
		gap: 30px;
	}
	.landing-features .features-item {
		flex-basis: 100%;
	}
}
/* ------------------------------------------------------------- *
 * Landing / CTA
/* ------------------------------------------------------------- */
.landing-cta .cta {
	position: relative;
	padding: 70px 30px;
	border-radius: 20px;
	overflow: hidden;
	background: var(--main-color);
	width: 100%;
	text-align: center;
}
.landing-cta .cta:before,
.landing-cta .cta:after {
	content: "";
	position: absolute;
    width: 171px;
    height: 271px;
	background-image: url('../images/landing/cta-01.svg');
	background-size: cover;
}
.landing-cta .cta:before {
	left: 0;
    bottom: 0;
}
.landing-cta .cta:after {
	right: 0;
    bottom: 0;
    transform: scaleX(-1);
}
.landing-cta .cta .text {
	position: relative;
	z-index: 5;
}
.landing-cta .cta h4 {
	color: var(--white);
	margin-bottom: 6px;
}
.landing-cta .cta p {
	color: var(--white);
	opacity: .65;
	margin: 0 0 25px 0;
}
.landing-cta .cta .btn {
	color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
	margin: 0 auto;
	padding: 14px 32px;
}
.landing-cta .cta .btn:hover {
	background: var(--white);
	color: var(--main-color);
	border: 1px solid var(--white);
}
.landing-cta .cta .elipse {
	position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    width: 375px;
    height: 230px;
    background: radial-gradient(#D6E5FF 0%, #5490ED 100%);
    border-radius: 100%;
    filter: blur(55px);
    opacity: .7;
}
@media (max-width: 767px) {
	.landing section {
		padding: 55px 0;
	}
	.landing-cta .cta {
		padding: 40px 20px;
	}
	.landing-cta .cta:before,
	.landing-cta .cta:after {
		width: 105px;
	    height: 200px;
	}
	.landing-cta .cta p {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * Order / User Form
/* ------------------------------------------------------------- */
.section-order .content {
	max-width: 460px;
	background: var(--white);
	padding: 30px 50px;
	border-radius: 12px;
	margin: 0 auto;
	-webkit-box-shadow: 0 0 12px rgba(53, 53, 55, 0.05);
	box-shadow: 0 0 12px rgba(53, 53, 55, 0.05);
}
.section-order .content h4 {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
}
.section-order .content p {
	text-align: center;
	margin-top: 12px;
}

.section-order form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.section-order form .input-holder {
	flex-wrap: wrap;
}
.section-order form input {
	width: 100%;
	padding: 16px 26px 16px 16px;
	height: 52px;
	font-size: 15px;
	background: var(--grey-1);
	border: 1px solid var(--grey-1);
	border-radius: 8px;
	color: var(--dark-2);
}
.section-order form input:focus {
	border: 1px solid var(--grey-4);
	background: var(--white);
}
.section-order form input:valid {
	background: var(--white);
	border: 1px solid var(--main-color);
}
.section-order .user-form .btn {
	width: 100%;
	height: 52px;
}

.section-order form .error-message {
	width: 100%;
    font-size: 14px;
    padding: 6px 0 0 0;
    color: red;
}
@media (max-width: 767px) {
	.section-order .content {
		padding: 25px 20px;
	}
}
/* ------------------------------------------------------------- *
 * CheckBox
/* ------------------------------------------------------------- */
.checkbox-group {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
.checkbox {
	display: block;
	position: relative;
	padding-left: 30px;
	margin: 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(--main-green);
	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(--main-color);
  	border-color: var(--main-color);
}
.checkbox:hover input:not([disabled]):checked ~ .checkbox-indicator,
.checkbox input:checked:focus ~ .checkbox-indicator {
  	background: var(--main-color);
}
.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: 0 0 30px 0;
}
.footer .row {
	gap: 30px;
}
.footer .footer-block {
	width: 100%;
}
.footer .footer-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .footer-top .footer-title {
	font-size: 20px;
	font-weight: 500;
}
.footer .footer-banner {
	width: 100%;
	height: 260px;
	background: var(--main-color);
	padding: 45px;
	display: flex;
	align-items: center;
	border-radius: 20px;
}
.footer .footer-banner .title {
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 30px;
	color: var(--white);
}
.footer .footer-banner .btn {
	display: inline-flex;
	align-items: center;
	background: var(--white);
    color: var(--main-color);
	margin: 0 auto;
	padding: 14px 32px;
}
.footer .footer-banner .btn img {
	width: 26px;
	height: 26px;
	margin-right: 8px;
}
.footer .footer-banner .btn:hover {}


.footer .footer-links ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.footer .footer-links ul li a {
	font-size: 14px;
	color: var(--dark-1);
}
.footer .footer-links ul li a:hover {
	text-decoration: underline;
}

.footer .footer-text p {
	font-size: 12px;
	color: var(--grey-4);
	margin-bottom: 18px;
}
.footer .footer-text p:last-child {
	margin-bottom: 0;
}

.footer .footer-copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .footer-copyright p {
	margin: 0;
	font-size: 12px;
	color: var(--grey-4);
}
.footer .footer-copyright img {
	width: 25px;
}
@media (max-width: 1200px) {
	.footer .footer-top .footer-title {
		font-size: 18px;
	}
	.footer .footer-banner .title {
		font-size: 26px;
	}
}
@media (max-width: 767px) {
	.footer .row {
		gap: 24px;
	}
	.footer .footer-top {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
	}
	.footer .footer-logo {
		margin-bottom: 12px;
	}
	.footer .footer-logo a img {
		height: 22px;
	}
	.footer .footer-top .footer-title {
		font-size: 14px;
	}
	.footer .footer-banner {
		padding: 30px 20px;
		justify-content: center;
	}
	.footer .footer-banner {
		text-align: center;
	}
	.footer .footer-banner .title {
		font-size: 20px;
		text-align: center;
	}
	.footer .footer-banner .title br {
		display: none;
	}
	.footer .footer-banner .btn {
		padding: 12px 26px;
		margin: 0 auto;
		width: 100%;
	}
	.footer .footer-banner .btn img {
		width: 20px;
	}
	.footer .footer-links ul {
		flex-wrap: wrap;
    	gap: 12px;
    	row-gap: 5px;
	}
}

.section-legal {
	padding-bottom: 75px;
}
.section-legal .container {
	max-width: 1000px;
}
.section-legal h3 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 35px;
    margin-top: 0;
}

.section-legal h5 {
    font-size: 16px;
    margin-top: 20px;
}

.section-legal h5,
.section-legal p,
.section-legal ul {
    margin-bottom: 16px;
}

.section-legal p {
    font-size: 15px;
}

.section-legal p a {
	font-size: 15px;
    color: var(--main-color);
    text-decoration: underline;
}

.section-legal ul {
    padding-left: 12px;
}

.section-legal ul li {
    list-style: disc;
    padding: 5px 0;
    font-size: 15px;
}


.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(--main-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}
.call-progress {
	max-width: 260px;
   	margin: 20px auto 0;
}
.call-counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 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: 16px auto 0;
}
.call-bar-line {
    height: 100%;
    width: 0;
    background: var(--main-color);
    transition: width 1s linear;
    border-radius: 0;
}

.call-pulse i {
    color: #fff
}
.call-pulse {
    height: 30px;
    width: 30px;
    background-color: var(--main-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative
}
.call-pulse::before {
    content: "";
    position: absolute;
    border: 1px solid var(--main-color);
    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(--main-color);
    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
    }
}









/* Hard fix horizontal scroll */
html, body { overflow-x: hidden !important; max-width: 100vw; }
.main, main, section, .container { max-width: 100vw; overflow-x: hidden; }
.container { box-sizing: border-box; }
#greeting-block { max-width: calc(100% - 4px); box-sizing: border-box; word-wrap: break-word; }

/* Margin top for offers section after page-header removed */
.credits-offers { padding-top: 8px !important; }
.credits-offers .sort-view-wrap { margin-top: 16px !important; padding-top: 8px; }
