/*
Theme Name: OceanWP Child Theme
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* Helpers & fonts */

:root {
    --site-body-font: 'Roboto';
    --site-heading-font: "Bebas Neue", Sans-serif;
    --site-main-dark: #2E2E2E;
    --site-main-green: #1B3907;
    --site-main-gold: #C19143;
    --site-main-light-gold: #EDD593;
    --site-main-grey: #C5C5C5;
    --site-main-light-grey: #EDEDED;
    --site-main-black: #000000;
    --site-main-white: #ffffff;
}

#content {
    overflow: hidden;
}

body a:focus {
    outline: none !important;
}

/* Helpers & fonts end */

/* Header */

#top-bar-wrap {
    overflow: hidden;
}

#mysticky-wrap {
    height: auto !important;
}

#mysticky-nav.wrapfixed .current-menu-item .menu-link {
    color: var(--site-main-gold);
}

body #mysticky-wrap {
    height: 145px !important;
}

/* Header end */

/* Footer */

#menu-footer-nav .menu-item {
    display: block;
    padding-bottom: 10px;
}

#menu-footer-nav .menu-link {
    font-family: "Bebas Neue", Sans-serif;
}

/* Footer end */

/* Swiper */

.carousel-nav {
    display: flex;
    flex-wrap: nowrap;
    max-width: fit-content;
    line-height: 1;
    gap: 0;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.carousel-nav .swiper-button-prev,
.carousel-nav .swiper-button-next {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    width: 0;
    height: 5px;
    margin-top: 0;
    opacity: 1;
    transition: .3s opacity;
}

.carousel-nav .swiper-button-prev,
.carousel-nav .swiper-button-next {
    width: 30px;
}

.carousel-nav .swiper-button-prev:hover,
.carousel-nav .swiper-button-next:hover {
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.carousel-nav .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: unset;
    left: unset;
    text-align: unset;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    margin: 0 2.5px;
    border: 1px solid var(--site-main-black);
    opacity: 1;
}

.carousel-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--site-main-black);
}

.carousel-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
    margin-left: 0;
}

.carousel-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
    margin-right: 0;
}

.carousel-nav.light-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    border: 1px solid var(--site-main-white);
}

.carousel-nav.light-nav .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
    background: var(--site-main-white);
}

.carousel-nav.light-nav .swiper-button-prev,
.carousel-nav.light-nav .swiper-button-next {
    color: var(--site-main-white);
}

/* Swiper end */

/* Buttons */

.my-btn button {
    border: 0;
    line-height: 1;
}

.my-btn button br {
    display: none;
}

.my-btn a,
.my-btn button {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.my-btn a span,
.my-btn button span {
    position: relative;
    z-index: 2;
}

.my-btn a::before,
.my-btn a::after,
.my-btn button::before,
.my-btn button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 30px solid var(--site-main-light-gold);
    border-bottom: 30px solid var(--site-main-light-gold);
    transition: transform .5s ease-in-out;
    z-index: 1;
}

.my-btn a::before,
.my-btn button::before {
    border-right: 30px solid transparent;
    transform: translateX(-100%);
}

.my-btn a::after,
.my-btn button::after {
    border-left: 30px solid transparent;
    transform: translateX(100%);
}

.my-btn a:hover::before,
.my-btn button:hover::before {
    transform: translateX(-30%);
}

.my-btn a:hover::after,
.my-btn button:hover::after {
    transform: translateX(30%);
}

/* Buttons end */

/* Scrolling banner */

.scrolling-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: var(--site-main-dark);
}

.scrolling-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 25s linear infinite;
}

.scrolling-items {
    display: flex;
}

.scrolling-items p {
    white-space: nowrap;
    padding-right: 100px;
    color: var(--site-main-white);
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
}

.scrolling-items[aria-hidden="true"]::before {
    content: attr(data-duplicate);
}

@keyframes scrollLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Scrolling banner end */

/* Forms */

/* Global */

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    margin: 0;
    color: var(--site-main-gold);
	background-color: var(--site-main-light-grey);
	border-color: var(--site-main-light-grey);
}

/* Contact Us */

body form .contact-forms .col-md-4,
body form .contact-forms .col-md-5,
body form .contact-forms .col-md-6,
body form .contact-forms .col-md-7,
body form .contact-forms .col-md-12 {
    margin-bottom: 20px;
}

body form .contact-forms input,
body form .contact-forms select,
body form .contact-forms textarea {
    background-color: transparent;
    border: 1px solid var(--site-main-white);
    font-size: 18px;
    font-weight: 400;
    color: var(--site-main-white);
    padding: 15px;
    line-height: 1;
    border-radius: 10px;
}

body form .contact-forms select {
    height: 54px;
}

body form .contact-forms input::placeholder,
body form .contact-forms textarea::placeholder {
    color: var(--site-main-white);
    opacity: 1;
}

body form .contact-forms p {
    color: var(--site-main-white);
    margin: 0;
}

body form .contact-forms input[type="checkbox"] {
    border-radius: 10px;
    border: 3px solid;
    min-width: 13px;
    height: 13px;
    width: 13px;
    margin: 0 10px 0 0;
    padding: 13px;
}

body form .contact-forms input[type="checkbox"]:checked::before {
    margin-bottom: -1px;
    color: var(--site-main-white);
    line-height: 0;
    font-size: 16px;
    margin-left: -8px;
}

.my-checkboxes .wpcf7-list-item-label,
.my-checkboxes .wpcf7-list-item-label a {
    font-size: 14px;
    color: var(--site-main-white);
}

.my-checkboxes .wpcf7-list-item-label a:hover {
    color: var(--site-main-gold);
}

.my-checkboxes .wpcf7-list-item {
    margin: 0;
}

.my-checkboxes .wpcf7-form-control-wrap:nth-child(2) {
    margin-left: 15px;
}

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

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

.my-center .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* Footer */

body form .footer-form input {
    border: 1px solid var(--site-main-dark);
    color: var(--site-main-dark);
}

body form .footer-form input::placeholder {
    color: var(--site-main-dark);
}

body form .footer-form p {
    color: var(--site-main-dark);
}

body form .footer-form input[type="checkbox"] {
    border-radius: 10px;
    border: 3px solid;
    min-width: 13px;
    height: 13px;
    width: 13px;
    margin: 0 10px 0 0;
    padding: 13px;
}

body form .footer-form input[type="checkbox"]:checked::before {
    margin-bottom: -1px;
    color: var(--site-main-black);
    line-height: 0;
    font-size: 16px;
    margin-left: -8px;
}

body form .footer-form .my-checkboxes .wpcf7-list-item-label,
body form .footer-form .my-checkboxes .wpcf7-list-item-label a {
    color: var(--site-main-dark);
}

body form .footer-form .my-checkboxes .wpcf7-list-item-label a:hover {
    color: var(--site-main-gold);
}

/* Forms end */

/* Testimonials */

.swiper-slide {
    height: auto;
}

.testimonial-title {
    margin-top: 20px;
}

.testimonial-title {
    font-weight: 700;
}

/* Testimonials end */

/* Brands */

.brand-swiper .swiper-wrapper {
    align-items: stretch;
}

.brand-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.brand-card {
    background: var(--site-main-dark);
    color: var(--site-main-white);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.brand-image img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.brand-content-wrapper {
    padding: 20px 20px 10px;
    display: flex;
    flex-direction: column;
}

.brand-title {
    margin: 0 0 15px;
    font-weight: 700;
    color: var(--site-main-white);
}

.light-section .brand-card {
    background: var(--site-main-white);
    color: var(--site-main-dark);
}

.light-section .brand-title {
    color: var(--site-main-dark);
}

/* Brands end */

/* Mobile */

@media (max-width: 767px) {
    .my-checkboxes .wpcf7-form-control-wrap:nth-child(2) {
        margin-left: 0;
        padding-top: 20px;
    }

    .page-id-45 .gallery-item {
        max-width: 46% !important;
        padding: 0 20px 20px 0 !important;
    }

    #menu-footer-nav .menu-item {
        display: block;
        padding-bottom: 0;
    }

    .my-checkboxes .wpcf7-form-control-wrap {
        display: inline-block;
    }


}