/* Custom css code goes here */
/* COLORS */

/* Blue #00589C - CTAs, links, primary buttons, headers */
/* Yellow #FFC400 - Secondary buttons, highlights, badges */
/* Green #008C76 - “Success” messages, tabs, select focus rings */
/* Orange #FF8C00 - Warning banners, hover states on yellow buttons */
/* Red #D32F2F - Form errors, destructive actions */
/* Black #212121 - Main body copy, H1–H3 headings */
/* Backgrounds #616161 - Secondary copy, hints, captions */
/* light #F5F7F9 - Page background, section backgrounds */
/* light grey #E0E0E0 - Divider lines, form field borders */

:root {
    --blue: #00589C;
    --yellow: #FFC400;
    --green: #008C76;
    --orange: #FF8C00;
    --red: #D32F2F;
    --black: #212121;
    --grey: #616161;
    --light-white: #F5F7F9;
    --light-grey: #E0E0E0;
    --a-bs: 0 4px 10px 0 rgba(0, 0, 0, 0.25);
    --c-bck: #e8f0f6;
    --a-overlay: rgba(33, 33, 33, 0.3);
  }

@font-face {
    font-family: 'Volkhov';
    src: url(../fonts/Volkhov/Volkhov-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'Google Sans';
    src: url(../fonts/GoogleSans/GoogleSans-Regular.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/OpenSans/OpenSans-VariableFont.ttf);
    font-weight: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf);
    font-weight: normal;
}

h1, h2, h3, h4, h5, h6,
body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
}

p, a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: var(--black);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
}

a:hover {
    color: var(--orange);
}

.a-bs {
    box-shadow: var(--a-bs);
}

.site-main section {
    margin-bottom: 0;
}

.grid-container.full-width {
    max-width: 100%;
}

.site-logo {
    z-index: 2;
}

body.home #main.site-main {
    margin: 0;
}

.a-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    background-color: var(--a-overlay);
}

.a-title {
    font-family: 'Volkhov', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

.a-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    color: #5E6282;
    margin-bottom: 10px;
}

.a-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #5E6282;
}

h3.a-title-3 {
    font-family: 'Volkhov', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 35px;
}

/* .site-content#content {
    display: block;
} */

.a-table {
    text-align: center;
    margin-bottom: 15px;
}

.table-info {
    color: #5E6282;
}

.table-info a {
    font-weight: bold;
    color: #5E6282;
}

.a-table .top {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-top: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    border-right: 1px solid var(--light-grey);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px;
    background: var(--light-white);
}

.a-table .top span {
    font-size: 18px;
    font-weight: 600;
    color: #5E6282;
    text-transform: uppercase;
    position: relative;
}

.a-table .top span:after {
    content:'';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('../images/icons/icon-arrows-grey.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.a-table .bottom {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid var(--light-grey);
    border-left: 1px solid var(--light-grey);
    border-right: 1px solid var(--light-grey);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
}

.a-table .bottom span {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-transform: capitalize;
}


.a-table .top .top-item,
.a-table .bottom .bottom-item {
    flex: 1;
}

.t-center {
    text-align: center;
}

/* BUTTONS */

.default-btn {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    line-height: normal;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    margin: 0 auto;
    padding: 20px 40px;
    text-decoration: none;
    display: block;
    max-width: fit-content;
}

.blue-btn {
    background: var(--blue);
    color: #ffffff;
}

.blue-btn:hover {
    color: #ffffff;
}

.blue-transparent-btn {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    color: var(--blue);
}

.blue-transparent-btn:hover {
    color: var(--blue);
}

.blue-transparent-btn:after {
    content:'';
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url('../images/icons/icon-right-circle-blue.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 5px;
}

.blue-border-btn {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    border: 1px solid var(--blue);
    color: var(--blue);
    margin: 0 0 20px;
    text-transform: capitalize;
}

.blue-border-btn:hover {
    background: var(--blue);
    color: #ffffff;
}

.site-header {
    z-index: 10;
}

.site-header .inside-header {
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    padding: 10px 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--a-bs);
}

.main-navigation .main-nav ul li a {
    font-family: 'Google Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0;
    color: #212832;
}

#page-hero {
    position: relative;
    margin-bottom: 80px;
    padding-bottom: 100px;
}

#page-hero.has-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: fit-content;
}

#page-hero.has-image .grid-container {
    position: relative;
    z-index: 2;
}

.blue-overlay {
    background: #FFFFFF;
    background: linear-gradient(275deg,rgba(255, 255, 255, 0.3) 0%, rgba(0, 88, 156, 0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#home-hero {
    position: relative;
    padding: 140px 0;
}

img.home-bck {
    position: absolute;
    top: -20px;
    right: 0;
    z-index: -2;
}

#home-hero .grid-container {
    padding-top: 100px;
}

.form-box {
    font-family: 'Google Sans', sans-serif;
    margin-bottom: 15px;
}

.form-box input[type="text"] {
    border: solid 1px var(--light-grey);
    border-radius: 10px;
    max-width: 420px;
    width: 100%;
    background: var(--light-white);
    padding: 15px 30px;
    font-size: 16px;
    color: #39425D;
    height: 60px;
}

.form-box input[type="submit"] {
    background: var(--blue);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    margin-left: 10px;
    max-width: fit-content;
    width: 100%;
}

#newsletter {
    margin-bottom: 130px;
}

#newsletter .grid-container {
    position: relative;
    background-color: var(--c-bck);
    border-radius: 20px;
    padding: 70px 0;
    border-top-left-radius: 130px;
}

#newsletter .newsletter-bck-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

#newsletter .newsletter-bck-right {
    position: absolute;
    right: 0;
    top: 0;
}

#newsletter .icon-send {
    position: absolute;
    top: -20px;
    right: -20px;
}

#newsletter .newsletter-wrap {
    position: relative;
    z-index: 2;
}

#newsletter .form-box {
    text-align: center;
}

#newsletter .form-box input[type="submit"] {
    background-color: var(--yellow);
    color: var(--black);
}

#newsletter .form-box input[type="text"] {
    background: #ffffff;
}

#newsletter .form-box input[type="submit"]:hover {
    background-color: var(--orange);
}


.hero-subtitle {
    margin-bottom: 25px;
}

.hero-title.a-title {
    text-align: left;
    max-width: 700px;
    font-size: 75px;
    font-weight: 400;
    line-height: 89px;
}

.weather-box {
    border: solid 1px #00589C30;
    max-width: fit-content;
    padding: 10px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather-box span {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.weather-box .separator {
    color: #00589C30;
}

.weather-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.weather-item {
    flex: 1;
    text-align: center;
    padding: 40px;
    border-radius: 36px;
}

.weather-item:hover {
    box-shadow: var(--a-bs);
    background: #fff;
    cursor: pointer;
}

.weather-item img {
    margin-bottom: 30px;
}

#airport-info .a-title {
    margin-bottom: 50px;
}

.weather-item .location-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

#airport-info {
    margin-bottom: 150px;
}

#news-alerts {
    padding-bottom: 150px;
}

#news-alerts.airports {
    padding-bottom: 100px;
}

#news-alerts.airports .latest-news-box {
    flex: 1;
    align-self: stretch;
}

#news-alerts .a-title {
    margin-bottom: 60px;
}

h3.post-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-info span {
    font-size: 16px;
    font-weight: 500;
    color: #84829A;

}

.latest-news-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.latest-news-box {
    flex: 0 1 315px;
    border-radius: 24px;
    box-shadow: var(--a-bs);
}

.latest-news-box .bottom {
    padding: 25px;
}

.latest-news-box .post-image {
    height: 330px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
}


span.footer-copyright {
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

footer .inside-site-info {
    padding: 30px 0 50px;
    border-top: 1px solid #E0E0E042;
}

.inside-footer-widgets ul#menu-main-menu-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 0;
}

.inside-footer-widgets ul#menu-main-menu-1 li {
    margin-bottom: 0;
}

.inside-footer-widgets ul#menu-main-menu-1 li > a{
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.airport-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.airport-socials .social-item {
    margin-bottom: 0;
}

section#to-from-airport {
    background-color: var(--light-white);
    background-image: url('../images/general/to-from-airport-background.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    padding: 100px 0;

}

section#to-from-airport .a-subtitle,
section#to-from-airport .a-title {
    text-align: left;
}

section#to-from-airport .a-subtitle {
    color: var(--blue);
}

#to-from-airport .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;

}

#to-from-airport .to-from-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

#to-from-airport .to-from-box {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
}

#to-from-airport .to-from-box .location {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 20px;
}

#to-from-airport .to-from-box .info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

#to-from-airport .to-from-box .info-item {
    flex: 1;
    border: 1px solid #00589C24;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

#to-from-airport .info-item span.price {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
}

#services {
    padding: 115px 0;
    margin: 0;
}

#services .a-title {
    margin-bottom: 30px;
}

#services .services-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

#services .service-box {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    padding: 40px;
    border: 4px solid transparent;
    box-shadow: var(--a-bs);
}

#services .service-box:hover {
    border: 4px solid var(--yellow);
}

#services .service-box img {
    margin-bottom: 25px;
}

#services .service-box .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

#services .service-box .description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 20px;
    color: #5E6282;
}

#services .disclaimer {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    color: var(--grey);
}

#book-flights {
    padding: 0 0 100px;
}

#book-flights .a-title,
#book-flights .a-subtitle {
    text-align: left;
}

#book-flights .grid-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
}

#book-flights .grid-container .left,
#book-flights .grid-container .right {
    flex: 1;
}

#book-flights .grid-container .left {
    position: relative;
}

#book-flights .grid-container .airplane {
    position: absolute;
    top: -80px;
    right: 0;
}

#discover-slider {
    padding: 50px 0;
}

#discover-slider .a-title {
    margin-bottom: 50px;
}

#newsletter .subtitle {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--blue);
    text-transform: uppercase; 
}

#newsletter .title {
    font-size: 33px;
    font-weight: 600;
    line-height: 54px;
    text-align: center;    
    margin-bottom: 40px;
}

.t-guide-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 25px;
}

#bus-details {
    margin-bottom: 80px;
}

#terminal-guide {
    margin-bottom: 150px;
}

#terminal-guide .t-guide-item {
    flex: 1;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--a-bs);
}

#terminal-guide .t-guide-item img {
    margin-bottom: 20px;
}

body.a-title-desc .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}

body.a-title-desc .description {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #5E6282;
}

.pp-item .title,
.ps-item-row .ps-item .title,
.transport-hub-item .title {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

#transport-hub-4 {
    margin-bottom: 80px;
}

#transport-hub-4 .transport-hub-item {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#transport-hub-4 .transport-hub-item .title {
    margin-bottom: 20px;
}

#transport-hub-4 .transport-hub-item .description {
    font-size: 16px;
    font-weight: 600;
    color: #5E6282;
    margin-bottom: 25px;
}

.transport-hub-item .provider {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 10px;
}

.transport-hub-item .btns {
    display: flex;
    gap: 15px;
}

#bus-details .a-table {
    margin-bottom: 30px;
}

.pp-item {
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--a-bs);
    margin-bottom: 20px;
}

#book-your-trip,
#plan-ahead {
    padding: 65px;
    background: var(--light-white);
}

#book-your-trip .a-title-3,
#plan-ahead .a-title-3 {
    text-align: center;
}

.a-icon-title {
    display: inline-flex;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.b-trip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.b-trip-item {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
}

.transport-hub-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.transport-hub-item {
    flex: 1;
    border-radius: 12px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--a-bs);
}

.transport-hub-item a {
    padding: 15px;
    max-width: 225px;
}

#private-shared-transfers,
#taxi-tariffs {
    margin-bottom: 80px;
}

#cross-border-notes {
    padding-bottom: 80px;
}

#cross-border-notes p.notes-item {
    display: flex;
    gap: 5px;
}

#cross-border-notes .a-title-3 {
    margin-bottom: 15px;
}

#emergency-help .a-title-3 {
    margin-bottom: 20px;
}

#emergency-help {
    padding-bottom: 90px;
}

.e-help-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.e-help-items .e-help-item {
    flex: 1;
    border: 1px solid var(--light-grey);
    border-radius: 16px;
    padding: 15px;
    display: inline-flex;
    gap: 15px;
}

.e-help-item .title {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.e-help-item .subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
}

#private-shared-transfers .a-title-3 {
    margin-bottom: 20px;
}

#private-shared-transfers .a-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
}

#private-shared-transfers .ps-item .a-text {
    margin-bottom: 20px;
}

.ps-item-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.ps-item-row .ps-item {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--a-bs);
    align-self: stretch;
}

.ps-item-row .ps-item p.info {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #5E6282;
}

.ps-item-row .ps-item p.info a {
    text-decoration: none;
    color: var(--blue);
}

.weather-boxes-page {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.weather-box-page {
    flex: 1;
    border: 1px solid var(--light-white);
    border-radius: 19px;
    padding: 10px 20px;
    backdrop-filter: blur(13px);
    max-width: fit-content;
}

.weather-box-page .type {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(255,255,255, 0.6);
    margin: 0;
}

.weather-box-page .content {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

#transport-hub,
#procedures,
#before-you-fly,
#airports-faq,
#flight-schedule {
    margin-bottom: 80px;
}

#page-hero.has-image .a-subtitle {
    margin-bottom: 20px;
    color: #ffffff;
}

#page-hero.has-image .a-title {
    margin-bottom: 10px;
    color: #ffffff;
}

#page-hero .hero-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--grey);
}

#page-hero .hero-note {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
}

#page-hero.has-image .hero-description {
    color: #ffffff;
}

body.page-template-airports #page-hero.has-image .a-subtitle,
body.page-template-airports #page-hero.has-image .a-title,
body.page-template-airports #page-hero.has-image .hero-description {
    text-align: left;
}

#before-you-fly {
    background-color: var(--blue);
    position: relative;
    padding: 90px 0;
}

#before-you-fly .a-title,
#before-you-fly .a-subtitle {
    color: #ffffff;
}

#before-you-fly .a-title {
    margin-bottom: 50px;
}

#before-you-fly img.before-fly-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

#before-you-fly img.before-fly-right {
    position: absolute;
    top: -100px;
    right: 0;
}

.before-fly-items {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.before-fly-item {
    flex: 1;
}

.before-fly-item img {
    margin-bottom: 30px;
}

.before-fly-item .fly-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.before-fly-item .fly-content {
    margin-bottom: 0;
    color: #ffffff;
}

.swiper-button-prev,
.swiper-button-next {
    background: #00589C;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 25px;
}

.swiper-slide img {
    border-radius: 24px;
}

.h-circles-left {
    position: absolute;
    top: 30%;
    left: 0;
    transform: translateY(-30%);
}

.h-circles-right {
    position: absolute;
    right: 0;
    bottom: 0;
}

#about-us .grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

#our-data,
#partners,
#editorial-standards,
#about-us {
    margin-bottom: 80px;
}

#about-us .about-item {
    flex: 1;
}

#about-us .a-title-3 {
    margin-bottom: 10px;
}

#about-us .a-text {
    margin-bottom: 30px;
}

#about-us .info {
    font-family: 'Volkhov';
    font-size: 18px;
    font-weight: 700;
    color: #5E6282;
}

#about-us .info strong {
    color: var(--black);
}

.about-item.video {
    position: relative;
}

.about-item.video .main-img {
    border-radius: 24px;
}

.about-item.video .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#partners {
    padding: 50px 0;
    background-color: var(--light-white);
}

#partners .a-title-3 {
    margin-bottom: 25px;
}

.editorial-items {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    align-items: center;
    text-align: center;
}

.editorial-item {
    flex: 1;
    align-self: stretch;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--a-bs);
}

.editorial-item .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.editorial-item img {
    margin-bottom: 50px;
}

#media-press {
    position: relative;
    padding: 50px;
    margin-bottom: 100px;
    background-color: var(--light-white);
}

#media-press .icon-plane {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

#media-press .a-title-3 {
    margin-bottom: 20px;
}

.editorial-item .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
}

#contact-info {
    margin-bottom: 100px;
}

#contact-info .grid-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: var(--c-bck);
    border-radius: 20px;
    padding: 40px 0 40px 100px;
    border-top-left-radius: 130px;
}

#contact-info .grid-container .ci-box {
    flex: 1;
}

.ci-box.img {
    text-align: right;
}

#contact-info .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 15px;
}

#contact-info .c-item a,
#contact-info .c-item {
    font-size: 18px;
    font-weight: 600;
    line-height: 54px;
    color: var(--black);
    text-transform:capitalize;
    margin-bottom: 0;
}

#contact-info .c-item a {
    color: var(--blue);
}

#contact-info .icon-send {
    position: absolute;
    top: -20px;
    right: -20px;
}

body.page-template-about #page-hero {
    margin-bottom: 0;
}

#need-car {
    padding: 25px;
    margin-bottom: 100px;
    background-color: var(--light-white);
}

#need-car .yes-ba {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    margin: 0;
}

#need-car .yes-ba a {
    color: var(--blue);
}

#day-trip {
    margin-bottom: 90px;
}

#blog-guides {
    position: relative;
    padding: 90px;
    margin-bottom: 90px;
    background-color: var(--light-white);
}

#blog-guides .grid-container-wrap {
    position: relative;
    z-index: 2;
}

#blog-guides .guide-items,
#blog-guides .a-title-3 {
    margin-bottom: 40px;
}

#blog-guides .circles {
    position: absolute;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

#blog-guides .plane {
    position: absolute;
    bottom: 5%;
    left: 5%;
}

#blog-guides .guide-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

#blog-guides .guide-item {
    position: relative;
    flex: 1;
    height: 200px;
    padding: 20px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#blog-guides .guide-item .g-title {
    position: absolute;
    bottom: 20px;
    z-index: 2;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    margin-right: 20px;
}

#blog-guides .guide-item .a-overlay {
    border-radius: 20px;
}

.culture-items {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}

#adventure,
#tourismbih,
#explore-faq,
#culture {
    margin-bottom: 100px;
}

.culture-item {
    flex: 1;
    padding: 25px;
    align-self: stretch;
    border-radius: 12px;
    box-shadow: var(--a-bs);
}

.culture-item img {
    text-align: left;
    margin-bottom: 25px;
}

.culture-item .title {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.culture-item .description {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #84829A;
}

#tourismbih {
    padding: 50px;
    background-color: var(--light-white);
}

#tourismbih .subtitle {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0;
}

#tourismbih .subtitle a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
}

.faq-items .faq-item {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--a-bs);
    cursor: pointer;
}

.faq-items .faq-item:after {
    content:'';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    background-image: url('../images/icons/icon-arrow-down-black.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-items .active.faq-item:after {
    content:'';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    background-image: url('../images/icons/icon-arrow-up-black.svg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-items .faq-item .faq-question {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    gap: 20px;
    align-items: center;
}

.faq-items .faq-item .faq-answer {
    display: none;
    margin-top: 10px;
    margin-bottom: 0;
    color: #5E6282;
}

.faq-items .faq-item.active .faq-answer {
    display: block;
}

.faq-items .faq-item span.num {
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    margin: 0;
    font-size: 20px;
    line-height: 35px;
    border-radius: 50%;
    background: #DEE9F2;
    color: var(--blue);
}


.faq-items .faq-item.active span.num {
    background-color: var(--blue);
    color: #ffffff;
}