@font-face{
    font-family: "helvetica-thin";
    src: url(../fonts/HelveticaNeueThin.otf);
}

@font-face{
    font-family: "helvetica-light";
    src: url(../fonts/HelveticaNeueLight.otf);
}

@font-face{
    font-family: "helvetica-regular";
    src: url(../fonts/HelveticaNeueRoman.otf);
}

@font-face{
    font-family: "helvetica-medium";
    src: url(../fonts/HelveticaNeueMedium.otf);
}

@font-face{
    font-family: "helvetica-heavy";
    src: url(../fonts/HelveticaNeueHeavy.otf);
}

@font-face{
    font-family: "helvetica-bold";
    src: url(../fonts/HelveticaNeueBold.otf);
}

@font-face{
    font-family: "roboto-light";
    src: url(../fonts/Roboto-Light.ttf);
}

@font-face{
    font-family: "roboto-regular";
    src: url(../fonts/Roboto-Regular.ttf);
}

@font-face{
    font-family: "roboto-medium";
    src: url(../fonts/Roboto-Medium.ttf);
}

@font-face{
    font-family: "roboto-bold";
    src: url(../fonts/Roboto-Bold.ttf);
}

@font-face{
    font-family: "roboto-semibold";
    src: url(../fonts/Roboto-SemiBold.ttf);
}

:root{
    --dark-blue-txt-color: #252739;
    --black-txt-color: #333232;
    --title-color: #272727;
    --grey-txt-color: #b6b6c1;
    --light-grey-txt-color: #e9eaec;
    --light-grey-txt-color-2: #b6b6c1;
    --blue-gray-txt-color: #90adc6;
    --yellow-txt-color: #f8d032;
    --white-txt-color: #fff;
    --red-txt-color: red;
    --placeholder-txt-color: #818181;

    --light-grey-back-color: #e9eaec;
    --dark-blue-back-color: #252739;
    --blue-gray-back-color: #90adc6;
    --yellow-back-color: #f8d032;
    --white-back-color: #fff;
    --white-back-color-2: #f5f9fc;

    --font-size: 18px;

    --helvetica-thin: "helvetica-thin", sans-serif;
    --helvetica-light: "helvetica-light", sans-serif;
    --helvetica-regular: "helvetica-regular", sans-serif;
    --helvetica-medium: "helvetica-medium", sans-serif;
    --helvetica-heavy: "helvetica-heavy", sans-serif;
    --helvetica-bold: "helvetica-bold", sans-serif;
    --roboto-light: "roboto-light", sans-serif;
    --roboto-regular: "roboto-regular", sans-serif;
    --roboto-medium: "roboto-medium", sans-serif;
    --roboto-bold: "roboto-bold", sans-serif;
    --roboto-semibold: "roboto-semibold", sans-serif;
}

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

html, body{
    overflow-x: hidden;
}

html{
    font-size: var(--font-size);
    scroll-behavior: smooth;
}

body{
    margin: 0;
    font-size: inherit;
    background-color: var(--white-back-color);
    color: var(--black-txt-color);
    font-family: var(--helvetica-light);
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--helvetica-medium);
    color: var(--title-color);
}

h1, h2, h3, h4, h5, h6, p, ol, ul{
    margin: 0;
}

input, textarea, button, select, a, i, svg{
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

h1, h2, h3, h4, h5, h6, p, ul, ol, a, span, b, strong, li, i, textarea, figure, label, input, th, td{
    font-weight: 400;
}

ol, ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a{
    text-decoration: none;
}

a, button{
    color: var(--black-txt-color);
}

button{
    border: 0;
    background-color: transparent;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder{ /* za chrome, operu, safari */
    color: var(--placeholder-txt-color);
    font-size: 0.95em;
}

input::-moz-placeholder, textarea::-moz-placeholder{ /* za mozzila verzija 19+ */
    color: var(--placeholder-txt-color);
    font-size: 0.95em;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder{ /* za IE 10+ */
    color: var(--placeholder-txt-color);
    font-size: 0.95em;
}

input:-moz-placeholder, textarea:-moz-placeholder{ /* za mozzila verzija 18- */
    color: var(--placeholder-txt-color);
    font-size: 0.95em;
}

input::placeholder, textarea::placeholder{
    color: var(--placeholder-txt-color);
    font-size: 0.95em;
}

input, textarea{
    font-size: 0.95em;
    outline: 0;
    font-family: var(--helvetica-light);
    letter-spacing: 0.05em;
    color: var(--black-txt-color);
}

.helvetica-thin{
    font-family: var(--helvetica-thin);
}

.helvetica-light{
    font-family: var(--helvetica-light);
}

.helvetica-regular{
    font-family: var(--helvetica-regular);
}

.helvetica-medium{
    font-family: var(--helvetica-medium);
}

.helvetica-heavy{
    font-family: var(--helvetica-heavy);
}

.helvetica-bold{
    font-family: var(--helvetica-bold);
}

.roboto-light{
    font-family: var(--roboto-light);
}

.roboto-regular{
    font-family: var(--roboto-regular);
}

.roboto-medium{
    font-family: var(--roboto-medium);
}

.roboto-bold{
    font-family: var(--roboto-bold);
}

.roboto-semibold{
    font-family: var(--roboto-semibold);
}

.container{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.container-2{
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.row{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.8rem;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, 
.col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, 
.col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, 
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, 
.col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, 
.col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, 
.col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, 
.col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, 
.col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-place-link{
    position: relative;
    min-height: 0.5em;
    width: 100%;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

.mr-top-0-7em{
    margin-top: 0.7em;
}

.mr-top-1em{
    margin-top: 1em;
}

.mr-top-1-1em{
    margin-top: 1.1em;
}

.mr-top-1-2em{
    margin-top: 1.2em;
}

.mr-top-1-3em{
    margin-top: 1.3em;
}

.mr-top-1-4em{
    margin-top: 1.4em;
}

.mr-top-1-5em{
    margin-top: 1.5em;
}

.wrapper-title h1{
    font-size: 2.4em;
    line-height: 1.3;
}

.wrapper-title h2{
    font-size: 2em;
    line-height: 1.3;
}

.wrapper-title h3{
    font-size: 1.4em;
    line-height: 1.3;
}

.wrapper-text p{
    font-size: 1em;
    margin-bottom: 1em;
    line-height: 1.6;
}

.wrapper-text p:last-child{
    margin-bottom: 0;
}

.wrapper-btn{
    display: flex;
    align-items: center;
    margin-top: 2em;
}

.wrapper-btn a, .wrapper-btn button{
    font-size: 1em;
    border-width: 0.05em;
    border-style: solid;
    padding: 0.85em 1.6em;
    border-radius: 2em;
    cursor: pointer;
    transition: all 0.5s ease;
    font-family: "helvetica-regular", sans-serif;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.05em;
}

.wrapper-btn a svg, .wrapper-btn button svg{
    margin-left: 0.8em;
    font-size: 1.1em;
}

.wrapper-img img{
    width: 100%;
    display: block;
    object-fit: cover;
}

.pointer{
    cursor: pointer;
}

.flex{
    display: flex;
}

.flex-wrap{
    display: flex;
    flex-wrap: wrap;
}

.inline-flex{
    display: inline-flex;
}

.block{
    display: block;
}

.inline-block{
    display: inline-block;
}

.inline{
    display: inline;
}

.relative{
    position: relative;
}

.absolute{
    position: absolute;
}

.fixed{
    position: fixed;
}

.align-center{
    align-items: center;
}

.align-content-center{
    align-content: center;
}

.justify-center{
    justify-content: center;
}

.justify-between{
    justify-content: space-between;
}

.justify-around{
    justify-content: space-around;
}

.space-evenly{
    justify-content: space-evenly;
}

.justify-end{
    justify-content: flex-end;
}

.direction-column{
    flex-direction: column;
}

.text-left{
    text-align: left;
}

.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}

.black-text{
    color: var(--black-txt-color);
}

.dark-blue-text{
    color: var(--dark-blue-txt-color);
}

.grey-text{
    color: var(--grey-txt-color);
}

.light-grey-text{
    color: var(--light-grey-txt-color);
}

.light-grey-text-2{
    color: var(--light-grey-txt-color-2);
}

.blue-gray-text{
    color: var(--blue-gray-txt-color);
}

.yellow-text{
    color: var(--yellow-txt-color);
}

.white-text{
    color: var(--white-txt-color);
}

.red-text{
    color: var(--red-txt-color);
}

.white-back{
    background-color: var(--white-back-color);
}

.white-back-2{
    background-color: var(--white-back-color-2);
}

.dark-black-text{
    color: var(--dark-black-txt-color);
}

.dark-blue-back{
    background-color: var(--dark-blue-back-color);
}

.light-grey-back{
    background-color: var(--light-grey-back-color);
}

.blue-gray-back{
    background-color: var(--blue-gray-back-color);
}

.yellow-back{
    background-color: var(--yellow-back-color);
}

.btn.yellow-back:hover{
    background-color: var(--dark-blue-back-color);
    color: var(--white-txt-color);
    border-color: var(--dark-blue-back-color);
}

.border-yellow{
    border-color: var(--yellow-back-color);
}

.border-dark-blue{
    border-color: var(--dark-blue-back-color);
}

header, .bottom-header, .bottom-header .bottom-left-header ul li a.nav-link{
    transition: all 0.5s ease;
}

header{
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

.top-header{
    padding: 0.8em 0;
    background-color: hsl(0deg 0% 100% / 10%);
}

.top-header .top-left-header .wrapper-img img{
    width: 1.6em;
}

.top-header .top-right-header a{
    padding: 0 1em;
    border-right: 0.05em solid #e3e3e3;
}

.top-header .top-right-header a:not(:has(svg)){
    color: var(--white-txt-color);
}

.bottom-header{
    padding: 1em 0;
    border-bottom: 0.07em solid #545b63;
}

.bottom-header .bottom-left-header .wrapper-img img{
    width: 5em;
}

.bottom-header .bottom-right-header .hamburger svg{
    font-size: 2em;
}

.bottom-header .bottom-left-header .wrapper-btn{
    margin-top: 0;
}

.bottom-header .bottom-right-header ul li{
    margin-left: 2.2em;
}

.bottom-header .bottom-right-header ul li a.nav-link{
    transition: color 0.5s ease;
}

.bottom-header .bottom-right-header ul li a.nav-link:hover{
    
}
 
.bottom-header .bottom-right-header ul li a#active-link{
    
}

aside{
    max-width: 20em;
    width: 100%;
    z-index: 9999999;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-100%);
    padding: 2em;
    transition: transform 1s ease;
}

aside .wrapper-icon svg{
    right: 0;
    font-size: 2em;
}

aside .wrapper-links{
    margin-top: 5em;
    padding-bottom: 1em;
    border-bottom: 0.07em solid #535252;
}

aside .wrapper-links ul li, aside .wrapper-contact-links ul li{
    margin: 2em 0;
}

aside .wrapper-links ul li a{
    font-size: 1.2em;
}

aside .wrapper-contact-links{
    margin-top: 3em;
}

aside .wrapper-contact-links ul li a{
    font-size: 1.2em;
}

aside .wrapper-contact-links ul li a svg{
    margin-right: 0.7em;
}

.main-section{
    background-image: url(../images/Image20250704144158.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.main-section::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: hsla(0, 0%, 0%, 0.65);
}

.main-section .wrapper-content .wrapper-title h1,
.main-section .wrapper-content .wrapper-text p{
    z-index: 5;
}

.main-section .short-main-form{
    z-index: 5;
    margin-top: 3em;
    padding: 0.6em 1.3em;
    border-radius: 0.2em;
}

.main-section .short-main-form .col-mini-form{
    padding-left: 0.3em;
    padding-right: 0.3em;
}

.main-section .short-main-form .input-field{
    margin-right: 0.8em;
}

.main-section .short-main-form .input-field:last-child{
    margin-right: 0;
}

.main-section .short-main-form .input-field .ui.input{
    width: 100%;
}

.main-section .short-main-form .input-field input{
    padding: 0.9em 1em;
    width: 100%;
    border: 0.07em solid #cdcdcd;
    border-radius: 0.2em;
}

.main-section .short-main-form .input-field input[data-active-input="true"]{
    background-color: var(--yellow-back-color);
}

input#input-date-start::-webkit-input-placeholder,
input#input-time-start::-webkit-input-placeholder,
input#input-date-start::-moz-input-placeholder,
input#input-time-start::-moz-input-placeholder,
input#input-date-start:-ms-input-placeholder,
input#input-time-start:-ms-input-placeholder,
input#input-date-start:-moz-input-placeholder,
input#input-time-start:-moz-input-placeholder,
input#input-date-start::placeholder,
input#input-time-start::placeholder{
    color: #818181 !important;
    font-family: "roboto-regular", sans-serif;
    opacity: 1 !important;
}

.main-section .short-main-form .ui.calendar .ui.table tr th, .main-section .short-main-form .ui.calendar .ui.table tr td{
    padding: 0.25em;
}

.main-section .short-main-form .ui.seven.column.table td{
    width: 10%;
}

.main-section .short-main-form .ui.bottom.popup{
    font-size: 0.9em;
}

.main-section .short-main-form .input-field svg{
    z-index: 5;
    right: 1em;
    font-size: 0.9em;
}

.main-section .short-main-form .input-field .wrapper-btn, .main-section .short-main-form .input-field .wrapper-btn button{
    width: 100%;
}

.main-section .short-main-form .input-field .wrapper-btn{
    margin-top: 0;
}

.main-section .short-main-form .input-field .wrapper-btn button{
    border-radius: 0.2em;
    padding: 0.9em 1.4em;
}

.section-about-us{
    padding: 9em 0 6em 0;
}

.section-about-us .col-first-about-us, .section-why-we .col-first-why-we{
    margin-bottom: 2em;
}

.section-about-us .col-about-card, .section-why-we .col-why-we{
    margin-top: 3em;
}

.section-about-us .wrapper-img{
    margin-bottom: 1.5em;
}

.section-about-us .wrapper-img img{
    width: 5em;
    margin-left: auto;
    margin-right: auto;
}

.section-why-we, .section-places, .section-calculate-price, .section-prices, .section-orte{
    padding: 6em 0;
}

.section-why-we .wrapper-content .wrapper-img{
    margin-bottom: 1.5em;
}

.section-why-we .wrapper-content .wrapper-img img{
    width: 5em;
}

.section-places .col-first-places{
    margin-bottom: 4em;
}

.section-places #owl-places .owl-dots{
    display: none;
}

.section-places #owl-places .owl-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.section-places #owl-places .owl-nav button{
    margin: 0 0.5em;
    width: 2.8em;
    height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow-back-color);
    font-family: "roboto-regular", sans-serif;
}

.section-places #owl-places .owl-nav button span{
    font-size: 2em;
    border-radius: 0.1em;
    line-height: 1.1;
}

.section-places .place-item .wrapper-img img{
    border-radius: 0.3em 0.3em 0 0;
}

.section-places .place-item .content-part::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, var(--dark-blue-back-color), transparent 40%);
}

.section-places .place-item .content-part .icon{
    width: 1.1em;
    margin-right: 0.5em;
}

.section-places .place-item .content-part .wrapper-title{
    left: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.5em;
}

.section-places .place-item .content-part .wrapper-title h3{
    line-height: 1.45;
    font-size: 1.3em;
}

.section-places .place-item .content-place .place-part:nth-child(2) .wrapper-text{
    margin-top: 0.3em;
}

.section-places .place-item .content-place .place-part:nth-child(2) .wrapper-text p{
    font-size: 0.95em;
}

.section-places .place-item .content-place .place-part .wrapper-text p{
    font-size: 1.1em;
}

.section-places .wrapper-btn{
    margin-top: 3em;
}

.section-prices .wrapper-prices{
    overflow-x: auto;
    margin-top: 4em;
    padding: 1.5em 2.5em 2.5em 2.5em;
    box-shadow: rgba(50, 50, 93, 0.25) 0 0.3em 0.6em -0.1em, rgba(0, 0, 0, 0.3) 0 0.16em 0.38em -0.16em;
    border-radius: 0.5em;
}

.section-prices .wrapper-prices .table-places{
    width: 100%;
    border-collapse: collapse;
    margin-top: 2em;
}

.section-prices .wrapper-prices .table-places tr{
    border-bottom: 0.05em solid var(--light-grey-back-color);
}

.section-prices .wrapper-prices .table-places tbody tr:last-child{
    border-bottom: 0;
}

.section-prices .wrapper-prices .table-places tr th, .section-prices .wrapper-prices .table-places td{
    padding: 1em 0.5em;
}

.section-prices .wrapper-prices .table-places tr th{
    font-size: 1em;
}

.section-taxi-information{
    background-image: url(../images/paper-image.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6em 0;
}

.section-taxi-information::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: hsl(0deg 0% 0% / 60%);
}

.section-taxi-information .row{
    z-index: 5;
}

.section-taxi-information .wrapper-text{
    margin-top: 0;
}

.section-taxi-information .wrapper-text p{
    font-size: 2.2em;
    line-height: 1.5;
}

.section-taxi-information .wrapper-informations .wrapper-icon{
    border-radius: 50%;
    width: 5em;
    height: 5em;
    z-index: 5;
}

.section-taxi-information .wrapper-informations .wrapper-icon svg{
    font-size: 1.5em;
}

.section-taxi-information .wrapper-informations .wrapper-contact{
    margin-left: 1em;
}

.section-taxi-information .wrapper-informations .wrapper-contact p,
.section-taxi-information .wrapper-informations .wrapper-contact a{
    font-size: 1.5em;
}

.section-taxi-information .wrapper-informations .wrapper-contact p{
    margin-bottom: 0.2em;
}

.section-taxi-information .wrapper-informations .wrapper-contact a{
    text-decoration: underline;
}

.section-contact-part{
    padding: 5em 0 6em 0;
}

.section-contact-part .wrapper-content .wrapper-icon{
    border: 0.14em solid var(--yellow-back-color);
    border-radius: 50%;
    width: 3.5em;
    height: 3.5em;
}

.section-contact-part .wrapper-icon svg{
    font-size: 1.3em;
}

.section-contact-part .wrapper-info{
    margin-left: 0.8em;
}

.section-contact-part .wrapper-info .wrapper-text{
    margin-top: 0;
}

.section-contact-part .wrapper-content .contact-items{
    margin-top: 3em;
}

.section-contact-part .wrapper-content .contact-items > div{
    margin-bottom: 1.5em;
}

.section-contact-part .wrapper-content .contact-items > div:last-child{
    margin-bottom: 0;
}

.section-contact-part .contact-items .wrapper-links a,
.section-contact-part .contact-items .wrapper-text:last-child p{
    font-size: 1em;
    line-height: 1.4;
}

.section-contact-part .contact-items .wrapper-title{
    margin-bottom: 0.3em;
}

.section-contact-part .contact-items .wrapper-text:first-child p{
    font-size: 1.15em;
}

.section-contact-part .form{
    box-shadow: rgba(0, 0, 0, 0.35) 0 0.27em 0.83em;
    padding: 2em;
    border-radius: 0.5em;
}

.section-contact-part .form .wrapper-text{
    margin-bottom: 2.5em;
}

.section-contact-part .form .wrapper-text p{
    font-size: 0.9em;
}

.form .col-input{
    margin-bottom: 1.3em;
}

.form .col-input:nth-of-type(5){
    margin-bottom: 0;
}

.form .col-btn{
    margin-top: 1.5em;
}

.form .col-btn .wrapper-btn{
    margin-top: 0;
}

.form .input-field label{
    font-size: 0.95em;
}

.form .input-field label span{
    margin-left: 0.3em;
}

.form .input-field input, .form .input-field textarea{
    border: 0.07em solid #c5c6c7;
    margin-top: 0.4em;
}

.form .input-field input, .form .input-field textarea{
    padding: 0.5em 1em;
}

.form .input-field input{
    width: 100%;
    height: 3em;
}

.form .input-field textarea{
    height: 9em;
    padding-top: 0.9em;
    padding-bottom: 0.9em;
}

.form .input-field input:focus, .form .input-field textarea:focus{
    border-color: #5f6179;
}

.form .wrapper-btn{
    margin-top: 1em;
}

.other-main-section{
    background-image: url(../images/flughafentaxi-wien.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.other-main-section .wrapper-content{
    padding: 5em 0;
}

.other-main-section .wrapper-content .wrapper-title{
    margin-bottom: 1.5em;
}

.other-main-section .wrapper-content .breadcrumb ul li a, .other-main-section .wrapper-content .breadcrumb ul p{
    font-size: 1.2em;
}

.other-main-section .wrapper-content .breadcrumb span{
    margin: 0 1.4em 0 0.9em;
    font-size: 1.2em;
}

.section-orte .row-places{
    margin-top: 3em;
}

.section-orte .col-place-link{
    margin-bottom: 2em;
}

.section-orte .col-place-link:nth-child(6), .section-orte .col-place-link:nth-child(7),
.section-orte .col-place-link:nth-child(8){
    margin-bottom: 0;
}

.section-orte .link-place{
    padding: 0.5em 1em;
    box-shadow: rgba(0, 0, 0, 0.35) 0 0.04em 0.7em;
    border-radius: 0.2em;
}

.section-orte .link-place a .wrapper-text{
    margin-top: 0;
}

.section-orte .link-place a .wrapper-text p:first-child{
    margin-bottom: 0;
}

footer .top-footer{
    padding: 4em 0;
}

footer .top-footer .footer-content p.footer-title{
    margin-bottom: 1.3em;
    font-size: 1.2em;
}

footer .top-footer .footer-content address span,
footer .top-footer .footer-content ul li{
    margin-bottom: 0.9em;
}

footer .top-footer .footer-content ul li:last-child{
    margin-bottom: 0;
}

footer .top-footer .footer-content address span,
footer .top-footer .footer-content ul li a,
.bottom-footer .wrapper-copyright p{
    line-height: 1.5;
}

footer .top-footer .footer-content ul li a{
    color: var(--grey-txt-color);
}

footer .top-footer .footer-content address{
    font-style: normal;
}

footer .top-footer .footer-content address span:last-child{
    margin-bottom: 0;
}

footer .top-footer .footer-partners{
    margin-top: 3em;
}

footer .top-footer .footer-col-5 .footer-content ul li a svg{
    margin-right: 0.6em;
    font-size: 1.1em;
}

footer .top-footer .wrapper-circle{
    right: 2em;
    border-radius: 50%;
    width: 3em;
    height: 3em;
    opacity: 0;
    transition: opacity 0.5s ease;
}

footer .top-footer #call-us-btn{
    bottom: 7.7em;
}

footer .top-footer #scroll-to-top{
    bottom: 4em;
}

footer .top-footer .wrapper-circle svg{
    font-size: 1.2em;
}

footer .bottom-footer{
    padding: 1em 0;
}

footer .bottom-footer .wrapper-content .wrapper-text{
    margin-top: 0;
}

footer .bottom-footer .wrapper-cards span svg{
    font-size: 1.5em;
    margin-left: 0.5em;
}

@media screen and (min-width: 100px){
    html{
        font-size: calc(var(--font-size) - 2.5px);
    }
    .bottom-header .bottom-right-header .hamburger svg{
        display: block;
    }
    .col-xs-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xs-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xs-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xs-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xs-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xs-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xs-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xs-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xs-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xs-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xs-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xs-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-mini-form:nth-of-type(1), .col-mini-form:nth-of-type(2),
    .col-mini-form:nth-of-type(3), .col-mini-form:nth-of-type(4){
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-mini-form:nth-of-type(5){
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 576px){
    html{
        font-size: calc(var(--font-size) - 1.5px);
    }
    .container{
        max-width: 560px;
    }
    .col-sm-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-sm-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-sm-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-sm-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-sm-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-sm-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-sm-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-sm-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-sm-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-sm-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-sm-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-sm-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 768px){
    html{
        font-size: var(--font-size);
    }
    .container{
        max-width: 755px;
    }
    .col-md-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-md-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-md-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-md-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-md-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-md-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-md-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-md-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-md-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-md-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-md-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-md-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 992px){
    html{
        font-size: calc(var(--font-size) - 5px);
    }
    .container{
        max-width: 980px;
    }
    .bottom-header .bottom-right-header .hamburger svg{
        display: none;
    }
    .col-lg-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-lg-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-lg-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-lg-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-lg-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-lg-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-lg-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-lg-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-lg-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-lg-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-lg-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-lg-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-mini-form:nth-of-type(1), .col-mini-form:nth-of-type(2),
    .col-mini-form:nth-of-type(3), .col-mini-form:nth-of-type(4){
        max-width: 21%;
        flex-basis: 21%;
    }
    .col-mini-form:nth-of-type(5){
        max-width: 16%;
        flex-basis: 16%;
    }
}

@media screen and (min-width: 1200px){
    html{
        font-size: calc(var(--font-size) - 4px);
    }
    .container{
        max-width: 1100px;
    }
    .col-xl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
    .col-place-link{
        max-width: 20%;
        flex-basis: 20%;
    }
}

@media screen and (min-width: 1440px){
    html{
        font-size: calc(var(--font-size) - 3px);
    }
    .container{
        max-width: 1200px;
    }
    .col-xxl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xxl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xxl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xxl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xxl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xxl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xxl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xxl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xxl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xxl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xxl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xxl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (min-width: 1920px){
    html{
        font-size: var(--font-size);
    }
    .container{
        max-width: 1400px;
    }
    .col-xxxl-1{
        max-width: 8.33%;
        flex-basis: 8.33%;
    }
    .col-xxxl-2{
        max-width: 16.66%;
        flex-basis: 16.66%;
    }
    .col-xxxl-3{
        max-width: 25%;
        flex-basis: 25%;
    }
    .col-xxxl-4{
        max-width: 33.33%;
        flex-basis: 33.33%;
    }
    .col-xxxl-5{
        max-width: 41.66%;
        flex-basis: 41.66%;
    }
    .col-xxxl-6{
        max-width: 50%;
        flex-basis: 50%;
    }
    .col-xxxl-7{
        max-width: 58.33%;
        flex-basis: 58.33%;
    }
    .col-xxxl-8{
        max-width: 66.66%;
        flex-basis: 66.66%;
    }
    .col-xxxl-9{
        max-width: 75%;
        flex-basis: 75%;
    }
    .col-xxxl-10{
        max-width: 83.33%;
        flex-basis: 83.33%;
    }
    .col-xxxl-11{
        max-width: 91.66%;
        flex-basis: 91.66%;
    }
    .col-xxxl-12{
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media screen and (max-width: 1199px){
    .container-2{
        width: 95%;
    }
    .top-footer .footer-col-4, .top-footer .footer-col-5{
        margin-top: 3em;
    }
}

@media screen and (max-width: 991px){
    .container-2{
        width: 100%;
    }
    .wrapper-text p{
        font-size: 1.1em;
    }
    .bottom-header .bottom-right-header nav{
        display: none;
    }
    .bottom-header .bottom-right-header .hamburger{
        display: flex;
        justify-content: flex-end;
    }
    .main-section{
        min-height: 60vh;
    }
    .main-section .main-col-mini-form{
        position: absolute;
        bottom: 0;
        margin-bottom: -5em;
    }
    .main-section .short-main-form{
        margin-top: 0;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        padding: 1em 1.5em;
    }
    .col-mini-form:nth-of-type(3), .col-mini-form:nth-of-type(4), .col-mini-form:nth-of-type(5){
        margin-top: 0.6em;
    }
    .main-section .short-main-form .input-field{
        max-width: 25%;
        flex-basis: 25%;
    }
    .main-section .short-main-form .input-field:last-child{
        max-width: 100%;
        flex-basis: 100%;
        margin-bottom: 0;
    }
    .main-section .short-main-form .input-field input, .main-section .short-main-form .input-field .ui.input{
        width: 100%;
    }
    .main-section .short-main-form .input-field .wrapper-btn{
        margin-top: 0;
        width: 100%;
    }
    .main-section .short-main-form .input-field .wrapper-btn button{
        width: 100%;
    }
    .section-prices .wrapper-prices{
        padding: 1.5em 1em 2.5em 1em;
    }
    .section-contact-part .col-form{
        margin-top: 3em;
    }
    .section-contact-part .col-form .form{
        font-size: 1.1em;
    }
    .section-contact-part .form{
        padding: 1.5em;
    }
    .section-taxi-information .row-taxi-info{
        justify-content: flex-start;
    }
    .section-taxi-information .wrapper-informations{
        display: flex;
        justify-content: flex-start;
        margin-top: 1.8em;
    }
    .section-uber-uns .col-uber-uns, .section-service .col-service{
        margin-bottom: 3em;
    }
    .bottom-footer .row{
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (max-width: 767px) and (orientation: portrait){
    
}

@media screen and (max-width: 767px){
    .container-2{
        width: 100%;
    }
    .main-section .short-main-form .input-field{
        max-width: 50%;
        flex-basis: 50%;
        margin-bottom: 1em;
        margin-right: 0;
    }
    .section-places .place-item .place-part .wrapper-title h3, .section-places .place-item .place-part .price-place p{
        font-size: 0.85em;
    }
    .top-footer .footer-col-3{
        margin-top: 3em;
    }
}

@media screen and (max-width: 575px){
    .wrapper-title h1{
        font-size: 2.1em;
    }
    .wrapper-title h2{
        font-size: 1.8em;
    }
    .section-places .content-place{
        padding: 1em 1.3em;
    }
    .section-places .place-item .place-part .wrapper-title h3, .section-places .place-item .place-part .price-place p{
        font-size: 1.1em;
    }
    .section-places .place-item .place-part .icon{
        width: 1.2em;
    }
    .section-taxi-information .wrapper-text p{
        font-size: 1.9em;
    }
    .top-footer .footer-col-2{
        margin-top: 3em;
    }
}

@media screen and (max-width: 480px){
    html{
        font-size: calc(var(--font-size) - 3px);
    }
}

@media screen and (max-width: 450px){
    html{
        font-size: calc(var(--font-size) - 4px);
    }
}

@media screen and (max-width: 415px){
    html{
        font-size: calc(var(--font-size) - 4.5px);
    }
}

@media screen and (max-width: 400px){
    html{
        font-size: calc(var(--font-size) - 4.7px);
    }
}

@media screen and (max-width: 385px){
    html{
        font-size: calc(var(--font-size) - 5.5px);
    }
}

@media screen and (max-width: 360px){
    html{
        font-size: calc(var(--font-size) - 5.8px);
    }
}

/* 1733 */