@font-face {
    font-family: 'decogregular';
    src: url('../fonts/decog-webfont.eot');
    src: url('../fonts/decog-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/decog-webfont.woff2') format('woff2'),
         url('../fonts/decog-webfont.woff') format('woff'),
         url('../fonts/decog-webfont.ttf') format('truetype'),
         url('../fonts/decog-webfont.svg#decogregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
/*****COMMON STYLE*****/
body, input, select, textarea,
h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", serif;
	font-weight: normal;
	font-style: normal;
    margin: 0;
    padding: 0;
    color: #404040;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
.yana_text{
    font-family: 'decogregular';
}
ul, li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a {
    text-decoration: none;    
    margin: 0;
    padding: 0;
}
* {
    box-sizing: border-box;
}
img {
    margin: 0;
    padding: 0;
    max-width: 100%;
}
.container {
    max-width: 1700px;
    padding: 0 50px;
    margin: 0 auto;
}
.narrow_container {
    max-width: 1100px;
}
.button {
    border-radius: 50px;
    font-size: 16px;
    line-height: 22px;
    padding: 15px 36px;
    border: 2px solid;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.button:before {
    transition-duration: 800ms;
    position: absolute;
    width: 210%;
    height: 290%;
    content: "";
    top: 162%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1;
}
.button:hover:before {
    top: -96%;
}
.btn_yellow {
    background: #FEC200;
    color: #ffffff;
    border-color: #FEC200;
}
.btn_yellow:before {
    background: #ffd240;
}
.btn_yellow:hover {
    background: transparent;
}
.btn_green {
    background: #044141;
    color: #ffffff;
    border-color: #044141;
}
.btn_green:before {
    background: #2e6767;
}
.btn_green:hover {
    background: transparent;
}




/*****CUSTOM STYLE*****/
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 10px;
}
nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.header_inner nav ul {
    display: flex;
    gap: 30px;
}
.header_inner nav ul li a {
    color: #404040;
    font-size: 18px;
    line-height: 28px;
    padding: 10px 0;
    position: relative;
}
.header_inner nav ul li a:hover {
    color: #044141;
}
.header_inner nav ul li a:after {
    content: '';
    background: #FEC200;
    width: 0;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    transition: all 0.3s ease-out;
}
.header_inner nav ul li a.active:after,
.header_inner nav ul li a:hover:after {
    width: 100%;
}
.header_inner nav ul li.secondary_menu_item{
    display: none;
}
.menu_toggle {
    position: relative;
    display:  inline-block;
    width: 35px;
    height: 25px;
    display: none;
}
.menu_toggle .toggle_icon {
    margin: 0 auto;
    position: relative;
    top: 12px;
}
.menu_toggle .toggle_icon:before, .menu_toggle .toggle_icon:after {
    position: absolute;
    content: '';
}
.menu_toggle .toggle_icon, .menu_toggle .toggle_icon:before, .menu_toggle .toggle_icon:after {
    width: 27px;
    height: 3px;
    background-color: #044141;
    display: block;
}
.menu_toggle .toggle_icon:before {
    margin-top: -8px;
}
.menu_toggle .toggle_icon:after {
    margin-top: 8px;
}
/* --- btn --- */
/* example 5 */
.menu_toggle .toggle_icon {
    -webkit-transition-duration: 0s; transition-duration: 0s;
    -webkit-transition-delay: 0.2s; transition-delay: 0.2s;
}


.menu_toggle.active .toggle_icon {
    /* barva prostredního */
    background-color: rgba(0,0,0,0.0);
    -webkit-transition-delay: 0.2s; transition-delay: 0.2s;
}

.menu_toggle .toggle_icon:before {
    -webkit-transition-property: margin, -webkit-transform; transition-property: margin, transform;
    -webkit-transition-duration: 0.2s; transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active .toggle_icon:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg); transform: rotate(45deg);
    -webkit-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}
.menu_toggle .toggle_icon:after {
    -webkit-transition-property: margin, -webkit-transform; transition-property: margin, transform;
    -webkit-transition-duration: 0.2s; transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0s; transition-delay: 0.2s, 0s;
}
.menu_toggle.active .toggle_icon:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg); transform: rotate(-45deg);
    -webkit-transition-delay: 0s, 0.2s; transition-delay: 0s, 0.2s;
}




.slideshow_banner {
    position: relative;
/*    animation: fadeUp 1s ease-out;*/
}
.slideshow_banner .mobile_media {
    display: none;
}
.slideshow_content {
    position: absolute;
    left: 0;
    top: 50%;
    padding: 60px;
    transform: translateY(-50%);
    max-width: 35%;
}
.slideshow_content h2 {
    font-size: 70px;
    line-height: 85px;
    color: #ffffff;
}
.slideshow_content h2 span {
    color: #FEC200;
}
.slideshow_content p {
    font-size: 22px;
    line-height: 36px;
    color: #fff;
}
.slideshow_content_mobile {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 20%;
}
.slideshow_content .btn_group {
    display: flex;
    align-items: center;
    gap: 20px;
}
.slideshow_content .btn_group a img {
    width: 100%;
    max-width: 180px;
}
.image_with_text_section {
    padding: 100px 0;
}
.image_with_text_rows {
    display: flex;
    align-items: center;
    padding: 0 50px;
    gap: 50px;
}
.image_with_text_rows.image_with_text_reverse {
    flex-direction: row-reverse;
}
.image_with_text__column {
    width: calc(50% - 50px* 1 / 2);
}
.image_with_text__content {
    padding: 40px;
}
.image_with_text__content .caption {
    font-size: 26px;
    line-height: 50px;
    color: #FECB25;
}
.image_with_text__content h2 {
    font-size: 50px;
    line-height: 60px;
    color: #044141;
}
.image_with_text__content .rte p {
    font-size: 18px;
    line-height: 24px;
    color: #001F1F;
}
.image_with_text__content h4 {
    font-size: 30px;
    line-height: 40px;
    color: #044141;
    margin-bottom: 10px;
}
.image_with_text__content ul {
    margin-bottom: 30px;
}
.image_with_text__content ul li {
    font-size: 18px;
    line-height: 30px;
    color: #001F1F;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}
.image_with_text__content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background: url(../images/bullet.svg) no-repeat center center;
    background-size: 22px auto;
    width: 22px;
    height: 22px;
}
.our_service_section {
    background: #FFFCF3;
    padding: 60px 0;
}
.section_header {
    text-align: center;
    margin-bottom: 40px;
}
.section_header h3 {
    font-size: 45px;
    color: #044141;
    position: relative;
    display: inline-block;
}
.section_header h3:after {
    content: '';
    background: #FEC200;
    width: 108px;
    height: 3px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    margin: 0 auto;
    transition: all 0.5s ease-out;
}
.our_service_rows {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}
.service_item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: calc(33.33% - 30px* 2 / 3);
    cursor: pointer;
}
.service_image {
    width: 100%;
    padding-bottom: 80%;
    border: 1px solid #DAE3F2;
    border-radius: 15px;
    background: #FFFFFFD9;
    position: relative;
    overflow: hidden;
}
.service_image:after {
    transition-duration: 800ms;
    position: absolute;
    width: 210%;
    height: 290%;
    content: "";
    top: 162%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: 1;
    background: linear-gradient(to right, #044141 0%, #FEC200 100%);
}
.service_item:hover .service_image:after {
    top: -96%;
}
.service_image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
    padding: 15%;
    z-index: 2; 
}
.service_item .service_info {
    text-align: center;
}
.service_title {
    font-size: 22px;
    line-height: 26px;
    color: #044141;
    font-weight: 600;
    transition: all 0.5s ease-out;
}
.service_item:hover .service_title {
    background: #044141;    
    background: linear-gradient(to right, #044141 0%, #FEC200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service_item .service_info p {
    margin: 5px 0 0;
    color: #044141;
}
.get_started_rows {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 10vw;
}
.get_started_item {
    max-width: 245px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.get_started_item .get_icon {
    width: 120px;
    border-radius: 27px;
    background: #fff;
    padding: 15px;
    margin: 0 auto;
    position: relative;
}
.get_started_inner {
    border-radius: 30px;
    overflow: hidden;
    background: url(../images/get_started_bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 60px 0;
}
.get_started_inner .section_header h3 {
    color: #fff;
}
.get_content {
    padding: 20px 0;
    text-align: left;
}
.get_content h5 {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    min-height: 52px;
}
.get_content ul{
    margin: 10px 0 0;
    padding-left: 18px;
}
.get_content ul li {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    list-style-type: disclosure-closed;
}
.get_content ul li::marker {
  color: #FECB25;
}
.get_started_item:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 60px;
    width: 170%;
    height: 0;
    border: 1px dashed #ffffff63;
    z-index: 0;
}
.get_started_item:last-child:before {
    display: none;
}
.image_with_text__content ul li .title {
    font-size: 22px;
    line-height: 30px;
    color: #044141;
}
.request_yana_section {
    padding: 100px 0;
}
.request_yana_section .image_with_text__content .rte {
    margin-bottom: 40px;
}
.request_yana_section .image_with_text__content ul li {
    padding-left: 45px;
    max-width: 420px;
    margin-bottom: 30px;
}
.request_yana_section .image_with_text__content ul li:last-child {
    margin-bottom: 0;
}
.request_yana_section .image_with_text__content ul li:before {
    background: url(../images/checklist.svg) no-repeat center center;
    background-size: 30px auto;
    width: 30px;
    height: 30px;
}
.request_yana_section .image_with_text__content ul li .title {
    font-size: 22px;
    line-height: 30px;
    color: #044141;
}
.request_yana_section .image_with_text__content ul li p {
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}
.drive_and_earn_money {
    padding-top: 50px;
}
.drive_and_earn_money .image_with_text__content .rte {
    margin-bottom: 40px;
    max-width: 540px;
}



footer {
    background: url(../images/footer_bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 170px 0 30px;
}
.footer_rows {
    display: flex;
    gap: 30px;
}
.footer_column {
    width: calc(25% - 30px* 3 / 4);
}
.footer_column .footer_title {
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer_column .footer_title:after {
    content: '';
    width: 50px;
    height: 3px;
    background: #FECB24;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}
.footer_column ul li a {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 34px;
    display: flex;
    align-items: center;
}
.payment_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    align-items: center;
}
.payment_items .card img {
    max-height: 30px;
    display: block; 
}
.payment_items .card {
    background: #fff;
    padding: 2px 10px;
    border-radius: 6px;
}
.footer_copyright {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    border-top: 1px solid hsl(0deg 0% 100% / 25%);
    padding-top: 30px;
    margin-top: 60px;
}
.footer_copyright .copyright_text {
    color: rgb(255 255 255 / 50%);
    font-size: 16px;
    line-height: 20px;
}
.footer_bottom_menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.footer_bottom_menu ul li a {
    color: #fff;
    font-size: 16px;
}
.footer_bottom_menu ul li a:hover {
    color: #FECB24;
}
.footer_bottom_menu ul li {
    position: relative;
}
.footer_bottom_menu ul li+li:before {
    position: absolute;
    left: -17px;
    top: 1px;
    width: 1px;
    height: 20px;
    background: #fff;
    content: '';
}
.footer_column ul li a:before {
    content: '';
    background: url(../images/footer_arrow.svg) no-repeat center center;
    background-size: 15px auto;
    width: 15px;
    height: 15px;
    display: inline-block;
    margin-right: 5px;
}
.footer_column ul li a:hover {
    color: #FECB25;
}
.get_the_yana {
    padding-top: 70px;
}
.get_the_yana_wrap {
    background: #FECB24;
    border-radius: 27px;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    max-width: 1300px;
    margin: 0 auto -90px;
}
.get_the_yana_buttons {
    max-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: -50px;
}
.get_the_yana_head h3 {
    font-size: 50px;
    line-height: 70px;
    color: #004040;
    font-weight: 800;
}
.get_the_yana_head p {
    margin: 10px 0 0;
    font-size: 25px;
    line-height: 25px;
    color: #004040;
}
.get_the_yana_mobile {
    max-width: 230px;
    position: relative;
    width: 100%;
    padding-bottom: 130px;
}
.get_the_yana_mobile img {
    position: absolute;
    bottom: -26px;
    right: 0;
    width: 100%;
}
.get_the_yana_apps {
    display: flex;
    align-items: center;
    gap:10px;
}
.get_the_yana_apps > img {
    max-width: 85px;
    display: block;
}
.page-content {
    padding: 50px 0 70px;
}
.page__inner header {
    box-shadow: 0 0 10px #d7d7d7;
    margin-bottom: 0;
}
.page_title {
    margin-bottom: 40px;
}
.page_title h1 {
    font-size: 45px;
    padding-bottom: 10px;
    position: relative;
    color: #044141;
}
.page_title h1:after {
    content: '';
    width: 100px;
    height: 3px;
    background: #FECB24;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 10px;
}
.page-content .rte {
    padding-left: 45px;
}
.page-content h3 {
    font-size: 22px;
    line-height: 30px;
    color: #044141;
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
}
.page-content h3:before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0px;
    background: url(../images/checklist.svg) no-repeat center center;
    background-size: 30px auto;
    width: 30px;
    height: 30px;
}
.page-content h4{
    font-size: 20px;
    line-height: 30px;
    color: #044141;
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px;
    padding-left: 35px;
}
.page-content h4:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../images/bullet.svg) no-repeat center center;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
}
.page-content p {
    margin: 0 0 15px;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
}
.page-content ul{
    margin: 20px 0;
}
.page-content ul li {
    font-size: 16px;
    line-height: 30px;
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    text-align: justify;
}
.page-content ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    background: url(../images/footer_arrow.svg) no-repeat center center;
    background-size: 22px auto;
    width: 22px;
    height: 22px;
}
.page-content a {
    color: #FECB25;
    text-decoration: underline;
    text-decoration-color: #FECB25;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}
.page-content a:hover{
    color: #044141;
}
.form-wrapper{
    background-color: #ffffff;
    width: 100%;
    max-width: 800px;
    padding: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: fadeUp 1s ease-out;
    position: relative;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}
.form-wrapper .form-inner {
    width: 100%;
    position: relative;
    z-index: 1;
}
.form-wrapper::before, .form-wrapper::after {
  position: absolute;
  content: "";
}
.form-wrapper::before {
  width: 200%;
  height: 200%;
  background-image: linear-gradient(180deg, #044141 0%, #FEC200 100%);
  animation: rotate_border 6s linear infinite;
}
.form-wrapper::after {
  background-color: #ffffff;
  inset: 8px;
  border-radius: 12px;
}
.form_title{
    font-size: 34px;
    text-align: center;
    color: #044141;
    margin-bottom: 10px;
}
.subtitle{
    text-align: center;
    margin-bottom: 40px !important;
}
.contact-form{
    width: 100%;
}

.form-row{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.form-column{
    flex: 1;
    min-width: 250px;
}
.form-label{
    display: block;
    color: #044141;
    font-size: 16px;
    margin-bottom: 5px;
}
.form-input,
.form-textarea{
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: border-color 0.3s, transform 0.3s;
    font-size: 14px;
}
.form-input:focus,
.form-textarea:focus{
    border-color: #044141;
    outline: none;
    transform: scale(1.02);
}
.form-textarea{
    resize: none; 
}
button.submit-button {
    min-width: 250px;
}
.form-wrapper .page_title {
    margin-bottom: 20px;
    text-align: center;
}
.form-wrapper .page_title h1:after {
    right: 0;
    margin: 0 auto;
}
.form-wrapper p{
    text-align: center;
}
.success__alert {
    text-align: center;
    padding: 50px 0;
}
.success__alert h3:before {
    display: none !important;
}
.success__alert h3 {
    font-size: 30px;
    font-weight: 500;
}
.success__alert .rte {
    padding: 0;
}
.success__alert .rte p {
    margin: 0;
}
.success__alert .rte a {
    margin-top: 30px;
    color: #fff;
    text-decoration: none;
}
.contact__details {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 50px auto;
    gap: 30px;
    align-items: flex-start;
}
.contact__item {
    width: calc(33.33% - 30px* 2 / 3);
    text-align: center;
}
.contact__item .contact_icon {
    max-width: 100px;
    display: block;
    margin: 0 auto 20px;
}
.contact__item h6 {
    font-size: 25px;
    color: #044141;
    margin-bottom: 10px;
}
.contact__item p {
    text-align: center !important;
    font-size: 18px !important;
}
.contact__item p a{
    color: #404040;
}
.comingsoon_modal {
    border-radius: 8px;
    padding: 45px 100px;
    width: 550px;
    text-align: center;
}
.comingsoon_modal h2 {
    font-size: 30px;
    line-height: 44px;
    color: #044141;
    margin-top: 10px;    
}
lottie-player {
    margin: 0 auto;
    max-width: 80%;
}
.comingsoon_modal, 
.comingsoon_modal h2,
.comingsoon_modal img {
    transform: translateY(-50px);
    opacity: 0;     
    transition-property: transform, opacity;
    transition-duration: .7s;
}
.fancybox-slide--current .comingsoon_modal,
.fancybox-slide--current .comingsoon_modal h2,
.fancybox-slide--current .comingsoon_modal img {
  transform: translateY(0);
  opacity: 1;
}
.fancybox-bg {
    background: #044141;
}
.safety_item {
    border: 1px dashed #ccc;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}
.safety_icon {
    max-width: 100px;
}
.safety_content h5 {
    font-size: 22px;
    line-height: 30px;
    color: #044141;
    position: relative;
    margin-bottom: 10px;
} 
.page-content ul > ul {
    padding-left: 30px;
}
.page-content ul > ul li:before {
    background: url(../images/dot-half.svg) no-repeat center center;
    background-size: 22px auto;
}




@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes rotate_border {
  0% {
    transform: rotate(0deg);
  }
  0% {
    transform: rotate(360deg);
  }
}


