/*main.css*/

header .inner {
    padding: 0 24px;
}

.inner {
    padding: 0 24px; 
    max-width: 1248px; 
}

/* Header */
/*#wpadminbar {
    display:none;
}*/

header, header.remove {
    height: 120px;
    background-color: var(--ca-blue-brand);
    display: flex;
    align-items: center;
}

#header-logo {
    align-self: center;
}

#header-logo img {
    width: 100%;
    max-width: 265px;
}

#header-logo img.show-mobile {
    display: none;
}

#header-logo img.show-desktop {
    display: inline-block;
}

@media(max-width: 620px) {
    #header-logo img.show-mobile {
        display: inline-block;
    }

    #header-logo img.show-desktop {
        display: none;
    }
}

#header-meta {
    flex-direction: column;
}

#header-meta span {
    background-color: transparent;
}

#header-meta a:hover span {
    background-color: transparent;
}

#header-meta .header-phone {
    color: var(--ca-white);
}

#header-meta span.phone-text {
    font: normal normal 800 28px/28px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
}

#header-meta span.desktop {
    font: normal normal bold 28px/28px Gotham;
    letter-spacing: 0px;
    color: var(--ca-white);
}

#header-meta .phone-icon {
    display: none;
}

header nav {
    background-color: transparent;
}

header nav li ul {
    display: none;
}

header #menu-top-menu > li {
    padding: 0 9px;
    position: relative;
    background-color: transparent;
    transition: all .3s;
    border-radius: 10px; 
}

header #menu-top-menu > li:last-child {
    padding-right: 0;
    margin-right: 0;
}

header #menu-top-menu > li.menu-item-has-children:after {
    content: '\f078';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: var(--ca-white);
    font-size: 8px;
    position: absolute;
    top: 7px;
    right: 10px;
    cursor: pointer;
}

header #menu-top-menu > li > a {
    padding: 6px 15px;
    border-radius: 10px; 
    margin: 0;
    white-space: nowrap;
    position: relative;
    font: normal normal 500 14px/24px Gotham;
    letter-spacing: 0px;
    color: var(--ca-white);
}

header #menu-top-menu > li.menu-item-has-children a {
    padding-right: 22px;
}

header #menu-top-menu > li:hover {
    background-color: var(--ca-orange-hover); 
    color: var(--ca-white); 
}

header #menu-top-menu > li ul {
    position: absolute;
    top: 100%;
    right: 0;
}

header #menu-top-menu > li:hover ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: var(--ca-orange);
    padding: 15px;
    box-shadow: 0px 6px 6px #00000029;
    height: auto;
    white-space: nowrap;
}

header #menu-top-menu > li:hover ul li {
    width: 100%;
    padding: 0;
}

header #menu-top-menu > li:hover ul li a {
    color: var(--ca-white);
    display: block;
    padding: 0 60px 0 0;
    margin: 0;
    width: 100%;
}

.site-search {
    width: 300px;
    height: 30px;
    position: relative;
    margin-left: 60px;
    display: flex;
    align-items: center;
}

.site-search input {
    width: 100%;
    height: 100%;
    border: none;
    padding-left: 10px;
    font: normal normal normal 14px/32px Raleway;
    letter-spacing: 0px;
    color: #757575;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.site-search button {
    width: 36px;
    height: 30px;
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    background-color: var(--ca-orange);
    padding: 0 10px;
    color: var(--white);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.site-search-results {
    position: absolute;
    top: 31px;
    right: 0;
    width: 300px;
    max-height: 500px;
    z-index: 1;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 12px;
    overflow: auto;
}

.site-search-results li {
    background: #fff;
    padding: 7px 10px;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
}

.site-search-results li a {
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.site-search-results li:hover {
    background-color: #f5f5f5;
}

.site-search-results li:last-child {
    border-bottom: 0;
}

.site-search-results li i {
    color: var(--ca-orange);
    margin: 5px 5px 0 0;
}

/* Mobile navigations */


#mobile-navigation a:hover, 
#mobile-navigation .menu-item > a, 
#mobile-navigation .menu-parent > a {
    color: #fff;
    font: normal normal 600 16px/24px Raleway;
}

.mobile-site-search {
    display: none;
}

@media all and (max-width: 1024px) {
    header .inner, .inner {
        padding: 0 24px;
    } 

    #header-meta {
        flex-direction: row;
    }

    #header-meta span.phone-text {
        display: none;
    }

    .site-search.desktop .site-search-results,
    #header-meta span.desktop {
        display: none;
    }

    #header-meta .phone-icon {
        display: block;
    }

    .mobile-site-search {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background-color: rgba(6, 55, 103, .8);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    .mobile-site-search .site-search {
        width: 100%;
        height: 80px;
    }

    .mobile-site-search .site-search .close-search {
        position: absolute;
        top: -18px;
        left: -5px;
        background-color: white;
        border-radius: 100%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    }

    .mobile-site-search .site-search .close-search i {
        font-size: 24px;
        color: #063767;
        cursor: pointer;
    }

    .mobile-site-search .site-search input {
        font: normal normal 800 38px/64px Raleway;
        letter-spacing: 0px;
        color: #063767;
        display: flex;
        padding-left: 25px;
    }

    .mobile-site-search .site-search button {
        background-color: var(--ca-orange);
        width: 80px;
        height: 80px;
        justify-content: center;
    }

    .mobile-site-search .site-search button i {
        font-size: 48px;
    }

    .mobile-site-search .site-search-results {
        top: 100%;
        width: 100%;
        border-radius: 0 0 12px 12px;
    }

    #header-search {
        background: transparent;
    }
   
}


@media all and (max-width: 620px) {
    header, header.remove {
        height: 70px;
    }

    #header-logo img {
        width: 100%;
        max-width: 155px;
        max-height: 44px;
        object-fit: contain;
        object-position: left;
    }
}


/* Footer */
.footer-newsletter {
    background-image: url(/wp-content/uploads/2023/12/newsletter_fon_1.jpg);
    background-position: center center;
    background-size: cover;
    /* height: 320px; */
    padding: 40px 0;
    position: relative;
}

.footer-newsletter:before {
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
}

.footer-newsletter .inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frm_message,
.footer-newsletter .header-text {
    text-align: left;
    font: normal normal 800 32px/36px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
    text-transform: uppercase;
    margin-bottom: 22px;   
}
#frm_form_5_container .frm_message {
    text-align: left;
    font: normal normal normal 16px/24px Raleway;
    letter-spacing: 0px;
    color: var(--ca-black-light);

}

.footer-newsletter .newsletter-block-form {
    font: normal normal 800 14px/24px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
}

.footer-newsletter .bottom-text,
.footer-newsletter .bottom-text a {
    text-align: left;
    font: normal normal 800 14px/24px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
    /* margin-top: 23px; */
}

.footer-newsletter .bottom-text a {
    text-decoration: underline;
}

.footer-newsletter .bottom-text a:hover {
    text-decoration: none;
}

.footer-newsletter .bottom-text p {
    margin-bottom: 0;
}

.footer-newsletter .frm__6559d49b8b4a2 {
    display: none;
}

.newsletter-form input {
    border: 1px solid var(--ca-grey-5);
    border-radius: 12px;
    width: 100%;
    max-width: 384px;
    height: 40px;
    font: normal normal normal 14px/24px Raleway;
    letter-spacing: 0px;
    color: var(--ca-black-light);
    padding: 0 16px;   
}

.newsletter-form input:focus {
    background: var(--ca-light-grey);
    border: 1px solid var(--ca-black-light);
}

.newsletter-form button {
    border-radius: 12px;
    background-color: var(--ca-blue-brand);
    text-align: center;
    font: normal normal bold 14px/20px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
    margin-left: 12px;
    padding: 0 25px;
}

.newsletter-form button:hover {
    background-color: var(--ca-dark-blue);
}

/* Newsletter sidebar  */
.wrap-sidebar .footer-newsletter {
    height: auto;
    padding: 20px 15px;
}

.wrap-sidebar .newsletter-block .frm_forms .frm_fields_container {
    flex-flow: column;
    align-items: inherit;
}

.wrap-sidebar #form_newsletter-blog input[type="email"] {
    min-width: inherit;
}

.wrap-sidebar .footer-newsletter .header-text {
    font: normal normal 800 28px/36px Raleway;
}

footer {
    background-color: var(--ca-blue-brand);
}

footer a:hover {
    color: #ffffffa8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: none;
    padding-top: 53px;
}

.footer-links .foot-logo-cont img {
    /* max-width: 150px; */
    max-width: 225px;
}


.footer-links .foot-logo-cont img.show-desktop {
    display: inline-block;
}
.footer-links .foot-logo-cont img.show-mobile {
    display: none;
}

@media(max-width: 992px)  {
    .footer-links .foot-logo-cont img.show-desktop {
        display: none;
    }
    .footer-links .foot-logo-cont img.show-mobile {
        display: inline-block;
    }
}

.menu-footer h3 {
    text-align: left;
    font: normal normal 800 14px/24px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
    text-transform: uppercase;
    margin-bottom: 18px;   
}

.mobile-footer-menu {
    display: none;
}

#menu-destinations-2,
#menu-footer-menu-2 {
    padding-top: 42px;
}

.colophon {
    border-top: 1px solid #ffffff30;
    font: normal normal normal 14px/24px Raleway;
    letter-spacing: 0px;
    color: var(--ca-white);
    padding: 55px 0 27px 0;
}

.extra-footer-image {
    display: flex;
    gap: 10px;
    padding: 20px 0 0 0;
}

.extra-footer-image img {
    height: 56px;
}

.social-media {
    display: flex;
}

.social-media,
.footer-social-block {
    gap: 20px;
}

.footer-social-block {
    margin-top: 35px;
}

.social-media svg,
.social-media i,
.footer-social-block svg,
.footer-social-block i {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.social-media a {
    color: var(--ca-blue-brand);
}

@media all and (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media all and (max-width: 992px) {
    .site-search {
        width: auto;
        margin-left: auto;
    }

    .site-search input {
        display: none;
    }
    .site-search button {
        background-color: transparent;
    }

    #header-meta > div {
        height: 30px;
    }
}

@media all and (max-width: 640px) {
    .footer-newsletter {
        height: auto;
        padding: 20px 0;
    }

    .newsletter-block .form-fild-wrap {
        flex-direction: column;
    }

    .newsletter-block .form-fild-wrap input {
        max-width: 100%;
    }

    .newsletter-block .form-fild-wrap button {
        max-width: 150px;
        height: 40px;
        margin-top: 12px;
        margin-left: 0;
    }

    footer {
        padding-top: 0;
        padding-bottom: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        margin-bottom: 0;
    }

    .footer-grid .foot-logo-cont {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .footer-links .foot-logo-cont > img {
        width: 50%;
        max-width: 100%;
    }

    .footer-links .foot-logo-cont .extra-footer-image img {
        max-width: 80%;
        height: auto;
    }

    .menu-footer-1 {
        display: none;
    }

    .menu-footer {
        border-bottom: 1px solid #ffffff35;
    }

    .menu-footer-0 {
        border-top: 1px solid #ffffff35;
        margin-top: 60px;
    }

    .menu-footer h3 {
        position: relative;
        cursor: pointer;
        padding: 16px 17px 16px 17px;
        margin: 0;
    }

    .menu-footer h3:after {
        position: absolute;
        top: 0;
        right: 17px;
        /*width: 20px;*/
        height: 100%;
        content: "\f107";
        font-family: "Font Awesome 6 Pro";
        font-weight: 600;
        color: var(--ca-white);
        font-size: 11px;
        display: flex;
        align-items: center;
    }

    .menu-footer ul {
        display: none;
        padding-left: 17px;
        margin-bottom: 0;
        padding-bottom: 13px;
    }

    .menu-footer ul#menu-quick-links {
        padding-bottom: 0;
    }

    .menu-footer-0 br, 
    .menu-footer-0 p {
        display: none;
    }

    .menu-footer-0 #menu-footer-menu-2.mobile-footer-menu {
        margin-top: 0;
        padding-top: 0;
    }

    .colophon {
        border-top: none;
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

/* !Footer */


/* Home Slider */
.hero-slider {
    overflow: hidden;
}