
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  @font-face {
    font-family:Caviar Dreams;
    font-weight: 500;
    font-style: normal;
    src: url('/wp-content/fonts/CaviarDreams.woff2');
}
@font-face {
    font-family:Oswald;
    font-weight: 700;
    font-style: normal;
    src: url('/wp-content/fonts/Oswald-Bold.woff2');
}
@font-face {
    font-family:Caviar Dreams;
    font-weight: 700;
    font-style: normal;
    src: url('/wp-content/fonts/CaviarDreams-Bold.woff2');
}
@keyframes growDown {
    0% {
        transform: scaleY(0) translateX(-50%);
    }
    100% {
        transform: scaleY(1) translateX(-50%);
    }
}

@keyframes growDownR {
    0% {
        transform: scaleY(1) translateX(-50%);
    }
    100% {
        transform: scaleY(0) translateX(-50%);
    }
}


@keyframes opOut{
    0%{
        display: block;
        opacity:1;
    }
    99%{
        display:block;
    }
    100%{
        display:none;
        opacity:0;
    }
}


@keyframes opIn{
    0%{
        display: block;
        opacity:0;
    }

    100%{
        display:block;
        opacity:1;
    }
}
.opIn{
    animation: opIn 0.5s ease-in-out forwards;
    display:block!important;
}

.opOut{
    animation: opOut 0.5s ease-in-out forwards;
}
.exitForm svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popUpFormBG {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
    backdrop-filter: blur(5px);
    display: none;
    background-color: rgba(29,29,27,0.7);
}
.navigationMenuLogoPhone a{
    display:block;
}

.popUpForm :is(textarea,input):hover {
    border-color: #E9BC5E!important;
}


.cky-modal.cky-modal-open * {
    font-family: 'Montserrat'!important;
}

.cky-consent-container * {
    font-family: 'Montserrat';
}


.exitForm {
    position: absolute;
    top: 0;
    left: 100%;
    width: 25px;
    height: 25px;
    transform: translate(-150%,50%);
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.exitForm:hover {
    transform: translate(-150%,50%) scale(1.15);
}
.exitForm * {
    pointer-events: none;
}

.popUpForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: fit-content;
    height: fit-content;
    display: none;
    background-color: #1D1D1B;
    padding: 6%;
    z-index: 10;
    border-radius: 10px;
    filter: drop-shadow(18px 23px 14px rgba(0,0,0,0.4));
    min-width: 25%;
    border: 1px solid rgba(0,0,0,0.3);
}
/*
#E9BC5E

#9C182F
*/

.forminator-ui#forminator-module-88.forminator-design--default .forminator-error-message {
    color: red!important;
}

button.forminator-button.forminator-button-submit {
    color: black!important;
}

.popUpForm :is(button,a,span,select,li, label) {
    font-family: 'Montserrat'!important;
    color:white!important;
}


.popUpForm :is(textarea,input) {
    color: white!important;
    font-family: 'Montserrat'!important;
    font-size: 0.9em!important;
    background-color:transparent!important;
    font-weight: 200!important;
}

.select2-results__options li {
    font-family: 'Montserrat'!important;
}
span[data-limit="180"] {
    display: none;
}

.popUpForm textarea {
    resize: none!important;
}

.popUpForm label {
    font-weight: 400!important;
    font-family: 'Caviar Dreams'!important;
    font-size: 0.9em!important;
}


html body .popUpForm .forminator-field:has(.forminator-button-submit) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.forminator-button-submit {
    padding: 2.2% 20%!important;
    color: #061459!important;
    background-color: white!important;
    border-radius: 10px!important;
    transition: all 0.25s ease-in-out;
}

.forminator-button-submit:hover {
    transform: scale(1.1);
}



html{
    scroll-behavior: smooth;
}





.headerNavigationMenu a {
    color: white;
    font-family: 'Caviar Dreams';
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.25s ease-in-out;
}

.headerNavigationMenu a:hover {
    transform: scale(1.05);
}

.headerNavigationPhone {
    display: none;
}
.headerNavigationMenu {
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 2;
}

.headerNavigationPC {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 5.8%;
    align-items: center;
}
.navigationMenuLogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.navigationMenuLogo {
    width: 9%;
    transition: all 0.25s ease-in-out;
}


.navigationMenuLogo a {
    display: block;
}


@media only screen and (max-width:1600px){
    html body .headerNavigationMenu a {
        font-size: 1.2em;
    }
    html body .headerNavigationPC {
        gap: 5%;
    }
}

@media only screen and (max-width:1150px){

    html body .headerNavigationMenu a {
        font-size: 1.3em;
    }



    .mobileMenu li:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.2);
        margin-bottom: 0.4em;
    }
    .mobileMenu::after {
        content: "";
        position: absolute;
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent #E9B959 transparent;
        width: 0;
        top: 0;
        left: 50%;
        transform: translate(-50%, -130%);
        display:none;
    }

    html body .popUpForm {
        width: 80%;
    }
    .headerNavigationPC{
        display:none;
    }
    .navigationMenuLogoPhone img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .headerNavigationPhone {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1em;
    }
    .navigationMenuLogoPhone {
        width: 40%;
    }
}




@media only screen and (min-width:500px) and (max-width:1100px){
    .navigationMenuLogoPhone {
        width: 20%;
    }
}


/*
Burger
*/



.growDown {
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

.growDownR {
    animation: growDownR 300ms ease-in-out forwards;
    transform-origin: top center;
}

.headerMenuPhone{
    display:none;
  }



@media only screen and (max-width:1150px){
    .mobileMenu li {
        list-style: none;
    }

    .mobileMenu li a {
        font-family: 'Caviar Dreams';
        color: white;
    }

    

    .displayNone {
        display: none!important;
    }

.headerMenuPhone{
    display:flex;
 justify-content: flex-end;
 position: relative;
 

  }
.menu svg {
        width: 50px;
        height: 50px;
    }



    button.menu {
    background-color: transparent;
    border: none;
    position: relative;
}
    .line {
        fill: none;
        stroke: white;
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 6;
    }
    .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 6;
    }
    .opened .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .opened .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 6;
    }
    .opened .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 6;
    }
    .mobileMenu {
        position: absolute;
        z-index: 10;
        background-color: #1D1D1B;
        width: max-content;
        transition: all 0.4s ease-in-out;
        padding-left: 10%;
        padding-right: 10%;
        display: flex;
        aspect-ratio: 1/1;
        align-items: center;
        top: 100%;
        left: 50%;
        filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.6));
        width: 280px;
        justify-content: center;
        align-items: center;
        height: 300px;
    }
    
.mobileMenu ul {
    padding: 0;
    margin: 0;
    transform: scale(0.85);
    flex-direction: column;
    display: flex;
    gap: 0.7em;
    align-items: center;
}


    

}


