:root {
  --first-txt-color: #1b1b1b;
  --second-txt-color: #fff;
  --third-txt-color: #cd0101;
  --fouth-txt-color: #dddddd;
  --fifth-txt-color: #575757;
  --first-back-color: #fff;
  --third-back-color: #cd0101;
  --fourth-back-color: #1b1b1b;
  --main-fs: 18px;
  --placeholder-color: #3a3a3a;
}

@font-face {
  font-family: "afacad-regular";
  src: url("../fonts/Afacad-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "afacad-medium";
  src: url("../fonts/Afacad-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "afacad-semibold";
  src: url("../fonts/Afacad-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "afacad-bold";
  src: url("../fonts/Afacad-Bold.ttf");
  font-display: swap;
}

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

* {
  font-family: "afacad-regular", sans-serif;
}

html {
  font-size: var(--main-fs);
  overflow-x: hidden;
}

body {
  font-size: inherit;
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--first-back-color);
  color: var(--first-txt-color);
  overflow-x: hidden;
}

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,
address {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

h1 {
  font-size: 3.4em;
  line-height: 1.2;
}

h2 {
  font-size: 2.8em;
  line-height: 1.3;
}

h3 {
  font-size: 2.1em;
  line-height: 1.4;
}

h1,
h2,
h3 {
  text-transform: capitalize;
}

h1,
h1 strong,
h2,
h2 strong,
h3 {
  font-family: "afacad-bold", sans-serif;
}

h1 strong,
h2 strong {
  color: var(--third-txt-color);
}

p,
address,
li {
  font-size: 20px;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

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

input,
button {
  outline: 0;
  border: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.row {
  margin-left: -1.1rem;
  margin-right: -1.1rem;
  display: flex;
  flex-wrap: wrap;
}

.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 {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  position: relative;
  width: 100%;
  min-height: 0.0625rem;
}

.mg-top-10 {
  margin-top: 10px;
}

.no-border {
  border: unset !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.wrapper-img img {
  display: block;
  width: 100%;
  height: auto;
}

.wrapper-btn {
  margin-top: 1.5em;
}

.wrapper-btn .btn:first-child {
  margin-right: 15px;
}

.wrapper-title {
  margin-bottom: 1.7em;
}

.wrapper-title > strong {
  font-size: 20px;
  color: var(--third-txt-color);
  font-family: "afacad-semibold", sans-serif;
  margin-bottom: 0.7em;
  display: inline-flex;
}

.wrapper-text {
  margin-bottom: 1em;
}

.wrapper-text * {
  margin-bottom: 0.7em;
}

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

.no-padding {
  padding: 0 !important;
}

.btn {
  position: relative;
  padding: 15px 23px;
  text-transform: uppercase;
  font-size: 17px;
  border-radius: 0.1em;
  border-width: 0.07em;
  border-style: solid;
  transition: all 0.5s ease;
  cursor: pointer;
}

.btn.red {
  background-color: var(--third-back-color);
  border-color: var(--third-back-color);
}

.btn.black {
  background-color: var(--fourth-back-color);
  border-color: var(--fourth-back-color);
}

.btn.transparent {
  background-color: transparent;
  border-color: var(--first-back-color);
}

.btn.transparent:hover {
  background-color: var(--third-back-color);
  border-color: var(--third-back-color);
}

.btn.btn-social:hover {
  background-color: transparent;
}

.aside {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999999;
  height: 100vh;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.7s ease;
}

.aside .main-aside {
  padding: 3em;
  background-color: var(--fourth-back-color);
  z-index: 55;
}

.aside .close-aside {
  width: 100%;
}

.aside .close-aside .fa-xmark {
  color: var(--second-txt-color);
  font-size: 3em;
}

.aside .aside-nav {
  margin-top: 3em;
}

.aside .aside-nav ul li {
  margin: 1em 0;
}

.aside .aside-nav ul li a {
  font-size: 22px;
}

.aside #overflow-aside {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 50;
  background-color: hsl(0deg 0% 11% / 85%);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}

.header {
  --parent-fs: 1rem;
  font-size: var(--parent-fs);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: all 0.5s ease;
}

.header {
  border-bottom: 1px solid hsl(0deg 2.13% 30.58%);
}

.header .logo {
  width: 170px;
}

.social-media-header .btn {
  margin-left: 0.6em;
}

.social-media-header .btn i {
  display: flex !important;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 15px;
  border-width: 1px;
  border-style: solid;
}

.social-media-header .btn i.fa-phone {
  color: var(--first-back-color);
  border-color: var(--first-back-color);
}

.social-media-header .btn i.fa-whatsapp {
  color: #25d366;
  border-color: #25d366;
}

.social-media-header .btn i.fa-viber {
  color: #9282ff;
  border-color: #9282ff;
}

.header-language {
  display: flex;
  align-items: center;
  margin-left: 1.7em;
}

.header-language a {
  display: block;
  margin-left: 1em;
}

.header-language a img {
  padding: 1.3em 0;
  width: 25px;
  display: block;
}

.navigation ul li,
.navigation ul li a {
  display: inline-block;
}

.navigation ul li {
  margin-right: 1.5em;
}

.navigation ul li a {
  display: block;
  padding: 1.3em 0;
  font-size: 22px;
  font-family: "afacad-regular", sans-serif;
  position: relative;
  transition: all 0.5s ease;
}

.navigation ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: transparent;
  transition: all 0.5s ease;
}

.navigation ul li a#active-page::after {
  background-color: var(--third-txt-color);
  width: 100%;
}

.navigation ul li a:hover::after {
  background-color: var(--third-txt-color);
  width: 100%;
}

.hamburger {
  font-size: 30px;
  color: var(--first-back-color);
  margin-left: 1.1em;
  cursor: pointer;
}

/* .navigation ul li a#active-page::after, 
.language a#active-language::after{
	opacity: 1;
} */

.main-section {
  --parent-fs: 1.2rem;
  font-size: var(--parent-fs);
  height: 100vh;
  background-image: url("../images/main-background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: right;
  background-position-y: center;
}

.main-section .container,
.main-section .container .row {
  height: 100%;
}

.main-section .main-content {
  padding-top: 2em;
}

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

.main-section .main-content .wrapper-title h1 {
  text-transform: uppercase;
  line-height: 1.1;
}

.main-section .main-content p {
  font-size: 24px;
}

.main-section .main-content p a {
  font-family: "afacad-bold", sans-serif;
  color: var(--third-txt-color);
}

.about-us-section,
.pricelist-section,
.reservation-section,
.testimonials-section,
.what-we-offer-section,
.faq-section,
.footer,
.thanks-section {
  --parent-fs: 1.2rem;
  font-size: var(--parent-fs);
}

.about-us-section,
.pricelist-section,
.reservation-section,
.testimonials-section,
.what-we-offer-section,
.faq-section {
  padding: 6em 0;
}

.thanks-section {
  padding: 4em 0 6em 0;
}

.about-us-section .wrapper-btn .btn {
  margin-right: 0.5em;
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}

.about-us-section .wrapper-btn .btn i {
  display: flex !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 22px;
  border: 2px dashed var(--third-back-color);
  color: var(--third-back-color);
}

.about-us-section .wrapper-btn .btn i.fa-phone {
  margin-right: 0.7em;
}

.about-us-section .wrapper-btn .btn i.fa-whatsapp {
  color: #25d366;
  border-color: #25d366;
}

.about-us-section .wrapper-btn .btn i.fa-viber {
  color: #7360f2;
  border-color: #7360f2;
}

.about-us-section .wrapper-btn .btn b {
  font-size: 1.35em;
  font-family: "afacad-bold", sans-serif;
}

.about-us-section .row-some-benefits {
  margin-top: 6em;
}

.about-us-section .row-some-benefits .benefit {
  height: 100%;
  padding: 1.3em;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  border-bottom: 4px solid var(--third-back-color);
  border-radius: 10px;
}

.about-us-section .row-some-benefits .benefit h3 {
  margin-bottom: 0.6em;
  font-size: 29px;
  font-family: "afacad-semibold", sans-serif;
}

.about-us-section .row-some-benefits .benefit p {
  font-size: 19px;
}

.row-some-benefits .method-payment {
  margin-top: 4em;
}

.row-some-benefits .wrapper-img {
  margin-top: 0.8em;
}

.row-some-benefits .wrapper-img img {
  max-width: 500px;
  width: 100%;
}

.pricelist-section {
  background-color: #f6f6f6;
}

.pricelist-section .row-pricelist-item {
  margin-top: 2em;
}

.pricelist-section .wrapper-table-pricelist .wrapper-table {
  overflow-x: auto;
}

.pricelist-section .wrapper-table-pricelist .table-pricelist {
  width: 100%;
  border-collapse: collapse;
}

.pricelist-section .wrapper-table-pricelist .table-pricelist tr {
  border-bottom: 1px solid #e9e9e9;
}

.pricelist-section
  .wrapper-table-pricelist
  .table-pricelist
  tr:nth-child(even) {
  background-color: #f3f3f3;
  color: var(--primary-txt-color);
}

.pricelist-section .wrapper-table-pricelist .table-pricelist tr:nth-child(odd) {
  background-color: #e7e7e7;
}

.pricelist-section .wrapper-table-pricelist .table-pricelist tr th,
.pricelist-section .wrapper-table-pricelist .table-pricelist tr td {
  text-align: left;
  padding: 0.4em 1em 0.4em 1em;
  white-space: nowrap;
}

.pricelist-section .wrapper-table-pricelist .table-pricelist tr th {
  font-size: 21px;
  font-family: "afacad-medium", sans-serif;
}

.pricelist-section .wrapper-table-pricelist .table-pricelist tr td {
  font-size: 19px;
}

.pricelist-section .pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2em;
}

.pricelist-section .pagination li {
  display: flex;
}

.pricelist-section .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  font-size: 20px;
  cursor: pointer;
  font-family: "afacad-medium", sans-serif;
  transition: all 0.3s ease;
}

.pricelist-section .pagination li span.active {
  background-color: var(--fourth-back-color);
  color: var(--second-txt-color);
}

.pricelist-section .pagination li span:hover {
  background-color: var(--fourth-back-color);
  color: var(--second-txt-color);
}

.testimonials-section {
  padding-top: 0;
}

.testimonials-slider .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.testimonials-slider .owl-carousel .owl-stage {
  display: flex;
}

.testimonials-slider .owl-item {
  padding: 1em 0;
  display: flex;
}

.testimonials-slider .col-testimonial {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
}

.testimonials-slider .testimonial-item {
  padding: 70px 1.5em 1.5em;
  margin-top: 40px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  border-bottom: 4px solid var(--third-back-color);
  border-radius: 10px;
}

.testimonials-slider .wrapper-img {
  padding: 5px;
  position: absolute;
  top: 0;
  left: initial;
  border: 2px dashed var(--third-back-color);
  border-radius: 50%;
}

.testimonials-slider .owl-carousel .wrapper-img img {
  width: 70px;
  border-radius: 50%;
}

.testimonials-slider .wrapper-text p:nth-child(1) {
  font-size: 18px;
  line-height: 1.3;
}

.testimonials-slider .wrapper-text p.name-person b {
  font-family: "afacad-bold", sans-serif;
  font-size: 1.4em;
  display: block;
  text-transform: uppercase;
}

.testimonials-section .testimonials-slider .owl-carousel .owl-nav {
  display: none;
}

.testimonials-section .testimonials-slider .owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1em;
}

.testimonials-section
  .testimonials-slider
  .owl-carousel
  .owl-dots
  .owl-dot
  span {
  width: 17px;
  height: 17px;
  border: 1px solid var(--third-back-color);
  background-color: transparent;
  transition: all 0.5s ease;
}

.testimonials-section
  .testimonials-slider
  .owl-carousel
  .owl-dots
  .owl-dot
  span:hover {
  background-color: var(--third-back-color);
}

.testimonials-section
  .testimonials-slider
  .owl-carousel
  .owl-dots
  .owl-dot.active
  span {
  background-color: var(--third-back-color);
}

.what-we-offer-section {
  background-image: url("../images/bg1.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.what-we-offer-section ul {
  padding-top: 1em;
}

.what-we-offer-section ul li {
  color: #dddddd;
  font-family: "afacad-regular", sans-serif;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 2em;
  font-size: 21px;
  display: flex;
  align-items: baseline;
}

.what-we-offer-section ul li i {
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 20px;
  color: var(--third-back-color);
}

.what-we-offer-section .wrapper-btn {
  margin-top: 3em;
}

.what-we-offer-section .contact-form-home {
  padding: 2.3em 1.7em;
  background-color: #f6f6f6;
  border-radius: 10px;
}

.what-we-offer-section .contact-form-home .wrapper-title {
  margin-bottom: 1.5em;
}

.what-we-offer-section .contact-form-home .wrapper-title h3 {
  font-family: "afacad-bold", sans-serif;
  font-size: 35px;
  line-height: 1.2;
}

.what-we-offer-section .contact-form-home .wrapper-text p {
  font-size: 18px;
}

.what-we-offer-section .contact-form-home .wrapper-form {
  width: 100%;
}

.contact-form-home .wrapper-form .form-enclose {
  background-color: #f6f6f6;
}

.flashForms .iti {
  width: 100%;
}

.contact-form-home .wrapper-form .iti__country-list {
  padding-top: 0;
}

.contact-form-home .wrapper-form .iti__country {
  padding: 5px 10px;
  margin-bottom: 0;
  outline: 0;
  color: var(--fourth-back-color);
}

.contact-form-home .wrapper-form .iti__country-name,
.contact-form-home .wrapper-form .iti__flag-box {
  margin-right: 6px;
}

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

/* .contact-form-home .wrapper-form .input-field{
	margin-top: 0.7em;
}

.contact-form-home .wrapper-form .input-field input,
.contact-form-home .wrapper-form .input-field textarea{
	width: 100%;
	padding: 0.8em;
	font-size: 17px;
	border-radius: 3px;
	background-color: var(--first-back-color);
	border: 1px solid #d1d1d1;
	outline: 0;
}

.contact-form-home .wrapper-form .input-field input{
	height: 2.5em;
	display: flex;
	align-items: center;
}

.contact-form-home .wrapper-form .input-field textarea{
	height: 10em;
	width: 100%;
	resize: vertical;
} */

.faq-section .row-answers {
  margin-top: 3em;
}

.faq-section .container-answers .answer-wrapper {
  margin-bottom: 1em;
}

.faq-section .container-answers .answer-wrapper .question-item {
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0.85em 1.2em;
  cursor: pointer;
}

.container-answers .answer-wrapper .question-item .question-item-part {
  position: relative;
}

.container-answers .answer-wrapper .question-item .question-item-part p {
  padding-right: 2em;
  font-size: 25px;
  font-family: "afacad-bold", sans-serif;
}

.container-answers .answer-wrapper .question-item .question-item-part i {
  position: absolute;
  right: 0;
  top: 0.3em;
  font-size: 17px;
  color: var(--third-txt-color);
  transition: transform 0.2s linear;
}

.faq-section .container-answers .answer-wrapper .answer-item {
  display: none;
}

.faq-section .container-answers .answer-wrapper .answer-item p {
  padding-top: 0.8em;
  padding-right: 2em;
  padding-bottom: 0.3em;
  /* font-size: 19px; */
}

.footer {
  padding: 1.7em 0 0 0;
  background-color: var(--fourth-back-color);
  overflow: hidden;
}

.footer .austria-img {
  position: absolute;
  right: 40%;
  top: 55%;
  transform: translateX(50%) translateY(-50%);
  width: 44%;
}

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

.footer .footer-item-1 img {
  margin-bottom: 1.5em;
  width: 200px;
}

.footer .footer-item-1 p {
  font-size: 18px;
  color: #959595;
}

.footer .footer-item .footer-title {
  font-size: 22px;
  margin-bottom: 0.8em;
  font-family: "afacad-bold", sans-serif;
}

.footer .footer-item .footer-list li {
  margin-bottom: 0.5em;
}

.footer .footer-item .footer-list li a,
.footer .footer-item .footer-list li p {
  font-size: 18px;
  color: #959595;
  font-family: "afacad-regular", sans-serif;
  display: inline-flex;
  align-items: baseline;
}

.footer .footer-item .footer-list li a i,
.footer .footer-item .footer-list li p i {
  color: var(--third-txt-color);
  font-size: 14px;
  margin-right: 0.7em;
}

.footer .copyright-section {
  padding: 1.5em 0;
  background-color: #252525;
  margin-top: 4em;
  position: relative;
}

.footer .copyright-section .wrapper-copyright p {
  color: #959595;
  font-size: 18px;
}

.footer .copyright-section .company-info a {
  margin-left: 1em;
  font-size: 18px;
  font-family: "afacad-regular", sans-serif;
  color: #959595;
}

@media screen and (min-width: 100px) {
  :root {
    --main-fs: 8px;
  }
  .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: 57.47%;
    flex-basis: 57.47%;
  }
  .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.74%;
    flex-basis: 91.74%;
  }
  .col-xs-12 {
    max-width: 100%;
    flex-basis: 100%;
  }
  .fa-bars.hamburger {
    display: block;
  }
  .navigation {
    display: none;
  }
}

@media screen and (min-width: 370px) {
  :root {
    --main-fs: 9.7px;
  }
}

@media screen and (min-width: 400px) {
  :root {
    --main-fs: 10.2px;
  }
}

@media screen and (min-width: 576px) {
  :root {
    --main-fs: 10.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: 57.47%;
    flex-basis: 57.47%;
  }
  .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.74%;
    flex-basis: 91.74%;
  }
  .col-sm-12 {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --main-fs: 11px;
  }
  .container {
    max-width: 740px;
  }
  .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: 57.47%;
    flex-basis: 57.47%;
  }
  .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.74%;
    flex-basis: 91.74%;
  }
  .col-md-12 {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media screen and (min-width: 992px) {
  :root {
    --main-fs: 12.5px;
  }
  .container {
    max-width: 920px;
  }
  .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: 57.47%;
    flex-basis: 57.47%;
  }
  .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.74%;
    flex-basis: 91.74%;
  }
  .col-lg-12 {
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --main-fs: 12px;
  }
  .container {
    max-width: 1120px;
  }
  .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: 57.47%;
    flex-basis: 57.47%;
  }
  .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.74%;
    flex-basis: 91.74%;
  }
  .col-xl-12 {
    max-width: 100%;
    flex-basis: 100%;
  }
  .fa-bars.hamburger {
    display: none;
  }
  .navigation {
    display: block;
  }
}

@media screen and (min-width: 1440px) {
  :root {
    --main-fs: 13.7px;
  }
  .container {
    max-width: 1350px;
  }
  .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: 57.47%;
    flex-basis: 57.47%;
  }
  .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.74%;
    flex-basis: 91.74%;
  }
  .col-xxl-12 {
    max-width: 100%;
    flex-basis: 100%;
  }
  .main-section .main-content p {
    padding: 0 4em;
  }
}

@media screen and (min-width: 1920px) {
  :root {
    --main-fs: 16.5px;
  }
  .container {
    max-width: 1450px;
  }
}

@media screen and (min-width: 2300px) {
  .container {
    max-width: 1700px;
  }
}

@media screen and (min-width: 2560px) {
  .container {
    max-width: 2000px;
  }
}

@media screen and (min-width: 2800px) {
  .container {
    max-width: 2400px;
  }
}

@media screen and (min-width: 3440px) {
  .container {
    max-width: 2700px;
  }
}

@media screen and (min-width: 3800px) {
  .container {
    max-width: 3100px;
  }
}

@media screen and (max-width: 1439px) {
  .row-some-benefits > div:nth-child(3),
  .row-some-benefits > div:nth-child(4) {
    margin-top: 2em;
  }
}

@media screen and (max-width: 1199px) {
  p,
  .about-us-section .row-some-benefits .benefit p,
  li {
    font-size: 18px;
  }
  .main-section .main-content p {
    font-size: 21px;
  }
  .col-about-us-content {
    margin-bottom: 4em;
  }
  .about-us-section .row-some-benefits {
    margin-top: 4em;
  }
  .testimonials-slider {
    margin-top: 2em;
  }
  .what-we-offer-section ul li {
    font-size: 18px;
  }
  .what-we-offer-section .contact-form-home {
    margin-top: 6em;
  }
  .what-we-offer-section .contact-form-home .wrapper-title h3 {
    font-size: 28px;
  }
  .row-footer-items-2-3-4 > div {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    padding: 1em 0;
  }
  .footer .austria-img {
    width: 80%;
  }
}

@media screen and (max-width: 991px) {
  .container-answers .answer-wrapper .question-item .question-item-part p {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .main-section {
    background-image: url("../images/airport-taxi-wien-24-mobile.webp");
  }
  .main-section .main-content p {
    font-size: 19px;
  }
  .footer .company-info {
    margin-top: 1.5em;
  }
  .footer .company-info a:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 575px) {
  .header .logo {
    content: url("../images/airport-taxi-wien-mobile.png");
    width: 55px;
  }
  .main-section .main-content p {
    font-size: 18px;
  }
  .row-some-benefits > div:nth-child(2) {
    margin-top: 2em;
  }
  .pricelist-section .pagination li span {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

@media screen and (max-width: 399px) {
  .header .logo {
    width: 48px;
  }
  .wrapper-title > strong,
  .main-section
    .main-content
    p.about-us-section.pricelist-section
    .wrapper-table-pricelist
    .table-pricelist
    tr
    th,
  .container-answers .answer-wrapper .question-item .question-item-part p {
    font-size: 19px;
  }
  p,
  .about-us-section .row-some-benefits .benefit p,
  .what-we-offer-section .contact-form-home .wrapper-text p,
  .what-we-offer-section ul li,
  .faq-section .container-answers .answer-wrapper .answer-item p,
  .footer .footer-item-1 p,
  .footer .copyright-section .wrapper-copyright p,
  .testimonials-slider .wrapper-text p:nth-child(1),
  .footer .footer-item .footer-list li a,
  .footer .footer-item .footer-list li p,
  .footer .copyright-section .company-info a,
  address {
    font-size: 17px;
  }
  .btn {
    font-size: 16px;
    padding: 14px 20px;
  }
  .pricelist-section .wrapper-table-pricelist .table-pricelist tr td,
  .wrapper-other-image .wrppaer-breadcrumb .breadcrumb li {
    font-size: 18px;
  }
  .what-we-offer-section .contact-form-home .wrapper-title h3,
  .about-us-section .row-some-benefits .benefit h3 {
    font-size: 25px;
  }
}

@media screen and (max-width: 369px) {
  .header .logo {
    width: 44px;
  }
  .wrapper-title > strong,
  .main-section
    .main-content
    p.about-us-section.pricelist-section
    .wrapper-table-pricelist
    .table-pricelist
    tr
    th,
  .container-answers .answer-wrapper .question-item .question-item-part p {
    font-size: 17px;
  }
  p,
  .about-us-section .row-some-benefits .benefit p,
  .what-we-offer-section .contact-form-home .wrapper-text p,
  .what-we-offer-section ul li,
  .faq-section .container-answers .answer-wrapper .answer-item p,
  .footer .footer-item-1 p,
  .footer .copyright-section .wrapper-copyright p,
  .testimonials-slider .wrapper-text p:nth-child(1),
  .footer .footer-item .footer-list li a,
  .footer .footer-item .footer-list li p,
  .footer .copyright-section .company-info a,
  address {
    font-size: 16px;
  }
  .btn {
    font-size: 14px;
    padding: 13px 18px;
  }
  .pricelist-section .wrapper-table-pricelist .table-pricelist tr td,
  .wrapper-other-image .wrppaer-breadcrumb .breadcrumb li {
    font-size: 17px;
  }
  .what-we-offer-section .contact-form-home .wrapper-title h3,
  .about-us-section .row-some-benefits .benefit h3 {
    font-size: 23px;
  }
  .flashForms .lbl-text {
    font-size: 12px !important;
  }
  .flashForms .form-section legend {
    font-size: 15px !important;
  }
}

@media screen and (orientation: portrait) {
  .main-section .container > .row,
  .main-section .container > .row > div {
    justify-content: flex-start;
  }
  .main-section .main-content {
    text-align: left;
    justify-content: flex-start;
    flex-direction: row;
  }
}

/* 31-march-form-css */
.custom-form .site-content {
  padding: 100px 40px 0px 40px;
}
.custom-form :where(.wp-block-button__link) {
  border-radius: 9999px;
  box-shadow: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  text-decoration: none;
}

.custom-form
  :root
  :where(.wp-block-button .wp-block-button__link.is-style-outline),
.custom-form
  :root
  :where(.wp-block-button.is-style-outline > .wp-block-button__link) {
  border: 2px solid;
  padding: 0.667em 1.333em;
}

.custom-form
  :root
  :where(
    .wp-block-button
      .wp-block-button__link.is-style-outline:not(.has-text-color)
  ),
.custom-form
  :root
  :where(
    .wp-block-button.is-style-outline
      > .wp-block-button__link:not(.has-text-color)
  ) {
  color: currentColor;
}

.custom-form
  :root
  :where(
    .wp-block-button
      .wp-block-button__link.is-style-outline:not(.has-background)
  ),
.custom-form
  :root
  :where(
    .wp-block-button.is-style-outline
      > .wp-block-button__link:not(.has-background)
  ) {
  background-color: initial;
  background-image: none;
}

.custom-form :where(.wp-block-columns) {
  margin-bottom: 1.75em;
}

.custom-form :where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em;
}

.custom-form :where(.wp-block-post-comments input[type="submit"]) {
  border: none;
}

.custom-form :where(.wp-block-cover-image:not(.has-text-color)),
.custom-form :where(.wp-block-cover:not(.has-text-color)) {
  color: #fff;
}

.custom-form :where(.wp-block-cover-image.is-light:not(.has-text-color)),
.custom-form :where(.wp-block-cover.is-light:not(.has-text-color)) {
  color: #000;
}

.custom-form :root :where(.wp-block-cover h1:not(.has-text-color)),
.custom-form :root :where(.wp-block-cover h2:not(.has-text-color)),
.custom-form :root :where(.wp-block-cover h3:not(.has-text-color)),
.custom-form :root :where(.wp-block-cover h4:not(.has-text-color)),
.custom-form :root :where(.wp-block-cover h5:not(.has-text-color)),
.custom-form :root :where(.wp-block-cover h6:not(.has-text-color)),
.custom-form :root :where(.wp-block-cover p:not(.has-text-color)) {
  color: inherit;
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright,
.wp-block[data-align="left"] > [data-type="core/embed"],
.custom-form .wp-block[data-align="right"] > [data-type="core/embed"] {
  max-width: 360px;
  width: 100%;
}

.wp-block-embed.alignleft .wp-block-embed__wrapper,
.wp-block-embed.alignright .wp-block-embed__wrapper,
.wp-block[data-align="left"]
  > [data-type="core/embed"]
  .wp-block-embed__wrapper,
.custom-form
  .wp-block[data-align="right"]
  > [data-type="core/embed"]
  .wp-block-embed__wrapper {
  min-width: 280px;
}

.custom-form .wp-block-cover .wp-block-embed {
  min-height: 240px;
  min-width: 320px;
}

.custom-form .wp-block-embed {
  overflow-wrap: break-word;
}

.custom-form .wp-block-embed :where(figcaption) {
  margin-bottom: 1em;
  margin-top: 0.5em;
}

.custom-form .wp-block-embed iframe {
  max-width: 100%;
}

.custom-form .wp-block-embed__wrapper {
  position: relative;
}

.custom-form
  .wp-embed-responsive
  .wp-has-aspect-ratio
  .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.custom-form .wp-embed-responsive .wp-has-aspect-ratio iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-21-9
  .wp-block-embed__wrapper:before {
  padding-top: 42.85%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-18-9
  .wp-block-embed__wrapper:before {
  padding-top: 50%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-16-9
  .wp-block-embed__wrapper:before {
  padding-top: 56.25%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-4-3
  .wp-block-embed__wrapper:before {
  padding-top: 75%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-1-1
  .wp-block-embed__wrapper:before {
  padding-top: 100%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-9-16
  .wp-block-embed__wrapper:before {
  padding-top: 177.77%;
}

.custom-form
  .wp-embed-responsive
  .wp-embed-aspect-1-2
  .wp-block-embed__wrapper:before {
  padding-top: 200%;
}

.custom-form :where(.wp-block-file) {
  margin-bottom: 1.5em;
}

.custom-form :where(.wp-block-file__button) {
  border-radius: 2em;
  display: inline-block;
  padding: 0.5em 1em;
}

:where(.wp-block-file__button):is(a):active,
:where(.wp-block-file__button):is(a):focus,
:where(.wp-block-file__button):is(a):hover,
.custom-form :where(.wp-block-file__button):is(a):visited {
  box-shadow: none;
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.custom-form :where(.wp-block-group.wp-block-group-is-layout-constrained) {
  position: relative;
}

@keyframes show-content-image {
  0% {
    visibility: hidden;
  }

  99% {
    visibility: hidden;
  }

  to {
    visibility: visible;
  }
}

@keyframes turn-on-visibility {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes turn-off-visibility {
  0% {
    opacity: 1;
    visibility: visible;
  }

  99% {
    opacity: 0;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes lightbox-zoom-in {
  0% {
    transform: translate(
        calc(
          (-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
            var(--wp--lightbox-initial-left-position)
        ),
        calc(-50vh + var(--wp--lightbox-initial-top-position))
      )
      scale(var(--wp--lightbox-scale));
  }

  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes lightbox-zoom-out {
  0% {
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
  }

  99% {
    visibility: visible;
  }

  to {
    transform: translate(
        calc(
          (-100vw + var(--wp--lightbox-scrollbar-width)) / 2 +
            var(--wp--lightbox-initial-left-position)
        ),
        calc(-50vh + var(--wp--lightbox-initial-top-position))
      )
      scale(var(--wp--lightbox-scale));
    visibility: hidden;
  }
}

.custom-form
  :where(
    .wp-block-latest-comments:not(
        [style*="line-height"] .wp-block-latest-comments__comment
      )
  ) {
  line-height: 1.1;
}

.custom-form
  :where(
    .wp-block-latest-comments:not(
        [style*="line-height"] .wp-block-latest-comments__comment-excerpt p
      )
  ) {
  line-height: 1.8;
}

.custom-form :root :where(.wp-block-latest-posts.is-grid) {
  padding: 0;
}

.custom-form :root :where(.wp-block-latest-posts.wp-block-latest-posts__list) {
  padding-left: 0;
}

ol,
.custom-form ul {
  box-sizing: border-box;
}

.custom-form :root :where(.wp-block-list.has-background) {
  padding: 1.25em 2.375em;
}

.custom-form
  :where(
    .wp-block-navigation.has-background
      .wp-block-navigation-item
      a:not(.wp-element-button)
  ),
.custom-form
  :where(
    .wp-block-navigation.has-background
      .wp-block-navigation-submenu
      a:not(.wp-element-button)
  ) {
  padding: 0.5em 1em;
}

.custom-form
  :where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-navigation-item
      a:not(.wp-element-button)
  ),
.custom-form
  :where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-navigation-submenu
      a:not(.wp-element-button)
  ),
.custom-form
  :where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-navigation-submenu
      button.wp-block-navigation-item__content
  ),
.custom-form
  :where(
    .wp-block-navigation
      .wp-block-navigation__submenu-container
      .wp-block-pages-list__item
      button.wp-block-navigation-item__content
  ) {
  padding: 0.5em 1em;
}

@keyframes overlay-menu__fade-in-animation {
  0% {
    opacity: 0;
    transform: translateY(0.5em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-form :root :where(p.has-background) {
  padding: 1.25em 2.375em;
}

.custom-form :where(p.has-text-color:not(.has-link-color)) a {
  color: inherit;
}

.custom-form :where(.wp-block-post-comments-form) input:not([type="submit"]),
.custom-form :where(.wp-block-post-comments-form) textarea {
  border: 1px solid #949494;
  font-family: inherit;
  font-size: 1em;
}

.custom-form
  :where(.wp-block-post-comments-form)
  input:where(:not([type="submit"]):not([type="checkbox"])),
.custom-form :where(.wp-block-post-comments-form) textarea {
  padding: calc(0.667em + 2px);
}

.custom-form :where(.wp-block-post-excerpt) {
  box-sizing: border-box;
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap);
}

.custom-form :where(.wp-block-preformatted.has-background) {
  padding: 1.25em 2.375em;
}

.custom-form :where(.wp-block-search__button) {
  border: 1px solid #ccc;
  padding: 6px 10px;
}

.custom-form :where(.wp-block-search__input) {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.custom-form
  :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border: 1px solid #949494;
  box-sizing: border-box;
  padding: 4px;
}

.custom-form
  :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper)
  :where(.wp-block-search__button) {
  padding: 4px 8px;
}

.custom-form :root :where(.wp-block-separator.is-style-dots) {
  height: auto;
  line-height: 1;
  text-align: center;
}

.custom-form :root :where(.wp-block-separator.is-style-dots):before {
  color: currentColor;
  content: "···";
  font-family: serif;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em;
}

.custom-form :root :where(.wp-block-site-logo.is-style-rounded) {
  border-radius: 9999px;
}

.custom-form :root :where(.wp-block-social-links .wp-social-link a) {
  padding: 0.25em;
}

.custom-form
  :root
  :where(.wp-block-social-links.is-style-logos-only .wp-social-link a) {
  padding: 0;
}

.custom-form
  :root
  :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a) {
  padding-left: 0.66667em;
  padding-right: 0.66667em;
}

.custom-form :root :where(.wp-block-tag-cloud.is-style-outline) {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
}

.custom-form :root :where(.wp-block-tag-cloud.is-style-outline a) {
  border: 1px solid;
  font-size: unset !important;
  margin-right: 0;
  padding: 1ch 2ch;
  text-decoration: none !important;
}

.custom-form :root :where(.wp-block-table-of-contents) {
  box-sizing: border-box;
}

.custom-form :where(.wp-block-term-description) {
  box-sizing: border-box;
  margin-bottom: var(--wp--style--block-gap);
  margin-top: var(--wp--style--block-gap);
}

.custom-form :where(pre.wp-block-verse) {
  font-family: inherit;
}

.custom-form :root {
  --wp--preset--font-size--normal: 16px;
  --wp--preset--font-size--huge: 42px;
}

.custom-form .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.custom-form .screen-reader-text:focus {
  background-color: #ddd;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.custom-form html :where(.has-border-color) {
  border-style: solid;
}

.custom-form html :where([style*="border-top-color"]) {
  border-top-style: solid;
}

.custom-form html :where([style*="border-right-color"]) {
  border-right-style: solid;
}

.custom-form html :where([style*="border-bottom-color"]) {
  border-bottom-style: solid;
}

.custom-form html :where([style*="border-left-color"]) {
  border-left-style: solid;
}

.custom-form html :where([style*="border-width"]) {
  border-style: solid;
}

.custom-form html :where([style*="border-top-width"]) {
  border-top-style: solid;
}

.custom-form html :where([style*="border-right-width"]) {
  border-right-style: solid;
}

.custom-form html :where([style*="border-bottom-width"]) {
  border-bottom-style: solid;
}

.custom-form html :where([style*="border-left-width"]) {
  border-left-style: solid;
}

.custom-form html :where(img[class*="wp-image-"]) {
  height: auto;
  max-width: 100%;
}

.custom-form :where(figure) {
  margin: 0 0 1em;
}

.custom-form html :where(.is-position-sticky) {
  --wp-admin--admin-bar--position-offset: var(
    --wp-admin--admin-bar--height,
    0px
  );
}

@media screen and (max-width: 600px) {
  html :where(.is-position-sticky) {
    --wp-admin--admin-bar--position-offset: 0px;
  }
}

.custom-form
  .trp-language-switcher-container.trp-floater-ls-names.trp-bottom-right.trp-color-dark {
  min-width: 200px;
}

.custom-form
  #trp-floater-ls-current-language
  .trp-floater-ls-disabled-language.trp-ls-disabled-language {
  margin-top: 6px;
}

.custom-form
  #trp-floater-ls-language-list
  .trp-language-wrap.trp-floater-ls-disabled-language.trp-ls-disabled-language:hover {
  padding: 0px;
  width: auto;
}

.custom-form #trp-floater-ls {
  position: fixed;
  z-index: 9999999;
  bottom: 0;
  display: block;
  overflow: hidden;
  height: 58px;
  text-align: center;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.custom-form .trp-floater-ls-disabled-language.trp-ls-disabled-language {
  width: auto;
}

.custom-form #trp-floater-ls:hover {
  position: fixed;
  z-index: 9999999;
  bottom: 0;
  display: block;
  height: auto;
  border-radius: 8px 8px 0px 0px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
}

.custom-form #trp-floater-ls.trp-color-dark {
  background: #1e1e1e;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px 8px 0 0;
}

.custom-form #trp-floater-ls.trp-bottom-right {
  top: auto;
  bottom: 0;
  right: 10%;
}

@media screen and (max-width: 1000px) {
  #trp-floater-ls-language-list {
    display: flex;
    flex-direction: column;
  }

  .custom-form
    .trp-language-switcher-container.trp-floater-ls-names.trp-bottom-right.trp-color-dark {
    right: 10%;
    min-width: 105px;
  }
}

@media screen and (max-width: 500px) {
  #trp-floater-ls-language-list {
    display: flex;
    flex-direction: column;
  }

  .custom-form
    #trp-floater-ls:hover
    .trp-language-wrap
    a.trp-floater-ls-disabled-language {
    margin-top: 0;
  }

  .custom-form .trp-floater-ls-disabled-language {
    margin-top: 0 !important;
    padding-top: 16px !important;
  }

  .custom-form
    .trp-language-switcher-container.trp-floater-ls-names.trp-bottom-right.trp-color-dark {
    right: 10%;
    min-width: 105px;
  }
}

.custom-form #trp-floater-ls-language-list {
  display: none;
}

.custom-form #trp-floater-ls .trp-language-wrap.trp-language-wrap-bottom {
  padding: 11px;
}

#trp-floater-ls:focus #trp-floater-ls-current-language,
.custom-form #trp-floater-ls:hover #trp-floater-ls-current-language {
  display: none;
}

#trp-floater-ls:focus #trp-floater-ls-language-list,
.custom-form #trp-floater-ls:hover #trp-floater-ls-language-list {
  display: block;
}

.custom-form #trp-floater-ls-current-language a {
  display: block;
  padding: 10px 12px 10px 12px;
  font-size: 90%;
}

.custom-form .trp-language-wrap a {
  display: block;
  padding: 10px 12px 10px 12px;
  font-size: 90%;
}

.custom-form
  #trp-floater-ls-current-language
  .trp-floater-ls-disabled-language.trp-ls-disabled-language {
  display: block;
  padding: 10px 24px 10px 24px;
  font-size: 90%;
}

#trp-floater-ls-current-language,
.custom-form #trp-floater-ls-language-list {
  text-align: left;
}

#trp-floater-ls-current-language.trp-with-flags,
.custom-form #trp-floater-ls-language-list.trp-with-flags {
  text-align: left;
}

.custom-form #trp-floater-ls-current-language {
  display: block;
  width: 100%;
  height: 100%;
}

.trp-language-switcher-container.trp-floater-ls-names.trp-bottom-right
  .trp-language-wrap,
.custom-form
  .trp-language-switcher-container.trp-floater-ls-names.trp-bottom-left
  .trp-language-wrap {
  padding: 12px 12px 6px 12px !important;
}

.custom-form #trp-floater-ls div:not(#trp-floater-poweredby) > a {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.trp-color-dark #trp-floater-ls-current-language a,
.custom-form .trp-color-dark #trp-floater-ls-language-list a {
  color: #bdbdbd;
}

.trp-color-dark #trp-floater-ls-current-language a,
.trp-color-dark #trp-floater-ls-language-list a,
.trp-color-light #trp-floater-ls-current-language a,
.trp-color-light #trp-floater-ls-language-list a,
.trp-with-flags.trp-color-dark #trp-floater-ls-current-language a,
.trp-color-dark #trp-floater-ls-language-list a,
.trp-with-flags.trp-color-light #trp-floater-ls-current-language a,
.trp-color-light #trp-floater-ls-language-list a,
.trp-color-light #trp-floater-ls-current-language a,
.custom-form .trp-color-dark #trp-floater-ls-language-list a {
  display: block;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-form
  .trp-color-dark
  #trp-floater-ls-language-list
  .trp-language-wrap
  a:hover {
  color: #fff;
  background: #4f4f4f;
  border-radius: 2px;
}

.custom-form .trp-floater-ls-disabled-language {
  margin-top: 6px;
}

.custom-form #trp-floater-ls .trp-floater-ls-disabled-language {
  pointer-events: none;
  cursor: default;
}

.custom-form #trp-floater-ls .trp-with-flags .trp-flag-image {
  margin-right: 5px;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
  display: inline;
  padding: 0;
}

.custom-form .trp-flag-image:dir(rtl) {
  margin-left: 5px;
}

.custom-form #trp-floater-ls a {
  text-decoration: none;
}

.custom-form #trp-floater-ls-language-list {
  max-height: 300px;
  overflow-y: auto;
}

.custom-form svg {
  max-height: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.custom-form .button:visited {
  border: 1px solid transparent;
  cursor: pointer;
}

.clearfix:before,
.custom-form .clearfix:after {
  content: " ";
  display: table;
}

.custom-form .clearfix:after {
  clear: both;
}

.custom-form .flatpickr-input[readonly] {
  cursor: pointer;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.custom-form html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.custom-form body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
.custom-form summary {
  display: block;
}

[hidden],
.custom-form template {
  display: none;
}

.custom-form a {
  background: 0 0;
}

a:active,
.custom-form a:hover {
  outline: 0;
}

b,
.custom-form strong {
  font-weight: 700;
}

.custom-form h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

.custom-form img {
  border: 0;
}

.custom-form svg:not(:root) {
  overflow: hidden;
}

.custom-form hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

button,
input,
optgroup,
select,
.custom-form textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

.custom-form button {
  overflow: visible;
}

button,
.custom-form select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
.custom-form input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
.custom-form html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
.custom-form input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.custom-form input {
  line-height: normal;
}

input[type="checkbox"],
.custom-form input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
.custom-form input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

.custom-form input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
.custom-form input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.custom-form legend {
  border: 0;
  padding: 0;
}

.custom-form textarea {
  overflow: auto;
}

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  a,
  .custom-form a:visited {
    text-decoration: underline;
  }

  .custom-form a[href]:after {
    content: " (" attr(href) ")";
  }

  a[href^="javascript:"]:after,
  .custom-form a[href^="#"]:after {
    content: "";
  }

  tr,
  .custom-form img {
    page-break-inside: avoid;
  }

  .custom-form img {
    max-width: 100% !important;
  }

  p,
  h2,
  .custom-form h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  .custom-form h3 {
    page-break-after: avoid;
  }

  .custom-form select {
    background: #fff !important;
  }
}

.custom-form html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.custom-form input,
.custom-form button,
.custom-form select,
.custom-form textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.custom-form a {
  color: #428bca;
  text-decoration: none;
}

.custom-form a:hover,
.custom-form a:focus {
  color: #2a6496;
  text-decoration: underline;
}

.custom-form a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.custom-form img {
  vertical-align: middle;
}

.custom-form hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.custom-form h1,
.custom-form .h1,
.custom-form h2,
.custom-form .h2,
.custom-form h3,
.custom-form .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.custom-form h4,
.custom-form .h4,
.custom-form h5,
.custom-form .h5,
.custom-form h6,
.custom-form .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.custom-form h1,
.custom-form .h1 {
  font-size: 36px;
}

.custom-form h2,
.custom-form .h2 {
  font-size: 30px;
}

.custom-form h3,
.custom-form .h3 {
  font-size: 24px;
}

.custom-form h4,
.custom-form .h4 {
  font-size: 18px;
}

.custom-form p {
  margin: 0 0 10px;
}

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

.custom-form ul,
.custom-form ol {
  margin-top: 0;
  margin-bottom: 10px;
}

.custom-form ul ul,
.custom-form ol ul,
.custom-form ul ol,
.custom-form ol ol {
  margin-bottom: 0;
}

.custom-form .row {
  margin-left: -15px;
  margin-right: -15px;
}

.custom-form .col-xs-1,
.custom-form .col-sm-1,
.custom-form .col-md-1,
.custom-form .col-lg-1,
.custom-form .col-xs-2,
.custom-form .col-sm-2,
.custom-form .col-md-2,
.custom-form .col-lg-2,
.custom-form .col-xs-3,
.custom-form .col-sm-3,
.custom-form .col-md-3,
.custom-form .col-lg-3,
.custom-form .col-xs-4,
.custom-form .col-sm-4,
.custom-form .col-md-4,
.custom-form .col-lg-4,
.custom-form .col-xs-5,
.custom-form .col-sm-5,
.custom-form .col-md-5,
.custom-form .col-lg-5,
.custom-form .col-xs-6,
.custom-form .col-sm-6,
.custom-form .col-md-6,
.custom-form .col-lg-6,
.custom-form .col-xs-7,
.custom-form .col-sm-7,
.custom-form .col-md-7,
.custom-form .col-lg-7,
.custom-form .col-xs-8,
.custom-form .col-sm-8,
.custom-form .col-md-8,
.custom-form .col-lg-8,
.custom-form .col-xs-9,
.custom-form .col-sm-9,
.custom-form .col-md-9,
.custom-form .col-lg-9,
.custom-form .col-xs-10,
.custom-form .col-sm-10,
.custom-form .col-md-10,
.custom-form .col-lg-10,
.custom-form .col-xs-11,
.custom-form .col-sm-11,
.custom-form .col-md-11,
.custom-form .col-lg-11,
.custom-form .col-xs-12,
.custom-form .col-sm-12,
.custom-form .col-md-12,
.custom-form .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-form .col-xs-1,
.custom-form .col-xs-2,
.custom-form .col-xs-3,
.custom-form .col-xs-4,
.custom-form .col-xs-5,
.custom-form .col-xs-6,
.custom-form .col-xs-7,
.custom-form .col-xs-8,
.custom-form .col-xs-9,
.custom-form .col-xs-10,
.custom-form .col-xs-11,
.custom-form .col-xs-12 {
  float: left;
}

.custom-form .col-xs-12 {
  width: 100%;
}

@media (min-width: 768px) {
  .custom-form .col-sm-1,
  .custom-form .col-sm-2,
  .custom-form .col-sm-3,
  .custom-form .col-sm-4,
  .custom-form .col-sm-5,
  .custom-form .col-sm-6,
  .custom-form .col-sm-7,
  .custom-form .col-sm-8,
  .custom-form .col-sm-9,
  .custom-form .col-sm-10,
  .custom-form .col-sm-11,
  .custom-form .col-sm-12 {
    float: left;
  }

  .custom-form .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .custom-form .col-md-1,
  .custom-form .col-md-2,
  .custom-form .col-md-3,
  .custom-form .col-md-4,
  .custom-form .col-md-5,
  .custom-form .col-md-6,
  .custom-form .col-md-7,
  .custom-form .col-md-8,
  .custom-form .col-md-9,
  .custom-form .col-md-10,
  .custom-form .col-md-11,
  .custom-form .col-md-12 {
    float: left;
  }

  .custom-form .col-md-12 {
    width: 100%;
  }

  .custom-form .col-md-7 {
    width: 58.33333333%;
  }
}

@media (min-width: 1200px) {
  .custom-form .col-lg-1,
  .custom-form .col-lg-2,
  .custom-form .col-lg-3,
  .custom-form .col-lg-4,
  .custom-form .col-lg-5,
  .custom-form .col-lg-6,
  .custom-form .col-lg-7,
  .custom-form .col-lg-8,
  .custom-form .col-lg-9,
  .custom-form .col-lg-10,
  .custom-form .col-lg-11,
  .custom-form .col-lg-12 {
    float: left;
  }

  .custom-form .col-lg-12 {
    width: 100%;
  }

  .custom-form .col-lg-8 {
    width: 66.66666667%;
  }

  .custom-form .col-lg-6 {
    width: 50%;
  }

  .custom-form .col-lg-4 {
    width: 33.33333333%;
  }

  .custom-form .col-lg-3 {
    width: 25%;
  }
}

.custom-form legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: var(--first-txt-color);
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

.custom-form label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
}

.custom-form input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.custom-form input[type="radio"],
.custom-form input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

.custom-form input[type="file"] {
  display: block;
}

.custom-form input[type="range"] {
  display: block;
  width: 100%;
}

.custom-form select[multiple],
.custom-form select[size] {
  height: auto;
}

.custom-form input[type="file"]:focus,
.custom-form input[type="radio"]:focus,
.custom-form input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.custom-form .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.custom-form .form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.custom-form .form-control::-moz-placeholder {
  color: var(--placeholder-color);
  opacity: 1;
}

.custom-form .form-control:-ms-input-placeholder {
  color: var(--placeholder-color);
}

.custom-form .form-control::-webkit-input-placeholder {
  color: var(--placeholder-color);
}

.custom-form .form-control[disabled],
.custom-form .form-control[readonly],
.custom-form fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}

.custom-form textarea.form-control {
  height: auto;
}

.custom-form input[type="search"] {
  -webkit-appearance: none;
}

.custom-form input[type="date"] {
  line-height: 24px;
}

.custom-form .form-group {
  margin-bottom: 15px;
}

.custom-form input[type="radio"][disabled],
.custom-form input[type="checkbox"][disabled],
.custom-form .radio[disabled],
.custom-form .radio-inline[disabled],
.custom-form .checkbox[disabled],
.custom-form .checkbox-inline[disabled],
.custom-form fieldset[disabled] input[type="radio"],
.custom-form fieldset[disabled] input[type="checkbox"],
.custom-form fieldset[disabled] .radio,
.custom-form fieldset[disabled] .radio-inline,
.custom-form fieldset[disabled] .checkbox,
.custom-form fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.custom-form .btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-form .btn:focus,
.custom-form .btn:active:focus,
.custom-form .btn.active:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.custom-form .btn:hover,
.custom-form .btn:focus {
  color: var(--first-txt-color);
  text-decoration: none;
}

.custom-form .btn:active,
.custom-form .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.custom-form .btn.disabled,
.custom-form .btn[disabled],
.custom-form fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom-form .btn-primary {
  color: #fff;
  background-color: var(--third-txt-color);
  border-color: var(--third-txt-color);
}

.custom-form .btn-primary:hover,
.custom-form .btn-primary:focus,
.custom-form .btn-primary:active,
.custom-form .btn-primary.active,
.custom-form .open .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #3276b1;
  border-color: #285e8e;
}

.custom-form .btn-primary:active,
.custom-form .btn-primary.active,
.custom-form .open .dropdown-toggle.btn-primary {
  background-image: none;
}

.custom-form .btn-primary.disabled,
.custom-form .btn-primary[disabled],
.custom-form fieldset[disabled] .btn-primary,
.custom-form .btn-primary.disabled:hover,
.custom-form .btn-primary[disabled]:hover,
.custom-form fieldset[disabled] .btn-primary:hover,
.custom-form .btn-primary.disabled:focus,
.custom-form .btn-primary[disabled]:focus,
.custom-form fieldset[disabled] .btn-primary:focus,
.custom-form .btn-primary.disabled:active,
.custom-form .btn-primary[disabled]:active,
.custom-form fieldset[disabled] .btn-primary:active,
.custom-form .btn-primary.disabled.active,
.custom-form .btn-primary[disabled].active,
.custom-form fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: #357ebd;
}

.custom-form .btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.custom-form .btn-block + .btn-block {
  margin-top: 5px;
}

.custom-form input[type="submit"].btn-block,
.custom-form input[type="reset"].btn-block,
.custom-form input[type="button"].btn-block {
  width: 100%;
}

.custom-form [data-toggle="buttons"] > .btn > input[type="radio"],
.custom-form [data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.custom-form .clearfix:before,
.custom-form .clearfix:after,
.custom-form .container:before,
.custom-form .container:after,
.custom-form .container-fluid:before,
.custom-form .container-fluid:after,
.custom-form .row:before,
.custom-form .row:after,
.custom-form .form-horizontal .form-group:before,
.custom-form .form-horizontal .form-group:after,
.custom-form .btn-toolbar:before,
.custom-form .btn-toolbar:after,
.custom-form .btn-group-vertical > .btn-group:before,
.custom-form .btn-group-vertical > .btn-group:after,
.custom-form .nav:before,
.custom-form .nav:after,
.custom-form .navbar:before,
.custom-form .navbar:after,
.custom-form .navbar-header:before,
.custom-form .navbar-header:after,
.custom-form .navbar-collapse:before,
.custom-form .navbar-collapse:after,
.custom-form .pager:before,
.custom-form .pager:after,
.custom-form .panel-body:before,
.custom-form .panel-body:after,
.custom-form .modal-footer:before,
.custom-form .modal-footer:after {
  content: " ";
  display: table;
}

.custom-form .clearfix:after,
.custom-form .container:after,
.custom-form .container-fluid:after,
.custom-form .row:after,
.custom-form .form-horizontal .form-group:after,
.custom-form .btn-toolbar:after,
.custom-form .btn-group-vertical > .btn-group:after,
.custom-form .nav:after,
.custom-form .navbar:after,
.custom-form .navbar-header:after,
.custom-form .navbar-collapse:after,
.custom-form .pager:after,
.custom-form .panel-body:after,
.custom-form .modal-footer:after {
  clear: both;
}

@-ms-viewport {
  width: device-width;
}

@font-face {
  font-family: "themovation-icons";
  src: url("https://www-flughafentaxi-wien.at/wp-content/themes/generatepress_child/assets/css/../fonts/themovation-icons.eot");
  src: url("https://www-flughafentaxi-wien.at/wp-content/themes/generatepress_child/assets/css/../fonts/themovation-icons.eot?#iefix")
      format("embedded-opentype"),
    url("https://www-flughafentaxi-wien.at/wp-content/themes/generatepress_child/assets/css/../fonts/themovation-icons.woff")
      format("woff"),
    url("https://www-flughafentaxi-wien.at/wp-content/themes/generatepress_child/assets/css/../fonts/themovation-icons.ttf")
      format("truetype"),
    url("https://www-flughafentaxi-wien.at/wp-content/themes/generatepress_child/assets/css/../fonts/themovation-icons.svg#themovation-icons")
      format("svg");
  font-weight: normal;
  font-style: normal;
}

.custom-form img {
  max-width: 100%;
  height: auto !important;
}

.custom-form label {
  font-weight: 600;
}

.custom-form .container {
  width: calc(100% - 30px);
  max-width: 1170px !important;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.custom-form
  .wp-block-embed.is-type-video
  .wp-block-embed__wrapper
  .entry-content-asset {
  position: relative;
}

.custom-form
  .wp-block-embed.is-type-video
  .wp-block-embed__wrapper
  .entry-content-asset:before {
  content: "";
  display: block;
  padding-top: 50%;
}

.custom-form
  .wp-block-embed.is-type-video.wp-embed-aspect-1-1
  .wp-block-embed__wrapper
  .entry-content-asset:before {
  padding-top: 100%;
}

.custom-form
  .wp-block-embed.is-type-video.wp-embed-aspect-1-2
  .wp-block-embed__wrapper
  .entry-content-asset:before {
  padding-top: 200%;
}

.custom-form
  .wp-block-embed.is-type-video.wp-embed-aspect-4-3
  .wp-block-embed__wrapper
  .entry-content-asset:before {
  padding-top: 75%;
}

.custom-form
  .wp-block-embed.is-type-video.wp-embed-aspect-16-9
  .wp-block-embed__wrapper
  .entry-content-asset:before {
  padding-top: 56.25%;
}

.custom-form
  .wp-block-embed.is-type-video.wp-embed-aspect-18-9
  .wp-block-embed__wrapper
  .entry-content-asset:before {
  padding-top: 50%;
}

.custom-form
  .wp-block-embed.is-type-video.wp-embed-aspect-21-9
  .wp-block-embed__wrapper
  .entry-content-asset:before {
}

.custom-form .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

p,
.custom-form li {
  font-size: 15px;
  line-height: 165%;
}

.custom-form p {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #5c5c5c;
  -webkit-font-smoothing: antialiased;
}

.custom-form a {
  color: #3a3b74;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.custom-form a:hover {
  color: #5c5c5c;
}

.custom-form h1 {
  font-size: 56px;
}

.custom-form h2 {
  font-size: 35px;
  margin-bottom: 15px;
}

.custom-form h3 {
  font-size: 30px;
}

.custom-form h4 {
  font-size: 25px;
}

@media (max-width: 991px) {
  .custom-form h1:not(.product_title) {
    font-size: 56px;
  }
}

@media (max-width: 767px) {
  .custom-form h1:not(.product_title) {
    font-size: 48px;
  }
}

@media (max-width: 479px) {
  .custom-form h1 {
    font-size: 40px;
  }

  .custom-form h2 {
    font-size: 30px;
  }

  .custom-form h3 {
    font-size: 27px;
  }

  .custom-form h4 {
    font-size: 23px;
  }
}

.custom-form .btn {
  font-size: 15px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 50px;
  white-space: normal;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.custom-form .btn:focus {
  color: #fff;
}

.custom-form .btn:active,
.custom-form .btn.active {
  background-image: none;
  outline: 0;
  box-shadow: 0 0 0;
}

.custom-form a:focus,
.button:focus,
.custom-form .btn:focus {
  outline: none;
}

.custom-form form input,
.custom-form .frm_forms form label,
.custom-form .with_frm_style label.frm_primary_label,
.custom-form .with_frm_style.frm_login_form label,
.custom-form .frm_forms form input,
.custom-form .frm_forms form textarea,
.custom-form .with_frm_style input[type="text"],
.custom-form .with_frm_style input[type="password"],
.custom-form .with_frm_style input[type="email"],
.custom-form .with_frm_style input[type="number"],
.custom-form .with_frm_style input[type="url"],
.custom-form .with_frm_style input[type="tel"],
.custom-form .with_frm_style select,
.custom-form .frm_style_formidable-style.with_frm_style select,
.custom-form .with_frm_style textarea,
.custom-form .frm_style_formidable-style.with_frm_style textarea,
.custom-form
  #content
  .with_frm_style
  input:not([type="submit"]):not([type="button"]),
.custom-form #content .with_frm_style select,
.custom-form #content .with_frm_style textarea,
.custom-form .with_frm_style .chzn-container,
.custom-form .with_frm_style input[type="file"],
.custom-form .with_frm_style .frm_submit input[type="submit"],
.custom-form .with_frm_style .frm_submit input[type="button"],
.custom-form .frm_form_submit_style,
.custom-form .with_frm_style.frm_login_form input[type="submit"],
.custom-form a.frm_save_draft,
.custom-form .with_frm_style #frm_field_cptch_number_container,
.custom-form .with_frm_style .frm_radio label,
.custom-form .with_frm_style .frm_checkbox label,
.custom-form .frm_forms .frm_description,
.custom-form .with_frm_style p.description,
.custom-form .with_frm_style div.description,
.custom-form .with_frm_style div.frm_description,
.custom-form .frm_style_formidable-style.with_frm_style .frm_error {
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  box-shadow: 0 0 0 !important;
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="url"],
.custom-form input[type="password"],
.custom-form input[type="number"],
.custom-form input[type="tel"],
.custom-form textarea {
  color: #5c5c5c !important;
  -webkit-appearance: none;
}

.custom-form form select:focus,
.custom-form form textarea:focus,
.custom-form form input:focus {
  border: 1px solid #3a3b74 !important;
  outline: 0 !important;
}

.custom-form form input[type="submit"],
.custom-form .with_frm_style .frm_submit input[type="submit"],
.custom-form .with_frm_style .frm_submit input[type="button"],
.custom-form .frm_form_submit_style,
.custom-form .with_frm_style.frm_login_form input[type="submit"] {
  background: #3a3b74;
  color: #fff;
  padding: 10px 30px;
  margin-top: 0;
  border: 0;
  opacity: 1;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.custom-form form input[type="submit"]:hover,
.custom-form .with_frm_style .frm_submit input[type="submit"]:hover,
.custom-form .with_frm_style .frm_submit input[type="button"]:hover,
.custom-form .frm_form_submit_style:hover,
.custom-form .with_frm_style.frm_login_form input[type="submit"]:hover {
  background: #3a3b74;
  color: #fff;
  opacity: 0.9;
}

.custom-form .form-control {
  height: 46px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 0, 0 0 0;
  box-shadow: inset 0 0 0, 0 0 0;
}

.custom-form .form-control:focus {
  border-color: #ccc;
  -webkit-box-shadow: inset 0 0 0, 0 0 0;
  box-shadow: inset 0 0 0, 0 0 0;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -40%, 0);
    transform: translate3d(0, -40%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 40%, 0);
    transform: translate3d(0, 40%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.custom-form .wp-caption {
  max-width: 100%;
  height: auto;
}

.custom-form .wp-caption,
.custom-form .wp-caption-text,
.custom-form .gallery-caption {
  color: #5c5c5c;
}

.custom-form .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.custom-form #wpadminbar {
  z-index: 1000000 !important;
}

.custom-form input,
.custom-form select,
.custom-form textarea {
  border: 1px solid #e7e7e7 !important;
  background-color: #fff !important;
  border-radius: 25px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  -webkit-appearance: none;
}

.custom-form .banner2 {
  box-shadow: unset;
  background: unset;
  padding: 0;
  border: 0;
  border-radius: unset;
}

.custom-form1 {
  background: #fff;
  background: #f7f7f7;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
  padding: 60px 40px;
  margin-top: 0px !important;
}

.custom-form .column-content {
  padding-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 40px;
}

.custom-form .column-content .widget h3 {
  color: var(--first-txt-color);
  font-size: 40px;
  margin: 0 !important;
  text-align: center;
  font-family: "afacad-bold", sans-serif;
}

.custom-form .column-content .alert-box {
  margin-bottom: 0;
}

.custom-form .column-content .alert-box li {
  color: #74787c;
  font-size: 16px;
}

.custom-form #formular .field-label {
  font-size: 16px !important;
  text-transform: capitalize;
}

.custom-form #formular .field input {
  margin: 0;
  background-color: #fff !important;
  color: #343c4f !important;
  border-radius: 25px;
  font-size: 16px !important;
  padding: 12px 16px !important;
  margin-bottom: 15px;
  font-family: "afacad-regular", sans-serif;
}

.custom-form #formular .field input::placeholder {
  color: var(--placeholder-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  font-family: "afacad-regular", sans-serif;
}

.custom-form #formular .field select {
  margin: 0;
  background-color: #fff !important;
  color: #343c4f !important;
  border-radius: 25px;
  font-size: 16px;
  padding: 15px 16px !important;
  font-weight: 400;
  height: unset;
  margin-bottom: 15px;
  line-height: 22px;
}

.custom-form .tagline span {
  color: var(--first-txt-color);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
  font-family: "afacad-bold", sans-serif;
}

.custom-form #child_btn {
  margin-bottom: 20px;
}

.custom-form .field-zusat {
  font-size: 20px !important;
  color: var(--first-txt-color) !important;
  margin: 10px 0;
  font-weight: 400;
  font-family: "afacad-bold", sans-serif;
}

.custom-form .info1 h2 {
  color: var(--first-txt-color);
  font-weight: 700;
  font-size: 20px;
  font-family: "afacad-bold", sans-serif;
}

.custom-form .cstm-price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--first-txt-color);
  line-height: 1.5;
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}

.custom-form .cstm-price-box h4 {
  color: var(--first-txt-color);
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}

.custom-form #gesamtfull {
  color: var(--first-txt-color);
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 700;
}

.custom-form #gesamtfull span {
  color: var(--third-txt-color);
}

.custom-form button#ORDER {
  padding: 19px 31px 19px 31px !important;
  width: unset;
  display: block;
  margin: auto;
  border-radius: 0px;
  outline: none;
  font-size: 14px;
  word-spacing: 2px;
  text-transform: uppercase;
  background: var(--third-txt-color) !important;
  transition: 0.6s;
  position: relative;
  z-index: 99;
  overflow: hidden;
  margin-top: 30px;
}
.custom-form button#ORDER,
button.modalSaveBtn {
  display: block;
  border-radius: 0px;
  font-size: 14px;
  text-transform: uppercase;
  background: var(--third-txt-color) !important;
  transition: 0.6s;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.custom-form button#ORDER i {
  color: #fff;
  margin-left: 10px;
}

.custom-form button#ORDER:hover,
button.modalSaveBtn:hover {
  background: var(--fourth-back-color) !important;
}

.custom-form .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.custom-form .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-form .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eaeaea;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.custom-form .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.custom-form input:checked + .slider {
}

.custom-form input:focus + .slider {
}

.custom-form input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.custom-form .slider.round {
  border-radius: 34px;
  min-width: 60px;
}

.custom-form .slider.round:before {
  border-radius: 50%;
}

.custom-form .slider.round {
  border-radius: 34px;
}

.custom-form .slider.round:before {
  border-radius: 50%;
}

.custom-form .smart-option-ui {
  padding-left: 28px !important;
  font-size: 16px;
  width: 255px;
  display: block;
}

.custom-form #returnfields {
  margin: 2em 0 0 0;
  padding: 20px;
  border-radius: 10px;
  background-color: #cd010117;
  border-style: dashed;
  border-width: 3px;
  border-color: #9d9d9d;
}

.custom-form legend {
  text-align: left;
  border-bottom: 0;
}

.custom-form i {
  color: var(--third-txt-color);
  font-size: 16px;
}

.custom-form .field i {
  position: absolute;
  right: 30px;
  top: 19px;
}

.custom-form img.field-img {
  position: absolute;
  right: 30px;
  top: 16px;
}

.formzum label,
.custom-form .select2-selection__rendered {
  position: relative;
}

.custom-form button#ORDER:after,
button.modalSaveBtn:after {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 150%;
  z-index: -1;
  -webkit-transition: all 0.6s ease 0s;
  -moz-transition: all 0.6s ease 0s;
  -o-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.custom-form button#ORDER:after,
button.modalSaveBtn:after {
  background: #1b1b1b;
  opacity: 0.5;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.custom-form button#ORDER:hover:after,
button.modalSaveBtn:hover:after {
  height: 140%;
  opacity: 1;
}

.custom-form .tg-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-form .infomation-card-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
}

.custom-form .infomation-card-list ul li {
  padding: 1em 2.7em 1em 1.2em;
  background-color: #fff;
  height: 100%;
  box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.custom-form .infomation-card-list ul li i {
  position: absolute;
  top: 20px;
  right: 20px;
}

.custom-form textarea#note {
  resize: none;
}

@media (max-width: 1199px) {
  .custom-form .column-content .widget h3 {
    font-size: 36px;
  }

  .custom-form .column-content {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .custom-form .infomation-card-list ul {
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .custom-form .site-content {
    padding: 60px 15px 60px 15px !important;
  }

  .custom-form .column-content .widget h3 {
    font-size: 30px;
  }

  .custom-form .widget ul.alert-box {
    padding-left: 10px;
  }

  .custom-form .column-content {
    margin-bottom: 0;
  }

  .custom-form hr.ADDADDRESS_OPT {
    margin: 10px 0;
  }

  .custom-form .tg-checkbox-text {
    width: 80%;
    font-size: 13px;
  }

  .custom-form .tg-checkbox-text a strong {
    font-size: 13px;
  }

  .custom-form .infomation-card-list ul {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }

  .custom-form .custom-form1 {
    padding: 50px 15px;
  }

  .custom-form .formzum,
  .custom-form .banner2-wrapper {
    padding: 0 !important;
  }

  .custom-form img.field-img {
    right: 16px;
    top: 16px;
  }

  .custom-form .field i {
    right: 16px;
    top: 19px;
  }
}

@media (max-width: 575px) {
  .custom-form .custom-form1 {
    padding: 50px 10px;
  }
}

@media (max-width: 480px) {
  .custom-form .column-content .widget h3 {
    font-size: 26px;
  }

  .custom-form .site-content {
    padding: 60px 0 60px 0px !important;
  }

  .custom-form .custom-form1 {
    padding: 30px 10px;
  }

  .formzum,
  .custom-form .banner2-wrapper {
    padding: 10px 0 !important;
  }
}

@media (max-width: 375px) {
  .custom-form .smart-option-ui {
    width: 230px;
  }
}

@media (max-width: 320px) {
  .custom-form button#ORDER,
  button.modalSaveBtn {
    padding: 12px !important;
  }
}

.custom-form button,
.custom-form input,
.custom-form optgroup,
.custom-form select,
.custom-form textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

.custom-form [type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

.custom-form [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.custom-form ::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

.custom-form :-moz-focusring {
  outline: 1px dotted ButtonText;
}

.custom-form body,
.custom-form button,
.custom-form input,
.custom-form select,
.custom-form textarea {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  font-weight: 400;
  text-transform: none;
  font-size: 17px;
  line-height: 1.5;
}

.custom-form p {
  margin-bottom: 1.5em;
}

.custom-form h1,
.custom-form h2,
.custom-form h3,
.custom-form h4,
.custom-form h5,
.custom-form h6 {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

.custom-form hr {
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
  height: 1px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.custom-form h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: none;
}

.custom-form h2 {
  font-size: 35px;
  margin-bottom: 20px;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: none;
}

.custom-form h3 {
  font-size: 29px;
  margin-bottom: 20px;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: none;
}

.custom-form h4 {
  font-size: 24px;
}

.custom-form h4,
.custom-form h5,
.custom-form h6 {
  margin-bottom: 20px;
}

.custom-form ol,
.custom-form ul {
  margin: 0 0 1.5em 3em;
}

.custom-form ul {
  list-style: disc;
}

.custom-form li > ol,
.custom-form li > ul {
  margin-bottom: 0;
  margin-left: 1.5em;
}

.custom-form b,
.custom-form strong {
  font-weight: 700;
}

.custom-form img {
  height: auto;
  max-width: 100%;
}

.custom-form button,
.custom-form input[type="button"],
.custom-form input[type="reset"],
.custom-form input[type="submit"] {
  background: #55555e;
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-appearance: button;
  padding: 10px 20px;
}

.custom-form input[type="email"],
.custom-form input[type="number"],
.custom-form input[type="password"],
.custom-form input[type="search"],
.custom-form input[type="tel"],
.custom-form input[type="text"],
.custom-form input[type="url"],
.custom-form select,
.custom-form textarea {
  border: 1px solid;
  border-radius: 0;
  padding: 10px 15px;
  max-width: 100%;
}

.custom-form textarea {
  width: 100%;
}

.custom-form a,
.custom-form button,
.custom-form input {
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
}

.custom-form a {
  text-decoration: none;
}

.custom-form .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.custom-form .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.custom-form .main-navigation {
  z-index: 100;
  padding: 0;
  clear: both;
  display: block;
}

.custom-form .main-navigation a {
  display: block;
  text-decoration: none;
  font-weight: 400;
  text-transform: none;
  font-size: 15px;
}

.custom-form .main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.custom-form .main-navigation .main-nav ul li a {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 60px;
}

.custom-form .inside-navigation {
  position: relative;
}

.custom-form .main-navigation .inside-navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.custom-form .main-navigation .main-nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.custom-form .main-navigation li {
  position: relative;
}

.custom-form .main-navigation ul ul {
  display: block;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
  float: left;
  position: absolute;
  left: -99999px;
  opacity: 0;
  z-index: 99999;
  width: 200px;
  text-align: left;
  top: auto;
  transition: opacity 80ms linear;
  transition-delay: 0s;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

.custom-form .main-navigation ul ul a {
  display: block;
}

.custom-form .main-navigation ul ul li {
  width: 100%;
}

.custom-form .main-navigation .main-nav ul ul li a {
  line-height: normal;
  padding: 10px 20px;
  font-size: 14px;
}

.custom-form .main-navigation:not(.toggled) ul li.sfHover > ul,
.custom-form .main-navigation:not(.toggled) ul li:hover > ul {
  left: auto;
  opacity: 1;
  transition-delay: 150ms;
  pointer-events: auto;
  height: auto;
  overflow: visible;
}

.custom-form .main-navigation:not(.toggled) ul ul li.sfHover > ul,
.custom-form .main-navigation:not(.toggled) ul ul li:hover > ul {
  left: 100%;
  top: 0;
}

.custom-form .nav-float-right .main-navigation ul ul ul {
  top: 0;
}

.custom-form .site-header {
  position: relative;
}

.custom-form .inside-header {
  padding: 20px 40px;
}

.custom-form .main-title {
  margin: 0;
  font-size: 25px;
  line-height: 1.2em;
  word-wrap: break-word;
  font-weight: 700;
  text-transform: none;
}

.custom-form .site-logo {
  display: inline-block;
  max-width: 100%;
}

.custom-form .site-header .header-image {
  vertical-align: middle;
}

.custom-form .inside-header {
  display: flex;
  align-items: center;
}

.custom-form .nav-float-right #site-navigation {
  margin-left: auto;
}

.custom-form .site-branding-container {
  display: inline-flex;
  align-items: center;
  text-align: left;
  flex-shrink: 0;
}

.custom-form .site-branding-container .site-logo {
  margin-right: 1em;
}

.custom-form .entry-header,
.custom-form .site-content {
  word-wrap: break-word;
}

.custom-form .wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  position: relative;
}

.custom-form .wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0 auto 0;
  max-width: 100%;
}

.custom-form .wp-caption .wp-caption-text {
  font-size: 75%;
  padding-top: 5px;
  opacity: 0.8;
}

.custom-form .wp-caption img {
  position: relative;
  vertical-align: bottom;
}

.custom-form .widget select {
  max-width: 100%;
}

.custom-form .widget ol,
.custom-form .widget ul {
  margin: 0;
}

.custom-form .widget ul li {
  list-style-type: none;
  position: relative;
  margin-bottom: 0.5em;
}

.custom-form .widget ul li ul {
  margin-left: 1em;
  margin-top: 0.5em;
}

.custom-form .site-content {
  display: flex;
}

.custom-form .grid-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.custom-form .one-container .site-content {
  padding: 40px;
}

.custom-form .gp-icon {
  display: inline-flex;
  align-self: center;
}

.custom-form .gp-icon svg {
  height: 1em;
  width: 1em;
  top: 0.125em;
  position: relative;
  fill: currentColor;
}

.custom-form .close-search .icon-search svg:first-child,
.custom-form .icon-menu-bars svg:nth-child(2),
.custom-form .icon-search svg:nth-child(2),
.custom-form .toggled .icon-menu-bars svg:first-child {
  display: none;
}

.custom-form .container.grid-container {
  width: auto;
}

.custom-form .menu-toggle,
.custom-form .mobile-bar-items,
.custom-form .sidebar-nav-mobile {
  display: none;
}

.custom-form .menu-toggle {
  padding: 0 20px;
  line-height: 60px;
  margin: 0;
  font-weight: 400;
  text-transform: none;
  font-size: 15px;
  cursor: pointer;
}

.custom-form button.menu-toggle {
  background-color: transparent;
  flex-grow: 1;
  border: 0;
  text-align: center;
}

.custom-form button.menu-toggle:active,
.custom-form button.menu-toggle:focus,
.custom-form button.menu-toggle:hover {
  background-color: transparent;
}

.custom-form .mobile-menu-control-wrapper {
  display: none;
  margin-left: auto;
  align-items: center;
}

@media (max-width: 768px) {
  .custom-form .hide-on-mobile {
    display: none !important;
  }

  .custom-form a,
  .custom-form body,
  .custom-form button,
  .custom-form input,
  .custom-form select,
  .custom-form textarea {
    transition: all 0s ease-in-out;
  }

  .custom-form .inside-header {
    flex-direction: column;
    text-align: center;
  }

  .custom-form .site-content {
    flex-direction: column;
  }
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-75px);
    transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(75px);
    transform: translateY(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(75px);
    transform: translateY(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(75px);
    transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.custom-form .formzum {
  padding: 10px;
}

.custom-form .formzum input,
.custom-form .formzum select,
.custom-form .formzum textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #f8f8f8;
}

.custom-form .formzum label,
.custom-form .select2-selection__rendered {
  display: block;
  margin-bottom: 5px;
  color: var(--first-txt-color);
  font-size: 14px;
}

.custom-form .form-group {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .custom-form .formzum,
  .custom-form .banner2-wrapper {
    padding: 10px;
  }
}

.custom-form #WITHRETURN {
  width: unset;
}

.custom-form #return_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.custom-form #child_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-form #agb {
  width: unset;
}

.custom-form #CHILD {
  width: unset;
}

.custom-form
  .slideout-navigation.main-navigation:not(.is-open):not(.slideout-transition) {
  display: none;
}

.custom-form .slideout-overlay {
  z-index: 100000;
  position: fixed;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}

.custom-form .slideout-overlay button.slideout-exit {
  position: fixed;
  top: 0;
  background-color: transparent;
  color: #fff;
  font-size: 30px;
  border: 0;
  opacity: 0;
}

.custom-form button.slideout-exit:hover {
  background-color: transparent;
}

.custom-form .slideout-navigation button.slideout-exit {
  background: 0 0;
  width: 100%;
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
  box-sizing: border-box;
  border: 0;
}

.custom-form .slideout-navigation .main-nav,
.custom-form .slideout-navigation .slideout-widget:not(:last-child) {
  margin-bottom: 40px;
}

.custom-form .slideout-navigation:not(.do-overlay) .main-nav {
  width: 100%;
  box-sizing: border-box;
}

.custom-form .slideout-navigation .slideout-menu {
  display: block;
}

.custom-form #generate-slideout-menu {
  z-index: 100001;
}

.custom-form #generate-slideout-menu .slideout-menu li {
  float: none;
  width: 100%;
  clear: both;
  text-align: left;
}

.custom-form #generate-slideout-menu.main-navigation ul ul {
  display: none;
}

.custom-form #generate-slideout-menu .slideout-menu li.sfHover > ul,
.custom-form #generate-slideout-menu .slideout-menu li:hover > ul {
  display: none;
}

.custom-form #generate-slideout-menu.main-navigation .main-nav ul ul {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

.custom-form .slide-opened .slideout-exit:not(.has-svg-icon):before,
.custom-form
  .slideout-navigation
  button.slideout-exit:not(.has-svg-icon):before {
  content: "";
  font-family: "GP Premium";
  line-height: 1em;
  width: 1.28571429em;
  text-align: center;
  display: inline-block;
}
.swal2-styled.swal2-cancel {
  background-color: var(--fourth-back-color) !important;
}
.custom-form .gesamtfull-text {
  font-size: 16px;
}
.custom-form .form-footer {
  display: block;
}
.custom-form span.select2{
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .custom-form .slideout-overlay button.slideout-exit {
    font-size: 20px;
    padding: 10px;
  }

  .custom-form .slideout-overlay {
    top: -100px;
    height: calc(100% + 100px);
    height: calc(100vh + 100px);
    min-height: calc(100% + 100px);
  }
}
