/* ------------------------------------------------------------- *
 * Fonts
/* ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

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

:root {
	--main-font: 'Manrope', sans-serif;
	--white: #FFF;
	--black: #000000;
	--gray: #F2F3F4;
	--yellow: #FFD85F;
	--yellow-dark: #D4A40C;
	--yellow-light: #F1E599;
	--gradient: linear-gradient(135deg, #F2F3F4 12%, #FFFBE5 100%);
}

/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

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

html,body { padding: 0; margin: 0; }

body {
	position: relative;
	background-color: var(--white);
	line-height: normal;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	color: var(--black);
	overflow-x: hidden;
}
main {
	display: block;
	height: 100%;
	width: 100%;
	max-width: 1280px;
	padding: 0 15px;
	margin: 0 auto;
}
@media (max-width: 992px) {
	main {
		overflow-x: hidden;
	}
}
p { 
	color: var(--black);
	margin: 0 0 25px; 
	font-weight: 400;
	line-height: normal;
}
a {
	color: #fff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}
a {
	color: var(--black);
	-webkit-transition: .2s ease-in;
	-o-transition: .2s ease-in;
	transition: .2s ease-in;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
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;
	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(--black);
}
::selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
::-moz-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
::-webkit-selection {
	color: var(--white);
	text-shadow: none;
	background: var(--black);
}
/* 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;
}
figure {
	margin: 0;
	padding: 0;
	overflow: hidden;
}
section {
	position: relative;
	padding: 50px 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;
}
/* Main */
.main {
	display: block;
	padding-top: 12px;
}
/* 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 }
.mb-10 { margin-bottom: 10px }
.mb-20 { margin-bottom: 20px }
.mb-40 { margin-bottom: 40px!important }
.mt-0 { margin-top: 0!important }
/* Paddings */
.pb-0 { padding-bottom: 0!important }
.pt-0 { padding-top: 0!important }
/* Background Color */
.bg-gray { background-color: var(--gray) }

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn {
	background: var(--yellow);
	padding: 15px 20px;
	color: var(--black);
	font-size: 18px;
	font-weight: 500;
	border-radius: 100px;
	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;
    max-height: 56px;
    cursor: pointer;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease;
}
/* Btn Solid */
.btn-solid {
	background: var(--yellow);
	color: var(--black);
}
.btn-solid:hover {
	
}
.btn-small {
	font-size: 15px;
	padding: 12px 15px;
}
@media (max-width: 1200px) {
	.btn-small {
		font-size: 14px;
	}
}
/* ------------------------------------------------------------- *
 * States
/* ------------------------------------------------------------- */
.state-error { color: var(--state-error); }
.state-warning { color: var(--state-warning); }
.state-danger { color: var(--state-danger); }
.state-success { color: var(--state-success); }
.state-info { color: var(--state-info); }
.state-promo { color: var(--state-promo); }
/* ------------------------------------------------------------- *
 * Titles
/* ------------------------------------------------------------- */
.title {
	font-size: 40px;
	font-weight: 500;
	line-height: 1.3;
}
.title.mb-40 {
	margin-bottom: 40px;
}

@media (max-width: 1200px) {
	.title {
		font-size: 28px;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	color: var(--color-dark-1);
	margin: 0;
}
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 600;
	color: var(--color-dark-1);
}
.h1 { font-size: 34px }
.h2 { font-size: 28px }
.h3 { font-size: 24px }
.h4 { font-size: 20px }
.h5 { font-size: 18px }
.h6 { font-size: 16px }

@media (max-width: 767px) {
	.h1 { font-size: 22px; }
	.h2 { font-size: 20px; }
	.h3 { font-size: 18px; }
	.h4 { font-size: 16px; }
}

.text-left { text-align: left!important }
.text-center { text-align: center!important }
.text-right { text-aright: center!important }
/* ------------------------------------------------------------- *
 * Lists
/* ------------------------------------------------------------- */
.list-style-1 {
	margin-bottom: 20px;
}
.list-style-1 li {
	position: relative;
	line-height: 1.2;
	padding-left: 20px;
	margin-bottom: 12px;
}
.list-style-1 li:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: var(--yellow);
}
.list-style-1 li:last-child {
	margin-bottom: 0;
}

.list-style-2 {
	margin-bottom: 0;
}
.list-style-2 li {
	position: relative;
	line-height: 1.2;
	padding-left: 32px;
	margin-bottom: 15px;
}
.list-style-2 li:before {
	content: "";
	position: absolute;
	top: -2.2px;
	left: 0;
	width: 22px;
	height: 22px;
	border: 4px solid rgb(109 180 139 / 25%);
	border-radius: 50%;
	background-image: url('../images/icons/icon-circle-check.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
.list-style-2 li:last-child {
	margin-bottom: 0;
}

.ordered-list-style-1 {
	padding-left: 14px;
	margin-bottom: 20px;
}
.ordered-list-style-1 li {
	position: relative;
	line-height: 1.2;
	padding-left: 6px;
	margin-bottom: 12px;
}
/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
/*	position: fixed;*/
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 998;
	background: var(--gray);
    border-radius: 100px;
}
.header .header-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 15px 20px;
}
.header .header-logo {
	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;
	font-size: 24px;
	font-weight: 700;
	color: var(--color-dark-1);
	max-width: 145px;
/*	margin-right: auto;*/
}
.header .header-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
   	margin: auto;
}
.header .header-menu-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    margin: auto;
}
.header .header-menu-list li {
	margin-right: 25px;
}
.header .header-menu-list li:last-child {
	margin-right: 0;
}
.header .header-menu-list li a {
	position: relative;
   	font-size: 15px;
   	font-weight: 400;
   	padding: 8px 0;
   	color: var(--color-dark-1);
   	-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;
}
.header .header-menu-list li a: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;
}
.header .header-menu-list li a:before {
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--yellow-dark);
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	    transform: scaleX(0);
}
.header .header-menu-list li a:hover,
.header .header-menu-list li a.active {
	color: var(--yellow-dark);
}
.header .header-menu-list li a.active {
	font-weight: 500;
}
.header .header-menu-list li a:hover:before,
.header .header-menu-list li a.active:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.header .header-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header .header-support a {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 6px;
	font-size: 15px;
	margin-right: 15px;
}
.header .header-support a img {
	width: 16px;
}

/* 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(--black);
}
.header .header-burger span {
	display: none;
	position: absolute;
	top: 100%;
	margin-top: -3px;
	font-size: 9px;
	font-weight: 400;
	color: var(--black);
}
.header .header-burger.opened span {
	display: block;
}
.language-switcher {
	margin-right: 16px;
}
.language-switcher {
  position: relative;
  width: 125px;
  font-family: sans-serif;
  cursor: pointer;
}

.current-language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 400;
}

.current-language img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.current-language .arrow {
  margin-left: auto;
  font-size: 12px;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin-top: 5px;
  border: 1px solid #eaeaea;
  background: #fff;
  border-radius: 6px;
  display: none;
  z-index: 10;
}

.language-dropdown li {
  transition: background 0.2s;
}
.language-dropdown li:hover {
  background: var(--gray);
}

.language-dropdown li a {
	font-size: 13px;
	display: flex;
  align-items: center;
  padding: 10px 12px;
}

.language-dropdown img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
@media (max-width: 1200px) {
	.header .header-logo {
		max-width: 115px;
	}
	.header .header-menu-list li {
		margin-right: 16px;
	}
	.header .header-menu-list li a {
		font-size: 13px;
	}
	.current-language,
	.header .header-support a {
		font-size: 13px;
	}
}
@media (max-width: 1100px) {
	.language-switcher {
		width: auto;
	}
	.current-language span:not(.arrow) {
		display: none;
	}
	.language-dropdown {
		width: 120px;
	}
}
@media (max-width: 992px) {
	.header .header-menu {
		display: none;
	}
	.header .header-burger {
		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 {
		max-height: 65px;
	}
	.header .header-wrap {
		padding: 15px 15px 15px 20px;
	}
	.header .header-logo {
		max-width: 90px;
	}
	.header .header-button .btn {
		padding: 10px;
		font-size: 14px;
	}
	.header.header-fixed {
		position: fixed;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
	}
	.header.header-fixed.header-scroll {
		border-bottom: 1px solid #d9d9d9;
		-webkit-box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15);
		box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15);
	}
	.header.header-fixed .sidebar-active {
		top: -12px;
		right: -12px;
	}
	.header.header-fixed .sidebar-background {
		height: 120vh;
		top: -12px;
    left: -12px;
	}
	.header.header-scroll .header-inner {
		border: 0;
	}
	.header-main .header-cta {
		display: none;
	}
	.header-main .header-support,
	.header .header-support a {
		margin-right: 0;
	}
	.header-main .btn-login {
		width: 100px;
	}
	.current-language {
		padding: 0;
	}
}
@media (max-width: 450px) {
	.header .btn-pay {
		padding: 10px 12px;
	}
}
@media (max-width: 425px) {
	.header-pay {
		display: none;
	}
}
@media (max-width: 350px) {
	.header .logo {
		width: 125px;
	}
	.header .header-burger {
		margin-left: 5px;
	}
	.header-dropdown .header-dropdown-text {
		font-size: 12px;
	}
}
/* ------------------------------------------------------------- *
 * Mobile Menu
/* ------------------------------------------------------------- */
.sidebar-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 990;
    width: 100%;
    height: 200%;
    background: rgb(0 0 0 / 80%);
}
.sidebar-background.active {
    display: block;
    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: 100px;
}
.sidebar-wrap {
    overflow-x: hidden;
    padding: 18px 20px;
}
.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 .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 .logo {
	width: 100px;
	display: flex;
}
.sidebar .sidebar-list-heading {
	font-size: 12px;
	font-weight: 300;
	padding-bottom: 12px;
	line-height: 1;
	text-transform: uppercase;
	color: var(--grey-shade-4);
}
.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(--color-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(--black);
	border-radius: 50%;
	padding: 5px;
	margin-right: 10px;
}
.sidebar-support li .icon-holder img {
	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(--yellow);
	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 .btn-logout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}
.sidebar .btn-logout .icon {
	margin: 0 0 0 5px;
}

.sidebar-cabinet .sidebar-bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
/* ------------------------------------------------------------- *
 * Section Intro
/* ------------------------------------------------------------- */
.intro {
	padding-bottom: 0;
}
.intro .row {
	position: relative;
}
.intro .title {
	margin-bottom: 20px;
}
.intro .title span {
	text-decoration: underline;
	text-decoration-color: var(--yellow);
	text-decoration-thickness: 3;
	text-de
}
.intro .banner {
	position: relative;
	display: flex;
	height: 550px;
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
}
.intro .banner .backdrop {
	position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 1;
  transition: opacity .2s;
}
.intro .banner:hover .backdrop {
	opacity: .5;
}
.intro .banner img {
	object-fit: cover;
}
.intro .text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 700px;
  width: 100%;
	text-align: center;
	z-index: 10;
}
.intro .text .title,
.intro .text .subtitle {
	color: var(--white);
}
.intro .text .btn {
	max-width: 320px;
	margin: 0 auto;
}
.intro .text.show-mob {
	display: none;
}
@media (max-width: 767px) {
	.intro .text.show-mob {
		display: none;
    position: relative;
    top: unset;
    left: unset;
    transform: unset;
    max-width: 340px;
    margin: 0 auto 25px;
	}
	.intro .text .title,
	.intro .text .subtitle {
/*		color: var(--black);*/
	}
	.intro .text .title {
		font-size: 22px;
		margin-bottom: 14px;
	}
	.intro .text .btn {
		width: 100%;
	}
	.intro .text.hide-mob {
/*		display: none;*/
		max-width: 320px;
	}
}
.intro .calc {
	position: absolute;
	top: 10px;
	right: 30px;
	width: 445px;
	height: auto;
	padding: 36px 48px;
	background: var(--white);
	border: 1px solid var(--gray);
	border-radius: 15px;
	box-shadow: 0 -6px 15px rgba(0, 0, 0, .05);
	z-index: 10;
}
.intro .calc .btn-solid {
	width: 100%;
	margin-top: 24px;
}
@media (max-width: 1200px) {
	.intro .calc {
		width: 400px;
	}
}
@media (max-width: 767px) {
	.intro {
		padding-top: 86px;
	}
	.intro .title {
		text-align: center;
	}
	.intro .title br {
		display: none;
	}
	.intro .banner {
		height: 500px;
	}
	.intro .banner img {
		object-position: 42%;
	}
	.intro .calc {
		position: relative;
    width: 100%;
    padding: 26px 20px;
    top: unset;
    right: unset;
    margin: -30px 15px 0 15px;
	}
}
/* ------------------------------------------------------------- *
 * Range Ssiders
/* ------------------------------------------------------------- */
.slider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 12px 0;
}
.slider-container .btn {
	position: relative;
    width: 10px;
    height: 10px;
    padding: 0;
    text-align: center;
    background: transparent;
    cursor: pointer;
    border-radius: 0;
    color: var(--yellow-dark);
    user-select: none;
    transition: all .2s linear;
}
.slider-container .btn-minus span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 2px;
	background: var(--yellow-dark);
}
.slider-container .btn-plus span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 2px;
	background: var(--yellow-dark);
}
.slider-container .btn:hover {
	transform: scale(1.15);
}
.slider-container .btn-plus span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(90deg);
}
.slider-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.slider-title .title {
	font-size: 15px;
	font-weight: 600;
	margin: 0;
}
.slider-title .output {
	font-size: 18px;
	font-weight: 600;
}
.slider-output {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.slider-output li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.slider-output li p {
	margin: 0;
	font-size: 14px;
}
.slider-output li span {
	font-size: 14px;
	font-weight: 500;
}
/* SLIDER */
.slider-container .irs--round {
	width: 100%;
    height: 2px;
}
.slider-container .irs-line{
    height: 2px;
    background: #E3E5E7;
    border-radius: 57px;
    top: 0px;
}
.slider-container .irs-single{
    display: none;
}
.slider-container .irs-bar{
    height: 2px;
    background: var(--yellow);
    top: 0px;
}
.slider-container .irs-bar--single{
    border-radius: 57px 0 0 57px;
}
.slider-container .irs-handle {
    background: var(--yellow);
    box-shadow: none;
    border: 0;
    border-radius: 100px;
    top: -6.5px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.slider-container .irs-handle:hover {
	background: var(--yellow);
}
.slider-container .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;
}
.slider-container .irs-handle:after {
	content: '';
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background: rgb(241 229 153 / 50%);
    z-index: -1;
}
.slider-minmax {
	display: flex;
	justify-content: space-between;
	margin-bottom: ;
}
.slider-minmax span {
	font-size: 12px;
	opacity: .7;
}
/* ------------------------------------------------------------- *
 * Section Features
/* ------------------------------------------------------------- */
.features {
	padding-bottom: 30px;
}
.features .row {}
.features .features-block {
	padding: 32px 24px;
	background: var(--gray);
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	flex-basis: calc((100% / 4) - 20px);
	gap: 36px;
	border-radius: 15px;
}
.features .features-block .ico {
	width: 48px;
	height: 48px;
}
.features .features-block .title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 12px;
}
.features .features-block .text {
	font-size: 15px;
	text-align: left;
}
/* ------------------------------------------------------------- *
 * Section Benefits
/* ------------------------------------------------------------- */
.benefits .row {
	gap: 20px;
}
.benefits .benefits-block {
	padding: 32px 24px;
	background: var(--gray);
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-basis: 300px;
	border-radius: 15px;
	height: 400px;
	gap: 36px;
	background-color: var(--gray);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: background-size .2s linear;
}
.benefits .benefits-block.large {
	flex-basis: calc((100% - 600px) - 40px);
}
.benefits .benefits-block.bg1 {
	background-image: url('../images/bg/bg-features-01.png');
}
.benefits .benefits-block.bg2 {
	background-image: url('../images/bg/bg-features-02.png');
}
.benefits .benefits-block.bg3 {
	background-image: url('../images/bg/bg-features-03.png');
}
.benefits .benefits-block.bg2 {}
.benefits .benefits-block.bg3 {}
.benefits .benefits-block .number {
	font-size: 14px;
	font-weight: 400;
}
.benefits .benefits-block .heading {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 24px;
}
.benefits .benefits-block .subheading {
	font-size: 15px;
	text-align: left;
}

/* ------------------------------------------------------------- *
 * Section About
/* ------------------------------------------------------------- */
.about .row .col {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	flex-basis: calc((100% / 2) - 20px);
}
.about .row .col.banner {
	max-width: 400px;
}
.section-about-title{
  margin-bottom: 5rem;
}
.dots-image{
  display: inline-block;
  position: relative;
}
.dots-image img{
  display: block;
  position: relative;
  z-index: 1;
}
.dots-image .dots{
  position: absolute;
  left:-20%;
  bottom: -15%;
  width: 101%;
  height: 57.2%;
  background:url(../images/dots.png) 0 0 repeat;
}
.experience-box{
  position: relative;
  white-space:nowrap;
  margin:6rem 0;
}
@media (min-width: 992px){
  .experience-box{
    margin-top: 5rem;
  }
}

@media (min-width: 1200px){
  .experience-box{
    margin-top: 12.2rem;
  }
}
.experience-border{
  display: inline-block;
  vertical-align: middle;
  width: 12.15rem;
  height: 12.15rem;
  border:0.357rem solid #cee002;
}
.experience-content{
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: -8rem;
  top:0.2rem;
}
.experience-number{
  display: inline-block;
  vertical-align: middle;
  font-size: 7.142rem;
  line-height: 1;
  font-weight: 600;
  color: #000;
}
.experience-info{
  display: inline-block;
  vertical-align: middle;
  margin:-1rem 0 0 0.8rem;
  font-size: 1.57rem;
  line-height: 1.181;
  color: #000;
}
@media (max-width: 767px) {
	.about .row .col {
		flex-basis: 100%;
		width: 100%;
	}
	.experience-box {
		display: none;
	}
	.experience-border {
		width: 7rem;
		height: 7rem;
	}
}
/* ------------------------------------------------------------- *
 * Section Mortgage
/* ------------------------------------------------------------- */
.mortgage .row {
	gap: 20px;
}
.mortgage .block {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 32px 24px 32px 24px; 
	background-color: var(--gray);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 15px;
	overflow: hidden;
	transition: background-size .2s linear;
	flex-basis: 425px;
	height: 311px;
}
.mortgage .block.block-lg {
	flex-basis: calc((100% - 425px) - 20px);
} 
.mortgage .block .backdrop {
	position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: .6;
  transition: opacity .2s;
}
.mortgage .block:hover .backdrop {
	opacity: 1;
}
.mortgage .block .heading {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 14px;
	color: var(--white);
	z-index: 10;
}
.mortgage .block .text {
	position: relative;
	font-size: 15px;
	margin-bottom: 14px;
	color: var(--white);
	z-index: 10;
}
.mortgage .block .btn {
	position: relative;
	background-color: var(--yellow);
	color: var(--black);
	z-index: 10;
	cursor: pointer;
}
.mortgage .block .btn img {
	width: 18px;
}
/*.mortgage .block:hover {
	background-size: 103%;
}*/

.mortgage .block.bg1 {
	background-image: url('../images/bg/mortgage-01.png');
}
.mortgage .block.bg2 {
	background-image: url('../images/bg/mortgage-02.png');
}
.mortgage .block.bg3 {
	background-image: url('../images/bg/mortgage-03.png');
}
.mortgage .block.bg4 {
	background-image: url('../images/bg/mortgage-04.png');
}
/* ------------------------------------------------------------- *
 * Estimate
/* ------------------------------------------------------------- */
.estimate-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 100px;
	background: var(--gray);
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
}
.estimate-block .banner {
	max-width: 440px;
}
.estimate-block .calc {
	width: 445px;
	height: auto;
	padding: 36px 48px;
	background: var(--white);
	border: 3px solid var(--gray);
	border-radius: 15px;
	box-shadow: 0 -6px 15px rgba(0, 0, 0, .05);
	z-index: 10;
}
.estimate-block .calc .btn-solid {
	width: 100%;
	margin-top: 24px;
}
.estimate-block .calc .small-text {
	font-size: 12px;
	text-align: center;
	opacity: .7;
	margin-top: 16px;
}
@media (max-width: 1200px) {
	.benefits .benefits-block,
	.benefits .benefits-block.large {
	 	flex-basis: calc((100% / 3) - 20px);
	}
	.benefits .benefits-block.bg1,
	.benefits .benefits-block.bg2 {
		background-position: 90% 0%;
	    background-size: 100%;
	}
	.benefits .benefits-block.bg3 {
	    background-position: 90% 0%;
	    background-size: 140%;
	}
	.estimate-block {
		padding: 60px;
	}
	.estimate-block .banner,
	.estimate-block .calc {
		width: 400px;
	}
}
@media (max-width: 992px) {
	.features .row {
		gap: 20px;
	}
	.features .features-block {
		flex-basis: calc((100% / 2) - 20px);
		flex-grow: 1;
	}
	.estimate-block {
        padding: 60px 30px;
        gap: 20px;
    }
    .estimate-block .banner {
    	width: 300px;
    }
    .estimate-block form {
    	width: 100%;
    }
}
@media (max-width: 767px) {
	.features {
		padding-bottom: 0;
	}
	.features .row {
		gap: 15px;
	}
	.features .features-block {
		padding: 20px 15px;
		flex-basis: calc((100% / 2) - 15px);
	}
	.features .features-block .text {
		font-size: 12px;
	}
	.benefits,
	.mortgage {
		padding-bottom: 0;
	}
	.benefits .benefits-block {
		padding: 30px 15px;
		flex-basis: 100%!important;
		height: 280px;
	}
	.benefits .benefits-block.bg1,
	.benefits .benefits-block.bg2 {
		background-position: 100% 0%;
		background-size: 55%;
	}
	.benefits .benefits-block.bg3 {
		background-size: 83%;
		background-position: 100% 0%;
	}
	.benefits .benefits-block .heading {
		margin-bottom: 16px;
		font-size: 16px;
	}
	.benefits .benefits-block .subheading {
		font-size: 14px;
	}
	.benefits .benefits-block .subheading br {
		display: none;
	}
	.mortgage .row,
	.benefits .row {
		gap: 15px;
	}
	.mortgage .block {
		padding: 30px 15px;
		flex-basis: 100%!important;
		height: 300px;
	}
	.mortgage .block .heading {
		margin-bottom: 18px;
	}
	.mortgage .block .text {
		font-size: 12px;
	}
	.mortgage .block.bg2 {
		background-position: 20% 50%;
	}
	.estimate-block {
		position: relative;
    	padding: 100px 15px 15px 15px;
		flex-direction: column;
		overflow: unset;
	}
	.estimate-block .banner {
        width: 150px;
        position: absolute;
        top: -50px;
        right: 5px;
    }
    .estimate-block .calc {
    	padding: 26px 20px;
    	width: 100%;
    }
}
/* ------------------------------------------------------------- *
 * Projetcs
/* ------------------------------------------------------------- */
.projects-wrapper {
	position: relative;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.project-grid .slick-slide {
  margin: 0 5px; /* половина от желаемого gap */
}

.project-grid {
  margin: 0 -5px; /* компенсация внешнего отступа */
}
.projects-header {
	display: flex;
	justify-content:
	space-between;
	align-items: center;
	width: 100%;
}
.custom-arrows {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.custom-arrows button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
  background: var(--gray);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-size: 24px;
  cursor: pointer;
  transition: all .2s;
}
.custom-arrows button svg {
	width: 22px;
	height: 22px;
}
.custom-arrows button.prev-projects {
	position: absolute;
	top: 50%;
	left: -30px;
	transform: translateY(-50%);
	z-index: 10;
}
.custom-arrows button.next-projects {
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	z-index: 10;
}
.custom-arrows button:hover {
	background: var(--yellow);
}
.custom-arrows button:focus {
  outline: none;
}
.project {
	position: relative;
  cursor: pointer;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.project:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.project img {
  max-width: 100%;
  border-radius: 8px;
}
.project h3 {
	margin-top: 16px;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}
.project-hover {
	position: absolute;
	z-index: 2;
	left: 0;
	top:0;
	width: 100.1%;
	height: 100%;
	padding: 30px 16px;
	-webkit-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
	display: block;
	pointer-events: none;
}
.project-title{
	color: #fff;
	margin:0;
}

.project-hover .project-title{
	position: absolute;
	bottom: 5.5rem;
}

.project-description{
	opacity: 0;
	font-size: 14px;
	margin-top:12%;
	line-height: 1.71;
	color:#333333;
	-webkit-transform: translateX(-1rem);
	-ms-transform: translateX(-1rem);
	-o-transform: translateX(-1rem);
	transform: translateY(-1rem);
}
.project:hover .project-hover{
  	background-color: rgb(255 216 95 / 95%);
}
.project:hover .project-hover .project-title{
	position: relative;
	color: #000;
	bottom:2rem;
	-webkit-transform: translateY(2rem);
	-ms-transform: translateY(2rem);
	-o-transform: translateY(2rem);
	transform: translateY(2rem);
	-webkit-transition: transform 0.5s ease;
	-o-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
  
}
.project:hover .project-hover .project-description{
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateY(0);
	-webkit-transition: all 0.4s 0.2s ease;
	-o-transition: all 0.4s 0.2s ease;
	transition: all 0.4s 0.2s ease;
}
.project:hover .link-arrow{
	color: #000;
}

.project:focus,
.project:focus-visible,
.slick-slide:focus,
.slick-slide:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
@media (max-width: 1200px) {
	.custom-arrows button {
		width: 50px;
		height: 50px;
	}
	.custom-arrows button.prev-projects {
		left: -20px;
	}
	.custom-arrows button.next-projects {
		right: -20px;
	}
}
@media (max-width: 767px) {
	.custom-arrows {
		gap: 6px;
	}
}
 /* ------------------------------------------------------------- *
 * Contact
/* ------------------------------------------------------------- */
.contact .banner {
	display: flex;
	border-radius: 15px;
	height: 400px;
	overflow: hidden;
}
.contact .banner {
	object-fit: cover;
}
.contact-wrap {
	position: relative;
	padding-top: 165px;
}
.contact form {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99;
	width: 630px;
	height: auto;
	padding: 36px 48px;
	background: var(--white);
	border: 1px solid var(--gray);
	border-radius: 15px;
	box-shadow: 0 -6px 15px rgba(0, 0, 0, .05);
}
form input {
	height: 48px;
	padding: 10px 16px;
	background: var(--gray);
	border: 1px solid #E3E5E7;
	border-radius: 6px;
	color: var(--black);
	width: 100%;
}
form label {
	font-size: 14px;
	font-weight: 400;
	color: var(--black);
}
.input-holder {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 8px;
	margin-bottom: 18px;
}
.input-group {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 26px;
}
.input-group .input-holder {
	flex-basis: calc((100% / 2) - 26px);
	flex-grow: 1;
}
.input-error {
	font-size: 12px;
	color: red;
}
input:placeholder {
	color: var(--black);
	opacity: .7;
}
input:placeholder::-webkit-input-placeholder {
	color: var(--black);
	opacity: .7;
}
input:placeholder::-moz-placeholder {
	color: var(--black);
	opacity: .7;
}
input:placeholder:-ms-input-placeholder {
	color: var(--black);
	opacity: .7;
}
/* ------------------------------------------------------------- *
 * CheckBox
/* ------------------------------------------------------------- */
.checkbox-group {
	display: inline-block;
	vertical-align: top;
	text-align: left;
}
.checkbox {
	display: block;
	position: relative;
	padding-left: 30px;
	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;
  	visibility: hidden;
}
.checkbox a {
	color: var(--yellow);
	text-decoration: underline;
}
.checkbox-indicator {
  	position: absolute;
  	top: 2px;
  	left: 0;
  	height: 20px;
  	width: 20px;
  	border: 1px solid #E3E5E7;
  	border-radius: 4px;
}
.checkbox:hover input ~ .checkbox-indicator,
.checkbox input:focus ~ .checkbox-indicator {
  	background: transparent;
}
.checkbox input:checked ~ .checkbox-indicator {
  	background: var(--yellow);
  	border-color: var(--yellow);
}
.checkbox:hover input:not([disabled]):checked ~ .checkbox-indicator,
.checkbox input:checked:focus ~ .checkbox-indicator {
  	background: var(--yellow);
}
.checkbox input:disabled ~ .checkbox-indicator {
  	background: var(--yellow);
    border: none;
  	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: 7px;
    top: 2.7px;
    width: 5px;
    height: 11px;
	border: solid var(--black);
	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;
}

.buttons-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}
.buttons-group .checkbox-holder,
.buttons-group .btn-solid {
	flex-basis: calc((100% / 2) - 26px);
	flex-grow: 1;
}
@media (max-width: 767px) {
	.contact {
		padding: 0;
	}
	.contact form {
		width: 100%;
		padding: 26px 20px;
	}
	.contact-wrap {
    	padding-top: 355px;
	}
	.contact .banner {
		height: 200px;
	}
	form input {
		font-size: 15px;
	}
	.input-group {
		gap: 0;
	}
	.input-group .input-holder {
		flex-basis: 100%
	}
	.input-holder {
		margin-bottom: 15px;
	}
	.buttons-group {
		flex-direction: column;
	}
	.buttons-group .checkbox-holder,
	.buttons-group .btn-solid {
		flex-basis: 100%;
	}
	.buttons-group .btn-solid {
		width: 100%;
	}
}
/* ------------------------------------------------------------- *
 * Section Steps
/* ------------------------------------------------------------- */
.steps .row {}
.steps .steps-block {
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-basis: calc((100% / 3) - 80px);
	gap: 24px;
	border: 3px solid var(--gray);
	border-radius: 15px;
}
.steps .steps-block .icon {
	width: 84px;
	height: 84px;
	margin: 0 auto;
}
.steps .steps-block .text {
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}
/* ------------------------------------------------------------- *
 * Accordion
/* ------------------------------------------------------------- */
.faq .row {
	max-width: 1050px;
	margin: 0 auto;
}
.accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accordion-item {
    padding: 20px 16px;
    border-radius: 12px;
    background: var(--gray);
    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(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
    transition: all .2s ease-in;
}
.accordion-header .accordion-title span {
/*    font-weight: 600;*/
}
.accordion-header .arrow-accord {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 100px;
    transition: all .2s;
}
.accordion-header .arrow-accord span {
    width: 16px;
    height: 1px;
    background: var(--black);
    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 {
	background: var(--yellow);
}
.accordion-item.active .arrow-accord span:nth-child(2) {
    transform: translate(-50%,-50%) rotate(180deg);
}

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

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

}
/* ------------------------------------------------------------- *
 * Home SEO Text
/* ------------------------------------------------------------- */
.seo {
	border-top: 1px solid #E3E5E7;
	max-width: 1050px;
	margin: 0 auto;
}
.seo .seo-text h1 {
	font-size: 28px;
}
.seo .seo-text h2 {
	font-size: 22px;
}
.seo .seo-text strong {
	font-weight: 600;
}
.seo .seo-text p,
.seo .seo-text ol li {
	font-weight: 300;
}
@media (max-width: 1200px) {
	.seo .seo-text h1 {
		font-size: 24px;
	}
	.seo .seo-text h2 {
		font-size: 20px;
	}
}
@media (max-width: 992px) {
	.seo .seo-text h1 {
		font-size: 22px;
	}
	.seo .seo-text h2 {
		font-size: 18px;
	}
	.seo .seo-text ol {
		padding-left: 26px;
	}
	.seo .seo-text p,
	.seo .seo-text ol li {
		font-size: 14px;
	}
	.seo .seo-text ol li {
		margin-bottom: 6px;
	}
	.seo .seo-text ol li:last-child {
		margin-bottom: 0;
	}
	.seo .seo-text h1,
	.seo .seo-text h2,
	.seo .seo-text ol,
	.seo .seo-text p {
		margin-bottom: 22px;
	}
	}
}
@media (max-width: 767px) {
	.seo .seo-text h1 {
		font-size: 20px;
	}
	.seo .seo-text h2 {
		font-size: 18px;
	}
	.seo .seo-text ol,
	.seo .seo-text ul {
		padding-left: 22px;
	}
	.seo .seo-text p:last-child {
		margin-bottom: 0;
	}
}
/* ------------------------------------------------------------- *
 * Footer
/* ------------------------------------------------------------- */
.footer {
	padding-top: 80px;
	background: var(--black);
}
.footer .footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .footer-top .logo {
	display: flex;
	height: 45px;
}
.footer .footer-top .footer-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
}
.footer .footer-top .footer-nav li {}
.footer .footer-top .footer-nav li a {
	color: var(--white);
	font-size: 14px;
}
.footer .footer-top .footer-nav li a:hover {
	color: var(--yellow-dark);
}
.footer .footer-top .footer-contact {
	display: flex;
	align-items: center;
	gap: 6px;
}
.footer .footer-top .footer-contact img {
	width: 18px;
	transition: transform 0.3s ease;
}
.footer .footer-top .footer-contact:hover img {
	transform: scale(1.1);
}
.footer .footer-top .footer-contact span {
	color: var(--white);
	font-size: 18px;
}

.footer .footer-text {
	padding: 60px 0;
}
.footer .footer-text p {
	font-size: 12px;
	color: var(--white);
	opacity: .7;
}

.footer .footer-bottom {
	padding: 32px 0;
	border-top: 1px solid rgba(255, 255, 255, .2);
}
.footer .footer-bottom .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer .footer-bottom .copyright {
	color: var(--white);
	font-size: 12px;
}
.footer .footer-bottom .legal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.footer .footer-bottom .legal a {
	color: var(--white);
	font-size: 12px;
}

.footer-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}
.icon-social {
	display: flex;
	width: 20px;
	height: 20px;
}

.icon-social img {
	transition: transform 0.3s ease;
}
.icon-social:hover img {
	transform: scale(1.1);
}

@media (max-width: 1200px) {
	.footer .footer-top .logo {
		max-width: 115px;
		height: auto;
	}
	.footer .footer-top .footer-nav li a {
		font-size: 12px;
	}
	.footer .footer-top .footer-contact span {
		font-size: 15px;
	}
}
@media (max-width: 992px) {
	.footer {
		padding-top: 50px;
	}
	.footer .footer-top .footer-nav {
		gap: 16px;
	}
}
@media (max-width: 767px) {
	.footer .footer-top,
	.footer .footer-top .footer-nav {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	.footer .footer-top {
		gap: 34px;
	}
	.footer .footer-top .logo {
		max-width: 135px;
	}
	.footer .footer-text {
		padding: 50px 0;
	}
	.footer .footer-text p {
		font-size: 11px;
		text-align: center;
	}
	.footer .footer-text p:last-child {
		margin-bottom: 0;
	}
	.footer .footer-bottom .container {
		justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
		gap: 16px;
	}
	.footer .footer-bottom .copyright {
		opacity: .7;
	}
	
}


.legal .content h1 {
	margin-bottom: 30px;
}
.legal .content h2 {
	margin-bottom: 20px;
	font-size: 20px;
}
.legal .content p,
.legal .content ul  {
	margin: 0 0 16px;
}
.legal .content ul li {
	list-style: disc;
}
.legal .content ul {
	margin-left: 16px;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@media (max-width: 767px) {
	.whatsapp-float {
		width: 55px;
		height: 55px;
		right: 15px;
	}
	.whatsapp-float img {
		width: 24px;
		height: 24px;
	}
}


.slick-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.8);
    top: 0; left: 0; width: 100%; height: 100%;
    align-items: center;
    justify-content: center;
  }
  .slick-wrapper {
    max-width: 90%;
    max-height: 90%;
  }
  .slick-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  .slick-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
  }